:root {
  --link-color--link-primary: var(--base-color-neutral--blue);
  --text-color--text-primary: var(--base-color-neutral--white);
  --button--button-color-primary: var(--base-color-neutral--blue);
  --base-color-neutral--white: white;
  --base-color-neutral--black: black;
  --button--button-border-color: var(--base-color-neutral--neutral-light);
  --spacing--spacing-default: 1rem;
  --spacing--spacing-xmedium: 2rem;
  --background-color--background-error: var(--base-color-system--error-red-light);
  --text-color--text-error: var(--base-color-system--error-red);
  --spacing--spacing-medium: 1.5rem;
  --base-color-neutral--blue: #35f;
  --text-color--text-color-invert: var(--base-color-neutral--white);
  --base-color-brand--black: black;
  --base-color-brand--white: white;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-neutral--beige: #ffe5bd;
  --base-color-neutral--green: #48fc7a;
  --base-color-neutral--off-white: #f3f4f6;
  --base-color-system--success-green: #027a48;
  --base-color-system--success-green-light: #ecfdf3;
  --base-color-system--error-red: #b42318;
  --base-color-system--error-red-light: #fef3f2;
  --background-color--background-primary: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--text-color--text-alternate);
  --background-color--background-tertiary: var(--base-color-neutral--neutral-light);
  --background-color--background-alternate: var(--base-color-neutral--black);
  --background-color--background-success: var(--base-color-system--success-green-light);
  --border--border-radius-medium: 1rem;
  --border--bordder-radius-large: 1.5rem;
  --border-color--border-primary: var(--base-color-neutral--black);
  --border-color--border-secondary: var(--base-color-neutral--neutral-light);
  --border-color--border-alternate: var(--base-color-neutral--white);
  --link-color--link-secondary: var(--base-color-neutral--neutral-light);
  --link-color--link-alternate: var(--base-color-neutral--white);
  --text-color--text-secondary: var(--base-color-neutral--neutral-dark);
  --text-color--text-alternate: var(--base-color-neutral--off-white);
  --text-color--text-success: var(--base-color-system--success-green);
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: .1875rem solid var(--text-color--text-primary);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.global-styles {
  z-index: 99;
  background-color: #00ff6f;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-xxsmall {
  padding: .5rem;
}

.button {
  background-color: var(--button--button-color-primary);
  color: var(--base-color-neutral--white);
  text-align: center;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  padding: .5em 2em;
  text-decoration: none;
  transition: box-shadow .4s cubic-bezier(.86, 0, .07, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button:hover {
  box-shadow: 0 0 0 5px #3355ff3d;
}

.button.is-secondary {
  color: var(--base-color-neutral--black);
  background-color: #0000;
  transition: box-shadow .5s cubic-bezier(.86, 0, .07, 1), color .2s, background-color .2s;
  box-shadow: 0 0 0 1px #0003;
}

.button.is-secondary:hover {
  box-shadow: 0 0 0 4px #3356ff33, inset 0 0 0 1px var(--button--button-border-color);
  color: var(--link-color--link-primary);
}

.button.is-expand {
  flex: 1;
}

.form_input {
  border: 1px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--white);
  color: var(--text-color--text-primary);
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.button-group {
  grid-column-gap: var(--spacing--spacing-default);
  grid-row-gap: var(--spacing--spacing-default);
  flex-wrap: wrap;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.rich-text h5, .rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.spacer-medium {
  grid-column-gap: var(--spacing--spacing-xmedium);
  grid-row-gap: var(--spacing--spacing-xmedium);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.header15_content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  place-items: end stretch;
  display: flex;
}

.header15_content-left {
  grid-column-gap: var(--spacing--spacing-medium);
  grid-row-gap: var(--spacing--spacing-medium);
  flex-flow: column;
  flex: 40rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.header15_content-right {
  flex: 20rem;
  max-width: 40rem;
}

.heading_hero {
  font-size: 5rem;
}

.subheading {
  opacity: .8;
  font-size: 1.125rem;
}

.max-width-x-medium {
  width: 100%;
  max-width: 42rem;
}

.header_container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
  container-type: inline-size;
}

.rich-text_heading h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 3.5em;
}

.rich-text_heading blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.rich-text_heading h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 3em;
}

.rich-text_heading h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2.5em;
}

.rich-text_heading h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 2em;
}

.rich-text_heading h5, .rich-text_heading h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.rich-text_heading p {
  margin-bottom: 1rem;
  font-size: 1em;
}

.rich-text_heading figcaption {
  border-left: 2px solid var(--text-color--text-primary);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.rich-text_heading strong {
  color: var(--base-color-neutral--blue);
}

.rich-text_heading.is-responsive-small {
  font-size: 1.5cqw;
}

.rich-text_heading.is-responsive {
  font-size: 3cqw;
}

.button-link {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  color: inherit;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.125rem;
  text-decoration: none;
  display: flex;
}

.button-link:hover {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

.button-link.is-color-inherit {
  color: inherit;
}

.button-link.is-white {
  color: var(--text-color--text-color-invert);
}

.icon-arrow {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  display: flex;
}

.headera.cwl {
  height: 100vh;
}

.button-label {
  z-index: 1;
  flex: none;
  position: relative;
}

.spritesheet {
  background-color: var(--base-color-brand--black);
  justify-content: center;
  align-items: center;
  height: 50vh;
  display: flex;
}

.webflowsprite {
  background-color: var(--base-color-brand--black);
  background-image: url('../images/spritesheet_small.webp');
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  height: 40vh;
  display: flex;
}

.starry {
  width: 100%;
  height: 2000px;
  position: static;
  top: 5px;
}

.bigol {
  text-align: center;
  margin-top: 25rem;
  font-size: 10rem;
  position: static;
  top: 5px;
}

.scroll-example {
  width: 200px;
  height: 100%;
}

.header {
  background-color: #c02626;
  width: 100%;
  height: 10vh;
}

.maincontent.sub {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: grid;
  position: relative;
}

.footer.sub {
  background-color: #2a1c44;
  height: 10vh;
}

.wrapper {
  background-color: #e9bfda;
  height: 100%;
  display: flex;
  position: static;
}

.heading {
  position: sticky;
  top: 8px;
}

.div-block {
  -webkit-text-fill-color: inherit;
  background-color: #0c0c0c;
  background-image: url('../images/backdrop.webp');
  background-position: 50%;
  background-size: cover;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: clip;
}

.div-block.theatreblock {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-height: 1080px;
}

.ballerina {
  z-index: 5;
  transform-origin: 50% 100%;
  width: 500px;
  position: absolute;
  inset: 25% 5% 0% auto;
}

.actress {
  z-index: 10;
  transform-origin: 50% 100%;
  position: absolute;
  inset: 26% auto 0% 5%;
}

.div-block-3 {
  opacity: 1;
  mix-blend-mode: normal;
  background-image: url('../images/overlay_texture.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
  position: static;
  overflow: clip;
}

.scrolltheatre {
  aspect-ratio: auto;
  position: relative;
  inset: 0% 0% auto;
}

.curtain-left {
  align-self: flex-start;
  position: absolute;
}

.curtain-right {
  z-index: 60;
  align-self: flex-end;
  position: absolute;
  top: 0;
}

.number-block {
  z-index: 6;
  background-color: #02020200;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.number-block-mask {
  z-index: 30;
  width: 100vw;
  height: 300px;
  position: absolute;
  overflow: hidden;
}

.spiral {
  z-index: 2;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: absolute;
  inset: auto 0% 0%;
}

.scrollsnap {
  scroll-snap-type-y: mandatory;
  justify-content: center;
  align-items: center;
}

.section {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.divvya {
  background-color: #d34e4e;
}

.storyheader {
  height: 10vh;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .header15_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .div-block.theatreblock {
    height: 800px;
  }

  .ballerina {
    width: 55%;
    right: 2%;
  }

  .actress {
    width: 55%;
    left: -13%;
  }

  .curtain-left {
    width: 50%;
    left: -101px;
  }

  .curtain-right {
    width: 50%;
    right: -137px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .header15_content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .subheading {
    font-size: 1rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  .header15_content-wrapper {
    grid-template-columns: 1fr;
  }

  .ballerina {
    width: 100%;
    right: -29%;
  }

  .actress {
    width: 100%;
    left: -36%;
  }
}

#w-node-c791326a-f26e-79a2-4e30-58b9358b4f77-7b7d73ae, #w-node-a5aaa2fe-7c8f-fd12-1e87-010796a362ef-7b7d73ae {
  align-self: start;
}


