@font-face {
  font-family: Helvetica;
  src: url('../fonts/helvetica.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica;
  src: url('../fonts/helvetica-bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akira Expanded Demo;
  src: url('../fonts/akira-expanded-demo.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Akira Super;
  src: url('../fonts/akira-super-bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --link-color--link-primary: var(--base-color-neutral--white);
  --background-color--background-primary: var(--base-color-neutral--black);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-neutral--black);
  --text-color--text-secondary: var(--base-color-neutral--neutral-darker);
  --background-color--background-success: var(--base-color-system--success-green);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --base-color-neutral--white: #fff;
  --gradients-2: #fa8a38;
  --backgrounud: #0f0e0d;
  --border-color--border-primary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-brand--blue);
  --background-color--background-tertiary: var(--base-color-brand--pink);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --transparent: #fff0;
  --gradients-1: #da5305;
  --shine: #f6873557;
  --resalt-light: #f68633;
  --current-color-nav: white;
  --current-color-events: white;
  --slider-color: white;
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--blue: #2d62ff;
  --base-color-brand--blue-dark: #080331;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink: #dd23bb;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--black: #000;
  --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--background-color: white;
  --base-color-system--success-green: #cef5ca;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
  --border-color--border-secondary: var(--base-color-brand--blue);
  --link-color--link-secondary: var(--base-color-neutral--black);
  --link-color--link-alternate: var(--base-color-neutral--white);
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

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

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

p {
  margin-bottom: 0;
}

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

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

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

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

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

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

.utility-page_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: none;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xsmall {
  margin: .5rem;
}

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

.margin-tiny {
  margin: .125rem;
}

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

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

.margin-xxlarge {
  margin: 5rem;
}

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

.margin-xhuge {
  margin: 8rem;
}

.padding-tiny {
  padding: .125rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom, .margin-bottom.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.icon-1x1-small.is-padded {
  vertical-align: text-top;
  margin-right: .5rem;
  display: inline-block;
}

.overflow-auto {
  overflow: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.icon-1x1-large {
  vertical-align: top;
  width: 2.5rem;
  height: 2.5rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.max-width-full {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.background-color-primary {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-color-primary {
  color: var(--text-color--text-primary);
}

.text-color-secondary {
  color: var(--text-color--text-secondary);
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-success);
  padding: 1.25rem;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

.text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
}

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

.pointer-events-auto {
  pointer-events: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-small {
  height: 1rem;
}

.icon-1x1-medium {
  color: var(--base-color-neutral--white);
  vertical-align: top;
  align-self: center;
  width: 2rem;
  height: 2rem;
}

.icon-1x1-medium.is-heading {
  color: var(--gradients-2);
  margin-right: .5rem;
  display: inline-flex;
}

.icon-1x1-medium.is-heading.is-light {
  color: var(--base-color-neutral--white);
}

.icon-1x1-medium.is-heading.is-dark {
  color: var(--backgrounud);
}

.icon-1x1-medium.is-button {
  color: var(--gradients-2);
  width: 1.5rem;
  height: 1.5rem;
}

.icon-1x1-medium.is-nav {
  color: var(--base-color-neutral--white);
  position: absolute;
  inset: -1rem auto auto -2.5rem;
}

.icon-1x1-medium.text-style_resalt {
  color: var(--gradients-2);
}

.icon-1x1-medium.is-floatitem {
  position: absolute;
  top: -1rem;
  left: calc(50% - 1rem);
}

.icon-1x1-medium.is-floatitem.is-second {
  left: auto;
  right: calc(50% - 1rem);
}

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.gallery {
  margin-top: -2svh;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.text-color-alternate {
  color: var(--text-color--text-alternate);
}

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

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

.text-weight-medium {
  font-weight: 500;
}

.overflow-hidden {
  overflow: hidden;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--border-color--border-primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.text-size-tiny {
  font-size: .75rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.text-weight-light {
  font-weight: 300;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-size-regular {
  font-size: 1rem;
}

.text-weight-xbold {
  font-weight: 800;
}

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

.text-weight-bold {
  font-weight: 700;
}

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

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.background-color-alternate {
  background-color: var(--background-color--background-alternate);
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  font-size: .875rem;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-align-left {
  text-align: left;
}

.background-color-secondary {
  background-color: var(--background-color--background-secondary);
}

.form_input {
  border: 1px solid var(--border-color--border-primary);
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder, .form_input.is-select-input {
  color: var(--text-color--text-secondary);
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

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

.text-size-large {
  font-size: 1.5rem;
}

.fs-styleguide_header {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-wrapper {
  background-color: var(--backgrounud);
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
}

.fs-styleguide_label {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: var(--background-color--background-tertiary);
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.container-large {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-medium {
  height: 2rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.overflow-scroll {
  overflow: scroll;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  margin-top: .75rem;
  padding: .75rem;
}

.icon-height-large {
  height: 3rem;
}

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

.form_component {
  margin-bottom: 0;
}

.main-wrapper {
  color: #fff;
  width: 100%;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  position: relative;
  overflow: clip;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.align-center {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.button {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  text-align: center;
  border-radius: .25rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  border: 1px solid var(--border-color--border-alternate);
  color: var(--text-color--text-primary);
  background-color: #0000;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-size-medium {
  font-size: 1.25rem;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
  align-items: center;
}

.hide {
  display: none;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.fs-styleguide_spacing-all {
  display: none;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-large {
  padding-top: 3rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.fs-styleguide_message {
  background-color: var(--background-color--background-warning);
  color: var(--text-color--text-warning);
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_component {
  background-color: #000;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  inset: 0% 0% auto;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_logo {
  width: 10rem;
}

.nav_menu_link {
  color: #fff;
  padding: 1rem;
}

.nav_button {
  padding: 1rem;
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.background-color-tertiary {
  background-color: var(--background-color--background-tertiary);
}

.fs-styleguide_hero-label {
  color: var(--text-color--text-primary);
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: wrap;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  min-width: 32rem;
  display: flex;
}

.section_hero-header {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, #f78f381f, var(--transparent) 94%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: auto;
  height: auto;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: clip;
}

.fs-styleguide_heading-header {
  font-size: 6rem;
}

.section_footer {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.footer_grid {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: minmax(32rem, 100%) repeat(auto-fit, minmax(47rem, 100%));
  grid-auto-columns: 47rem;
  grid-auto-flow: column;
  justify-content: flex-start;
  place-items: flex-start stretch;
  display: flex;
}

.footer-logo {
  filter: invert();
  width: 100%;
}

.footer-credits {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-credits_caption-expresionismo {
  filter: invert();
  height: 2rem;
}

.wrapper-align_center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.footer-link-camuflaje {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--text-color--text-alternate);
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}

.text-style-inlineflex {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline;
}

.section_roster {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
}

.image-frame_decorative-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
}

.image-frame_decorative-wrapper.is-left {
  inset: 0% auto 0% -1rem;
}

.image-frame_decorative-wrapper.is-left.is-small {
  left: -.5rem;
}

.image-frame_decorative-wrapper.is-small {
  right: -.5rem;
}

.image-frame_decorative-wrapper.is-right {
  inset: 0% -1rem 0% auto;
}

.image-frame_decorative-wrapper.is-right.is-small {
  right: -.5rem;
}

.roster-thumbnail {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  height: 90%;
}

.roster-thumbnail.is-hero {
  height: 18rem;
}

.roster-layher {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.roster-layher.is-textslider {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, var(--gradients-2), var(--transparent) 60%), radial-gradient(circle farthest-corner at 0% 50%, var(--gradients-2), var(--transparent) 58%), radial-gradient(circle farthest-corner at 100% 0%, var(--gradients-1), var(--transparent) 53%);
  flex-flow: column;
  padding-top: 2rem;
  display: flex;
}

.roster-layher.is-thumbnail {
  border-top-left-radius: 0;
  border-top-right-radius: 0%;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.roster-layher._3 {
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: inset 0 0 2rem -.1rem #0003, 0 0 2.7rem .8rem #0003;
}

.roster-layher.is-logo {
  justify-content: center;
  align-items: flex-end;
  display: flex;
  overflow: visible;
}

.button-style_link-in {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--background-color--background-primary);
  text-align: left;
  background-color: #fff;
  border-radius: 1.1rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: .5rem .75rem .5rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.button-style_link-in.is-secondary {
  background-color: var(--transparent);
  color: var(--base-color-neutral--white);
}

.roster-slider_text {
  color: #0000;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: white;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Akira Super, Arial, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.button-style_caption {
  grid-column-gap: .3rem;
  grid-row-gap: .3rem;
  justify-content: center;
  align-self: center;
  align-items: center;
  overflow: hidden;
}

.roster-item {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.roster-item_cta {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.button-text {
  white-space: nowrap;
  font-size: 1rem;
  line-height: 1;
}

.image-frame {
  aspect-ratio: 1;
  pointer-events: none;
  border: .125rem solid #fff;
  border-radius: 100%;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.image-frame.is-talent {
  width: 110%;
  height: 110%;
  position: absolute;
}

.roster_header-background-image {
  width: 100%;
}

.roster_header-background {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 23% 26% 27% 24%;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 140svw;
  display: grid;
  position: absolute;
}

.tour-stats {
  z-index: 2;
  font-size: 2.6rem;
  line-height: .9;
  position: relative;
}

.link {
  text-decoration: none;
}

.link.is-watermark:hover {
  text-decoration: underline;
}

.faq-question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
}

.grain-layher {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  opacity: .07;
  pointer-events: none;
  background-image: url('../images/grain-2.gif');
  background-position: 50%;
  background-size: 20rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: absolute;
  inset: 0%;
}

.grain-layher.realtive {
  z-index: auto;
  inset: 0%;
}

.button-style_link-out {
  color: var(--backgrounud);
  border: .0625rem solid #0000;
  border-radius: 1.3rem;
  padding: .125rem;
  text-decoration: none;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.button-style_link-out:hover {
  border-color: #fff;
  box-shadow: 0 0 15px #fff;
}

.button-style_link-out.is-secondary {
  border-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--white);
}

.button-style_link-out.is-secondary:hover {
  box-shadow: inset 0 0 6px 0 var(--base-color-neutral--white), 0 0 15px 0 #fff;
}

.section_artisthero {
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: clip;
}

.planet-fill {
  aspect-ratio: 1;
  background-color: #000;
  background-image: radial-gradient(circle farthest-side at 50% 100%, var(--backgrounud), var(--transparent) 87%), radial-gradient(circle farthest-corner at 30% -30%, var(--gradients-1), var(--transparent) 43%), radial-gradient(circle farthest-corner at 100% 0%, var(--gradients-2), var(--transparent) 47%), radial-gradient(circle farthest-corner at 0% 25%, var(--gradients-1), var(--transparent) 52%);
  object-fit: cover;
  border-radius: 50% 50% 0% 0;
  flex: 1;
  align-self: stretch;
  min-width: 150svw;
  position: relative;
  overflow: hidden;
}

.artisthero-background {
  pointer-events: none;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: absolute;
  top: 75svh;
  overflow: clip;
}

.section_artistgallery {
  z-index: 3;
  background-image: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-bottom: 8rem;
  position: relative;
  overflow: clip;
}

.image-ratio_1-1 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.image-ratio_1-1.is-round-clip {
  border-radius: 100%;
}

.artisthero-title {
  color: #42343400;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #fff;
  text-transform: uppercase;
  align-self: flex-start;
  font-family: Akira Super, Arial, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  inset: 15% auto auto 0%;
}

.artisthero-profile-image {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  align-self: flex-end;
  width: 40svw;
  max-width: 60%;
  position: relative;
}

.section_testimonials {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  display: block;
  overflow: clip;
}

.hide-on-desktop {
  display: none;
}

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

._6col-grid.is-testimonial {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  place-items: stretch stretch;
}

.testimonial-slider {
  background-color: #0000;
  height: 100%;
}

.hero-content_wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  line-height: 1.2;
  position: relative;
}

.roster_header-slider-image {
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: inline-flex;
}

.text-align-justify {
  text-align: justify;
}

.roster_header-slider {
  aspect-ratio: 9 / 5;
  background-color: #ddd0;
  border-radius: 5rem;
  height: 100%;
  overflow: clip;
}

.hero_animation-item {
  aspect-ratio: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20rem;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.hero_animation-item.is-1 {
  inset: 9.1svh auto auto 2svw;
}

.hero_animation-item.is-2 {
  width: 10rem;
  inset: 7.4svh 30.1svw auto auto;
}

.hero_animation-item.is-3 {
  inset: 13.2svh -5svw auto auto;
}

.hero_animation-item.is-4 {
  width: 10rem;
  inset: auto 3.1svw 20.3svh auto;
}

.hero_animation-item.is-5 {
  width: 15rem;
  inset: auto 57.6svw 0% auto;
}

.hero_animation-item.is-6 {
  inset: auto auto 4.2svh 60.7svw;
}

.hero_animation-item.is-7 {
  width: 5rem;
  inset: auto auto 25svh 5svw;
}

.hero-background {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.hero-card_wrapper {
  aspect-ratio: 1;
  object-fit: cover;
  justify-content: flex-end;
  align-items: center;
  width: 20rem;
  overflow: hidden;
}

.roster_header-content {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.testimonial-image {
  aspect-ratio: 3 / 2;
  width: 8rem;
}

.artisthero-sociallinks {
  z-index: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
  display: flex;
  position: sticky;
  top: 25svh;
}

.text-style_dates {
  text-transform: capitalize;
  font-family: Akira Super, Arial, sans-serif;
  font-weight: 700;
}

.text-style_datestitle {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-style_datestitle.text-style_resalt {
  background-image: linear-gradient(160deg, var(--gradients-1), var(--gradients-2) 54%);
}

.wrapper-style_highlight-caption {
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Akira Super, Arial, sans-serif;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 1;
}

.wrapper-style_highlight-caption.is-artistname {
  align-self: flex-end;
}

.wrapper-style_image-overlay {
  pointer-events: auto;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 5.6rem 1.6rem #1f1c1a33;
}

.wrapper-style_image-overlay.image-ratio_1-1, .wrapper-style_image-overlay.image-gallery_16-9, .wrapper-style_image-overlay.image-gallery_3-4, .wrapper-style_image-overlay.image-gallery_4-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.overlay-full {
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.wrapper-style_playbutton {
  aspect-ratio: 1;
  object-fit: cover;
  width: 5rem;
  height: 5rem;
  position: relative;
}

.main-photograph {
  aspect-ratio: 2;
  object-fit: cover;
  align-items: stretch;
  margin-bottom: 2rem;
  overflow: hidden;
}

.main-photograph.image-gallery_2-1 {
  pointer-events: none;
  justify-content: center;
  align-items: stretch;
}

.first-photograph {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-bottom: 4rem;
  display: grid;
  position: relative;
}

.image-gallery_2-1 {
  object-fit: cover;
  width: 100%;
}

.icon-1x1-extralarge {
  aspect-ratio: 1;
  vertical-align: top;
  object-fit: contain;
  align-self: flex-end;
  width: 10rem;
  height: 10rem;
}

.icon-1x1-extralarge.is-firt-photo {
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-gallery_16-9 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.fourth-photograph {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-top: -8rem;
  padding-bottom: 8rem;
  display: grid;
  position: relative;
}

.image-gallery_3-4 {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

.sixth-photograph {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.seventh-photograph {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-top: -8rem;
  display: grid;
  position: relative;
}

.second-photograph {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.third-photographc {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-top: -8rem;
  display: grid;
  position: relative;
}

.eight-photograph {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  pointer-events: none;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  margin-top: -8rem;
  display: grid;
}

.image-gallery_4-3 {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.image-style_sticker {
  aspect-ratio: 3 / 2;
  filter: none;
  object-fit: cover;
  border-radius: 1rem;
  width: 15rem;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: translate(0, -7rem);
}

.ingallery-name {
  color: #0000;
  text-align: center;
  -webkit-text-stroke-width: .125rem;
  -webkit-text-stroke-color: #fff;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  width: 100%;
  font-family: Akira Super, Arial, sans-serif;
  font-size: 7svw;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  inset: auto auto 4rem;
}

.section-cta {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: clip;
}

.section-cta.is-second {
  background-color: var(--shine);
  background-image: radial-gradient(circle farthest-corner at 50% 100%, var(--gradients-1), var(--transparent) 72%), radial-gradient(circle farthest-corner at 100% 50%, var(--gradients-2), var(--transparent) 40%), radial-gradient(circle farthest-corner at 0% 0%, var(--gradients-1), var(--transparent) 40%);
}

.artist-date-list {
  grid-column-gap: 4.1rem;
  grid-row-gap: 4.1rem;
  display: flex;
}

.tour-datesline {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.section_trayectoria {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: clip;
}

.artisthero_profileimage {
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 90svh;
  position: relative;
}

.footer-links_thin-column {
  flex: 1;
  min-width: 12rem;
}

.footer-links {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: stretch;
  min-width: 47rem;
  max-width: 100%;
  display: grid;
}

.livechat-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #000;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  display: flex;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 80%;
  padding: 15px;
}

.close-live-chat-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  display: flex;
}

.live-icon-chat {
  width: 3rem;
  margin-right: 0;
}

.top-section {
  justify-content: space-between;
  align-items: center;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.whatsapp-block {
  z-index: 10;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: auto 2rem 4rem auto;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 25%;
  text-decoration: none;
  display: flex;
}

.whatsapp-container {
  z-index: 30;
  border: .0625rem solid var(--base-color-neutral--white);
  background-color: var(--backgrounud);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

.live-chat-top-text.block {
  color: #b0b0b0;
  margin-bottom: 10px;
  font-size: 12px;
}

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 5px auto auto 5px;
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: .75rem;
  line-height: 1.2;
  display: inline;
}

.div-block-29 {
  display: inline;
}

.artisthero-flash {
  z-index: 0;
  min-height: 120svh;
  position: absolute;
  inset: 0% 0% auto;
}

.section_partners {
  background-color: #f8893700;
  background-image: radial-gradient(circle farthest-corner at 50% -70%, var(--resalt-light) 45%, var(--transparent));
  color: var(--base-color-neutral--white);
  flex-direction: column;
  justify-content: center;
  overflow: clip;
}

._2col-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2col-grid.is-talent {
  grid-column-gap: 12svw;
  grid-row-gap: 12svw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}

._2col-grid.is-tour {
  grid-template-columns: 1fr 1.25fr;
}

._2col-grid.is-tourdates {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 2fr 3fr;
  place-items: center stretch;
  width: 100%;
  min-height: 20svw;
}

._2col-grid.is-roster_header {
  grid-template-columns: 55% 45%;
}

._2col-grid.is-stats {
  place-items: end start;
}

.image-style_logo {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  width: 8rem;
}

.partner-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.section_talent {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: clip;
}

.is-talent {
  grid-column-gap: 12svw;
  grid-row-gap: 12svw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: center;
  display: grid;
}

.talent-image_wrapper {
  aspect-ratio: 1;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80%;
  display: flex;
  position: relative;
}

.talent-background {
  z-index: 0;
  pointer-events: none;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto 0% 0;
}

.talent-background_image {
  z-index: -1;
  aspect-ratio: 2;
  background-image: radial-gradient(circle farthest-corner at 50% 100%, var(--shine), #fff0 62%);
  width: 55%;
  max-width: 55rem;
  overflow: visible;
}

.talent-content {
  text-align: justify;
  border-bottom-right-radius: 50%;
  padding-bottom: 3rem;
  font-size: 1.25rem;
}

.section_tour {
  flex-direction: column;
  justify-content: center;
  overflow: clip;
}

.tour-world_wrapper {
  aspect-ratio: 1;
  object-fit: cover;
  border: .125rem solid #fff;
  border-radius: 100%;
  flex-flow: row-reverse;
  justify-content: center;
  align-items: center;
  width: 50svw;
  height: 50svw;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: hidden;
}

.tour-world_content {
  border-radius: 100%;
  justify-content: center;
  align-items: stretch;
  height: 90%;
  transform: rotate(7deg);
}

.tour-world_image {
  filter: none;
  height: 100%;
  display: block;
}

.tour-dateswrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  white-space: nowrap;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.grain-overlay {
  z-index: 1;
  opacity: .12;
  pointer-events: none;
  background-image: url('../images/grain-2.gif');
  background-position: 0 0;
  background-size: auto;
  position: absolute;
  inset: 0%;
}

.tour-stats_wrapper {
  background-color: #000;
  background-image: radial-gradient(circle farthest-side at 20% 100%, var(--gradients-2), var(--transparent) 60%), radial-gradient(circle farthest-corner at 100% 0%, var(--gradients-1), var(--transparent) 68%), radial-gradient(circle farthest-corner at 0% 0%, var(--gradients-1), var(--transparent) 51%, #fff0);
  align-items: stretch;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-family: Akira Super, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.tour-datestitle {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: auto;
}

.tour-dateslist {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.tour-stats_thin {
  font-size: 1rem;
  line-height: 0;
}

.tour-datesslider {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 2rem;
  font-size: 1.71rem;
  line-height: 1.2;
  position: relative;
  overflow: clip;
}

.tour-datesslider.is-tour {
  background-color: var(--backgrounud);
  flex: 1;
  position: relative;
  overflow: hidden;
}

.tour-world {
  position: relative;
}

.text-style_resalt {
  background-image: linear-gradient(270deg, var(--gradients-1), var(--gradients-2) 54%);
  color: var(--resalt-light);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.artist-date-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.artisthero-profile {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 70%;
  font-size: 1.25rem;
  display: grid;
  position: static;
}

.artisthero-sociallinks-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.is-social {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  font-family: Akira Super, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: font-variation-settings .2s;
  display: flex;
}

.is-social:hover {
  text-decoration: underline;
}

.footer-content_social-group {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
}

.link-fake_home {
  z-index: auto;
  pointer-events: auto;
  color: var(--transparent);
  object-fit: contain;
  width: 100%;
  height: 100%;
  font-size: 1.35rem;
  line-height: 1.5;
  display: block;
  position: relative;
}

.link-fake_home.w--current {
  z-index: auto;
  flex-flow: column;
}

.roster-item_logo {
  aspect-ratio: 2;
  object-fit: contain;
  width: 70%;
  margin-bottom: 1rem;
}

.menu-desktop {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.cortain-links-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 2rem;
  pointer-events: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cortain-links-wrapper:hover {
  color: #5c5353;
}

.menu-item {
  pointer-events: auto;
  cursor: pointer;
  flex-flow: row;
  flex: 0 auto;
  width: auto;
  height: 2rem;
  padding-top: .25rem;
  padding-bottom: .25rem;
  display: flex;
  overflow: clip;
}

.cortain-overlay {
  z-index: auto;
  aspect-ratio: 2;
  background-color: #000;
  background-image: radial-gradient(circle farthest-corner at 0% 0%, var(--gradients-1), var(--transparent) 58%), radial-gradient(circle farthest-corner at 0% 0%, var(--gradients-2), var(--transparent) 60%), radial-gradient(circle farthest-corner at 100% 0%, var(--gradients-1), var(--transparent) 53%);
  border-radius: 0 0 100svw 100svw;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0%;
  max-height: 75svh;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.menu-link_text {
  text-decoration: none;
}

.menu {
  z-index: 10;
  pointer-events: none;
  color: var(--base-color-neutral--white);
  font-family: Akira Super, Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-layout {
  z-index: 9999999;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--current-color-nav);
  white-space: nowrap;
  grid-template-rows: auto;
  grid-template-columns: 10rem 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  display: grid;
}

.menu-cortain {
  z-index: auto;
  grid-column-gap: 0rem;
  opacity: 0;
  pointer-events: auto;
  background-color: #161514a8;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-link {
  z-index: 10;
  justify-content: center;
  align-items: flex-end;
  font-size: 3rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  position: relative;
}

.menu-iteraction {
  font-family: Akira Expanded Demo, Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: .95;
}

.menu-iteraction.is-close {
  font-size: 1.5rem;
}

.menu-mobile-line {
  background-color: var(--current-color-nav);
  border-radius: 1px;
  width: 100%;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.menu-mobile {
  text-align: center;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: none;
  position: relative;
  overflow: hidden;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer-links_column {
  flex: 1;
  min-width: 15rem;
}

.trayectoria-titelwrapper {
  width: 100%;
}

.gallery-wrapper {
  background-image: linear-gradient(0deg, #000000b3, #4f4f4f00 100%, #fff0);
  width: 100%;
  padding: 4rem 1.5rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  bottom: 0;
}

.footer-credits_wrapper {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: inline-flex;
}

.section-title {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: Akira Super, Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  display: inline;
}

.section-title.is-helvetica {
  font-family: Helvetica, Arial, sans-serif;
}

.section-title.text-style_resalt-dark {
  color: var(--backgrounud);
}

._3col-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._3col-grid.is-stats {
  place-items: end start;
}

.text-style_datetype {
  background-image: linear-gradient(160deg, var(--gradients-1), var(--gradients-2) 54%);
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.tour-date_fade {
  background-image: linear-gradient(90deg, var(--backgrounud), var(--transparent) 10%, var(--transparent) 90%, var(--backgrounud));
  pointer-events: none;
  flex: 1;
  position: absolute;
  inset: 0%;
}

.roster_header-text {
  z-index: 2;
  flex: 0 auto;
  position: relative;
}

.roster_header-text.is-cta {
  justify-content: center;
  align-items: center;
  min-height: 20svw;
  display: flex;
}

.testimonial-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.section_rosterheader {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
}

.hero-content {
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.marquee-snap {
  text-align: left;
  height: 5rem;
  font-family: Akira Super, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.marquee_track-snap {
  width: 100%;
  height: 100%;
  position: relative;
}

.marquee_item-snap {
  text-align: center;
  width: 100%;
  height: 100%;
}

.address {
  font-style: normal;
}

.section_legal-page {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100svh;
}

.artisthero-stickywrapper {
  align-items: stretch;
  position: relative;
}

.artist-date-empty {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--transparent);
  justify-content: center;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.artisthero-social-title {
  background-image: linear-gradient(270deg, var(--gradients-1), var(--gradients-2) 54%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.collection-item-3 {
  position: relative;
}

.image-style-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.animation-item_block {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: clip;
}

.animation-shared_list {
  display: none;
  position: relative;
}

.animation-item_card {
  opacity: 0;
  min-width: 100%;
  transition: opacity .5s ease-in-out;
  position: absolute;
  inset: 0;
}

.roster-nameslider {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 4rem;
  font-size: 1.71rem;
  line-height: 1.2;
  position: relative;
  overflow: clip;
}

.roster-namelist {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  display: flex;
  position: relative;
}

.events-active {
  pointer-events: auto;
}

.artisthero-inscrustado {
  position: relative;
}

.fs-cc_button {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border: .0625rem solid var(--base-color-neutral--white);
  background-color: var(--base-color-neutral--white);
  color: var(--backgrounud);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: .5rem 1rem;
  font-size: .9375rem;
  font-weight: 400;
  transition: background-color .1s;
  display: inline-flex;
}

.fs-cc_button.is-secondary {
  background-color: var(--transparent);
  color: var(--base-color-neutral--white);
}

.fs-cc_button.is-manager {
  border-color: var(--transparent);
  background-color: var(--backgrounud);
  color: var(--base-color-neutral--white);
}

.fs-cc_screen-reader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.cookie-preference_wrapper {
  z-index: 1;
  width: 100%;
  max-height: 100%;
  padding: 2rem;
  position: relative;
  overflow: auto;
}

.fs-cc_modal-buttons {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border-top: .5rem solid var(--resalt-light);
  background-color: var(--backgrounud);
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .4rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: minmax(8.7rem, auto) minmax(10rem, auto) minmax(9rem, auto);
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.fs-cc_close-button-line {
  background-color: var(--backgrounud);
  width: 1rem;
  height: 2px;
  position: absolute;
  transform: rotate(-45deg);
}

.fs-cc_close-button-line.is-2nd {
  transform: rotate(45deg);
}

.fs-cc_close-button {
  z-index: 5;
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  display: flex;
  position: relative;
}

.fs-cc_modal {
  background-color: var(--base-color-neutral--white);
  border-radius: .5rem;
  flex-direction: column;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
  overflow: clip;
}

.hide-cookie-banner {
  display: none;
}

.cookie-preference_background {
  opacity: 1;
  cursor: pointer;
  background-color: #10234145;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc_checkbox {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.75rem;
  transition: color .15s cubic-bezier(.25, .46, .45, .94);
}

.fs-cc_checkbox.is--not-allowed {
  cursor: not-allowed;
}

.fs-cc_checkbox-button {
  float: left;
  border: .0625rem solid var(--backgrounud);
  background-color: var(--transparent);
  border-radius: .25rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: -1.75rem;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.fs-cc_checkbox-button.w--redirected-checked {
  background-color: var(--gradients-1);
  background-image: url('../images/radio__checkmark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: .875rem;
}

.fs-cc_checkbox-button.w--redirected-focus {
  box-shadow: none;
}

.fs-cc_checkbox-button.is-required {
  background-color: var(--gradients-1);
  cursor: not-allowed;
  background-image: url('../images/radio__checkmark.svg');
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: .875rem;
}

.fs-cc_checkbox-description {
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
}

.fs_cc-modal-content {
  padding: 1.5rem;
}

.fs-cc_preferences {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.fs-cc_preference-component {
  z-index: 9525;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc_preference-buttons {
  z-index: 1;
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--backgrounud);
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
}

.fs-cc_cookie-manager {
  z-index: 9500;
  background-color: var(--resalt-light);
  background-image: radial-gradient(circle farthest-corner at 100% 50%, var(--gradients-2), var(--gradients-1));
  border-radius: 5rem;
  justify-content: flex-start;
  align-items: flex-end;
  padding: .25rem;
  display: flex;
  position: fixed;
  inset: auto auto 2rem 2rem;
  overflow: hidden;
}

.fs-cc_checkbox-label {
  cursor: pointer;
  margin-bottom: .25rem;
  font-size: .9375rem;
  font-weight: 700;
}

.fs-cc_link {
  text-decoration: underline;
}

.fs-cc_form {
  margin-bottom: 0;
}

.fs-cc_cookie-component {
  z-index: 9500;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.custom-cookie {
  z-index: 9999999;
  color: var(--backgrounud);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
}

.coolkie-modal-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
}

.cookie-botton-group {
  background-color: var(--resalt-light);
  background-image: radial-gradient(circle farthest-corner at 100% 50%, var(--gradients-2), var(--gradients-1));
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
  align-items: stretch;
  width: 100%;
  padding-top: .5rem;
}

.cookie-botton-group.is-manager {
  z-index: 1;
  width: auto;
  margin-bottom: -1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  position: sticky;
  bottom: -2rem;
  left: 0;
  right: 0;
}

.legal-rich-block {
  font-weight: 400;
}

.is-shine {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--shine), var(--transparent) 65%);
  width: 100%;
  height: 100%;
}

.section_404 {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
}

.email-cookie {
  width: 100%;
  height: 1px;
}

.modal1_close-button {
  border: .125rem solid var(--resalt-light);
  background-color: var(--backgrounud);
  border-radius: .5rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.header80_image-list {
  z-index: 1;
  grid-row-gap: 26vw;
  flex-direction: column;
  padding-top: 70vh;
  display: flex;
}

.paragraph {
  margin-bottom: 0;
}

.header54_component {
  z-index: 1;
  position: relative;
}

.section_method-hostedbytheroom {
  z-index: 2;
  background-color: var(--backgrounud);
  position: relative;
}

.section_method-hostedbytheroom.z-index-2 {
  overflow: hidden;
}

.gallery27_image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: .8rem;
  width: 100%;
}

.gallery27_mask {
  width: 15rem;
  overflow: visible;
}

.modal1_background-overlay {
  z-index: -1;
  background-color: var(--shine);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header80_image {
  object-fit: cover;
  border-radius: 2.5rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.layout215_image-wrapper {
  min-width: 30rem;
  max-width: 38rem;
  padding: 1rem;
}

.layout348_mobile-image-wrapper {
  display: none;
}

.layout348_component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  padding-top: 25svh;
  position: relative;
}

.header36_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout348_desktop-image-wrapper {
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slider-arrow-icon_default {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.layout215_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(min-content, max-content);
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.header36_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  display: grid;
}

.header80_content {
  justify-content: center;
  align-items: center;
  max-width: 48rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: flex;
  position: relative;
}

.gallery27_slide {
  padding-right: .5rem;
}

.header15_image {
  aspect-ratio: 2.39;
  object-fit: cover;
  background-image: url('../images/dsc00086_optimized.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
}

.layout215_content-right {
  flex: 1;
}

.gallery27_slider {
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-left: -1rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  position: relative;
  overflow: hidden;
}

.header80_images-wrapper {
  z-index: 1;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.header80_images-wrapper.images-wrapper-right {
  z-index: 0;
  inset: 0% 0% 0% auto;
}

.section_header-hostedbytheroom {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, var(--shine), var(--transparent));
  overflow: clip;
}

.slider-arrow {
  color: currentColor;
  border: 1px solid;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.slider-arrow:hover {
  box-shadow: inset 0 0 6px, 0 0 10px;
}

.slider-arrow.is-bottom-left-previous {
  inset: auto auto 1rem 1rem;
}

.slider-arrow.is-bottom-left-next {
  inset: auto auto 1rem 5rem;
}

.header-highlights-hosted-by-the-room_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.header15_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.section_header-cmsevents {
  z-index: 2;
  background-color: var(--backgrounud);
  position: relative;
}

.gallery27_slide-nav {
  filter: invert();
  mix-blend-mode: difference;
  height: 1.75rem;
  font-size: .5rem;
  inset: auto 4rem 1rem auto;
}

.modal1_content-wrapper {
  background-color: var(--backgrounud);
  border-radius: 1.3rem;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 48rem;
  height: auto;
  max-height: 80vh;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.header15_content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.section_cmsevents {
  z-index: 1;
  color: var(--current-color-events);
  position: relative;
}

.layout348_content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100svh;
}

.layout348_mobile-image {
  width: 100%;
  position: absolute;
}

.header-highlights-hosted-by-the-room_component {
  height: 300vh;
  position: relative;
}

.background-layer {
  z-index: -1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.background-layer.is-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-layer.is-solid {
  display: none;
}

.layout348_content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100svh;
  display: flex;
}

.header36_content {
  border-style: none solid solid;
  border-width: 1px .5rem 1px 1px;
  border-color: black var(--resalt-light) black black;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  max-width: 35rem;
  display: flex;
}

.section_cta-hostedbytheroom {
  z-index: 2;
  background-color: var(--backgrounud);
  position: relative;
  overflow: clip;
}

.header-highlights-hosted-by-the-room_content-wrapper {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.modal1_component {
  z-index: 99;
  color: var(--base-color-neutral--white);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.layout215_image {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.section_testimoniall-hostedbythe-room {
  z-index: 3;
  background-color: var(--resalt-light);
  background-image: radial-gradient(circle farthest-corner at 0% 50%, var(--resalt-light), var(--transparent)), radial-gradient(circle farthest-corner at 100% 0%, var(--gradients-1), var(--transparent));
  color: var(--base-color-neutral--white);
  position: relative;
  overflow: clip;
}

.gallery27_image-wrapper {
  width: 100%;
  margin: 0 -1rem -1rem;
  padding: 1rem;
  overflow: hidden;
}

.layout348_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 30%;
  margin-top: 35svh;
  margin-bottom: 35svh;
  position: sticky;
  top: 35svh;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.header80_image-wrapper {
  width: 100%;
  padding-top: 120%;
  position: relative;
  overflow: hidden;
}

.header80_image-wrapper.is-image-3 {
  width: 20vw;
  margin-top: -5vw;
  left: 4vw;
}

.header80_image-wrapper.is-image-2 {
  width: 22vw;
  margin-top: -46vw;
  left: 58vw;
}

.header80_image-wrapper.is-image-6 {
  opacity: .75;
  width: 18vw;
  margin-top: -44vw;
  right: 54vw;
}

.header80_image-wrapper.is-image-1 {
  width: 22vw;
}

.header80_image-wrapper.is-image-4 {
  width: 18vw;
  margin-top: -45vw;
  left: 64vw;
}

.header80_image-wrapper.is-image-5 {
  opacity: .75;
  width: 20vw;
}

.background-holder {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0%;
}

.max-width-tiny {
  width: 100%;
  max-width: 8rem;
}

.is-akira {
  font-family: Akira Super, Arial, sans-serif;
}

.is-starhero {
  color: var(--resalt-light);
}

.lightboxlink {
  border-top-style: solid;
  border-top-width: .0625rem;
  border-top-color: var(--backgrounud);
  border-right-style: solid;
  border-right-width: .0625rem;
  border-right-color: var(--backgrounud);
  border-bottom-style: solid;
  border-bottom-width: .0625rem;
  border-bottom-color: var(--backgrounud);
  border-left-style: solid;
  border-left-width: .0625rem;
  border-left-color: var(--backgrounud);
  color: inherit;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  padding: .125rem;
  display: flex;
  border-color: currentColor !important;
}

.lightboxlink:hover {
  box-shadow: 0 0 10px !important;
}

.hosted-hero-logo {
  width: 100%;
  max-width: 28rem;
}

.hero-wrapper-image {
  border: .125rem solid var(--base-color-neutral--white);
  border-radius: 1.5rem;
  padding: 1rem;
  position: relative;
}

.rotator {
  pointer-events: none;
  transform-origin: center;
  width: 100%;
  height: 100%;
  animation: 6s linear infinite rotateAround;
  position: absolute;
  inset: 50% auto auto 50%;
}

.rotator.is-second {
  left: -50%;
}

.div-block-30 {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.highlights-hosted-by-the-room_heading {
  z-index: 1;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  height: 5rem;
  font-family: Akira Super, Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  display: flex;
  position: relative;
}

.highlights-hosted-by-the-room_heading.heading-2 {
  object-fit: contain;
  margin-bottom: .75rem;
}

.highlights-hosted-by-the-room_image-wrapper {
  justify-content: center;
  align-items: center;
  width: 100rem;
  min-width: 4rem;
  max-width: 16rem;
  display: flex;
  position: relative;
}

.highlights-hosted-by-the-room_content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 40% max-content 40%;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.highlights-hosted-by-the-room_circle {
  z-index: -1;
  background-color: var(--transparent);
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--shine), var(--transparent) 58%);
  border-radius: 99999px;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  display: flex;
  position: absolute;
}

.layout488_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.highlights-hosted-by-the-room_component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200vh;
  position: relative;
}

.highlights-hosted-by-the-room_logo {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  max-width: 100svw;
  height: 100%;
  max-height: 100svw;
  position: static;
  inset: 0%;
  overflow: visible;
  transform: rotate(6deg);
}

.highlights-hosted-by-the-room_circle-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100%;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  display: flex;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.highlights-hosted-by-the-room_button-wrapper {
  box-sizing: content-box;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.typewriter-js {
  font-family: Akira Super, Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.text-in-box-mega {
  font-size: 6rem;
}

.text-in-box-big {
  font-size: 4.3rem;
}

.text-style-inlineblock {
  display: inline-block;
}

.iframe-wrapper {
  border-top-style: solid;
  border-top-width: .0625rem;
  border-top-color: var(--backgrounud);
  border-right-style: solid;
  border-right-width: .0625rem;
  border-right-color: var(--backgrounud);
  border-bottom-style: solid;
  border-bottom-width: .0625rem;
  border-bottom-color: var(--backgrounud);
  border-left-style: solid;
  border-left-width: .0625rem;
  border-left-color: var(--backgrounud);
  color: inherit;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .25rem;
  display: flex;
  border-color: currentColor !important;
}

.iframe-wrapper:hover {
  box-shadow: 0 0 10px !important;
}

.ticketing-embed {
  word-break: break-all;
  width: 100%;
  margin-bottom: 0 !important;
}

.position-relative {
  position: relative;
}

.slider-items {
  flex-flow: wrap;
  display: flex;
}

.hostedbytheroom-cms {
  position: relative;
}

.svg-room {
  position: absolute;
  inset: 0%;
}

.hidden-trigger {
  width: 0;
  height: 0;
  display: none;
}

.open-mobile {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
}

.sliderholders {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.slide-remplace {
  flex-flow: wrap;
  display: flex;
}

.collection-list-wrapper {
  overflow: hidden;
}

.collection-item-4 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.25fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  width: 100%;
  display: grid;
}

@media screen and (min-width: 1920px) {
  .artisthero-sociallinks {
    top: 25svh;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }

  .whatsapp-chat {
    display: none;
  }

  .roster_header-text.is-cta {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .artist-date-empty {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: var(--transparent);
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-tablet {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .icon-1x1-medium.is-heading {
    width: 1.75rem;
    height: 1.75rem;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .nav_button {
    color: #fff;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .footer_grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .footer-credits {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
  }

  .roster-thumbnail.is-hero {
    height: 13.5rem;
  }

  .roster-layher.is-textslider {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    padding-top: 1.5rem;
  }

  .button-style_caption {
    align-self: center;
  }

  .roster_header-background {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    width: 120svw;
    position: relative;
  }

  .roster_header-background.is-cta {
    position: absolute;
  }

  .tour-stats {
    font-size: 1.75rem;
  }

  .grain-layher.realtive {
    width: 100%;
    height: 100%;
  }

  .section_artisthero {
    justify-content: flex-end;
    align-items: stretch;
  }

  .artisthero-background {
    bottom: 0;
  }

  .artisthero-title {
    font-size: 4rem;
  }

  .artisthero-profile-image {
    align-self: center;
    width: 55svw;
  }

  .section_testimonials {
    padding-top: 3rem;
  }

  ._6col-grid.is-testimonial {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-content_wrapper {
    font-size: 3.5rem;
  }

  .hero_animation-item {
    width: 15rem;
  }

  .hero_animation-item.is-2, .hero_animation-item.is-4 {
    width: 8rem;
  }

  .hero_animation-item.is-5 {
    width: 13rem;
  }

  .hero_animation-item.is-7 {
    width: 4rem;
  }

  .hero-card_wrapper {
    width: 15rem;
  }

  .artisthero-sociallinks {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    position: static;
  }

  .wrapper-style_highlight-caption {
    align-self: stretch;
    font-size: 7.25svw;
  }

  .first-photograph {
    grid-template-columns: 1.5fr 1fr;
  }

  .fourth-photograph {
    grid-template-columns: 1fr 3fr 1fr;
    margin-top: -4rem;
    padding-bottom: 6rem;
  }

  .sixth-photograph {
    grid-template-columns: 3fr 1fr;
  }

  .seventh-photograph {
    grid-template-columns: 1fr 1.75fr;
    margin-top: -4rem;
  }

  .second-photograph {
    grid-template-columns: 1fr 2.75fr;
  }

  .third-photographc {
    grid-template-columns: 1.75fr 1.25fr;
    margin-top: -4rem;
  }

  .eight-photograph {
    grid-template-columns: .25fr 2.5fr 1fr;
    margin-top: -4rem;
  }

  .tour-datesline {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    height: 4rem;
  }

  .footer-links {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: space-between;
    min-width: 100%;
    font-size: .9rem;
  }

  .whatsapp-block {
    bottom: 20px;
    right: 20px;
  }

  .section_partners {
    padding-top: 3rem;
  }

  ._2col-grid.is-talent, ._2col-grid.is-tour {
    grid-template-columns: 1fr;
  }

  ._2col-grid.is-tourdates {
    grid-template-columns: 3fr 2fr;
  }

  ._2col-grid.is-roster_header {
    grid-template-columns: 100%;
  }

  .is-talent {
    grid-template-columns: 1fr;
  }

  .talent-image_wrapper {
    margin-top: 2rem;
  }

  .talent-background_image {
    max-width: 20rem;
  }

  .talent-content {
    padding-bottom: 8rem;
  }

  .section_tour {
    padding-top: 3rem;
  }

  .tour-world_wrapper {
    left: 19.5svw;
  }

  .tour-stats_wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .tour-datesslider.is-tour {
    width: 100%;
  }

  .tour-world {
    min-height: 10rem;
  }

  .artisthero-profile {
    width: 100%;
  }

  .artisthero-sociallinks-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .navbar-layout {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .footer-links_column {
    min-width: 12rem;
  }

  .section-title {
    font-size: 3rem;
  }

  ._3col-grid.is-roster {
    grid-template-columns: 1fr 1fr;
  }

  .marquee-snap {
    height: 5rem;
  }

  .artisthero-stickywrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .faq-item-wrapper {
    z-index: 8888;
    position: static;
  }

  .artisthero-social-title {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: row;
  }

  .coolkie-modal-wrapper {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .header80_image {
    border-radius: 2rem;
  }

  .layout215_image-wrapper {
    min-width: auto;
  }

  .layout348_mobile-image-wrapper {
    width: 100%;
    margin-top: 2.5rem;
    display: block;
  }

  .layout348_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    display: block;
  }

  .layout348_desktop-image-wrapper {
    display: none;
  }

  .layout215_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .header80_content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .gallery27_slider {
    padding-left: 1rem;
  }

  .slider-arrow.is-bottom-left-previous {
    left: auto;
  }

  .slider-arrow.is-bottom-left-next {
    left: 5rem;
  }

  .gallery27_slide-nav {
    right: 2rem;
  }

  .modal1_content-wrapper {
    max-width: 90svw;
  }

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

  .layout348_mobile-image {
    position: static;
  }

  .header80_image-wrapper.is-image-3 {
    width: 26vw;
  }

  .header80_image-wrapper.is-image-2 {
    width: 28vw;
  }

  .header80_image-wrapper.is-image-6 {
    width: 24vw;
  }

  .header80_image-wrapper.is-image-1 {
    width: 28vw;
  }

  .header80_image-wrapper.is-image-4 {
    width: 24vw;
  }

  .header80_image-wrapper.is-image-5 {
    width: 26vw;
  }

  .hosted-hero-logo {
    max-width: 26rem;
  }

  .highlights-hosted-by-the-room_image-wrapper {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }

  .highlights-hosted-by-the-room_content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 40%;
    height: auto;
    min-height: 75svh;
  }

  .highlights-hosted-by-the-room_component {
    height: 150vh;
  }

  .highlights-hosted-by-the-room_logo {
    max-width: 150svw;
    max-height: 150svw;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .icon-1x1-medium.is-heading {
    width: 1.5rem;
    height: 1.5rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .footer-content {
    min-width: 100%;
  }

  .footer-credits {
    padding-bottom: 4rem;
  }

  .roster-thumbnail.is-hero {
    height: 9rem;
  }

  .roster-slider_text {
    -webkit-text-stroke-width: .09375rem;
    font-size: 3rem;
  }

  .roster_header-background {
    grid-template-columns: 5fr .25fr 5fr;
    width: 100%;
    position: absolute;
  }

  .roster_header-background.is-cta {
    grid-template-rows: auto;
    grid-template-columns: 5fr .25fr 5fr;
  }

  .tour-stats {
    font-size: 2.6rem;
  }

  .planet-fill {
    min-width: 200svw;
  }

  .artisthero-title {
    -webkit-text-stroke-width: .0625rem;
    font-size: 3rem;
  }

  ._6col-grid.is-testimonial {
    grid-column-gap: 72px;
    grid-row-gap: 32px;
    grid-template-columns: auto auto;
    transform: scale(.96);
  }

  .hero-content_wrapper {
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
  }

  .roster_header-slider {
    width: 100%;
  }

  .hero_animation-item {
    width: 10rem;
  }

  .hero_animation-item.is-2 {
    width: 6rem;
  }

  .hero_animation-item.is-3 {
    top: 19.9svh;
    right: -2.6svw;
  }

  .hero_animation-item.is-4 {
    width: 6rem;
  }

  .hero_animation-item.is-5 {
    width: 11rem;
  }

  .hero_animation-item.is-7 {
    width: 3rem;
  }

  .hero-card_wrapper {
    width: 10rem;
  }

  .roster_header-content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: flex-start;
    align-items: center;
  }

  .roster_header-content.is-cta {
    justify-content: center;
    align-items: center;
  }

  .wrapper-style_highlight-caption {
    white-space: break-spaces;
    align-self: auto;
    font-size: 7.5svw;
    display: inline;
  }

  .wrapper-style_highlight-caption.is-artistname {
    align-self: auto;
  }

  .first-photograph {
    grid-template-columns: 2.5fr 1fr;
  }

  .fourth-photograph {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr 4fr 1fr;
    margin-top: -2rem;
    padding-bottom: 5rem;
  }

  .sixth-photograph {
    grid-template-columns: 4fr 1fr;
  }

  .seventh-photograph {
    grid-template-columns: 1fr 2.5fr;
    margin-top: -2rem;
  }

  .second-photograph {
    grid-template-columns: 1fr 4fr;
  }

  .third-photographc {
    grid-template-columns: 1.5fr 1.25fr;
    margin-top: -2rem;
  }

  .eight-photograph {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    margin-top: -2rem;
    padding-left: 10%;
    padding-right: 10%;
  }

  .image-style_sticker {
    width: 10rem;
    top: auto;
    bottom: 0%;
    right: 3svw;
  }

  .ingallery-name {
    -webkit-text-stroke-width: .065rem;
  }

  .tour-datesline {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .footer-links {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: .75fr 1fr;
    font-size: .75rem;
  }

  .whatsapp-block {
    bottom: 15px;
    right: 15px;
  }

  ._2col-grid.is-partner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  ._2col-grid.is-tourdates {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 2fr 3fr;
    grid-auto-flow: row;
  }

  ._2col-grid.is-stats {
    flex-flow: wrap;
    display: flex;
  }

  .partner-content {
    grid-template-columns: 1.5fr;
  }

  .talent-content {
    font-size: 1rem;
  }

  .tour-world_wrapper {
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .tour-datestitle {
    order: -1;
  }

  .artisthero-profile {
    font-size: 1rem;
  }

  .artisthero-sociallinks-wrapper {
    grid-row-gap: .5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .menu-desktop {
    display: none;
  }

  .cortain-links-wrapper {
    grid-row-gap: 1.5rem;
  }

  .menu-item {
    height: 2rem;
  }

  .menu-cortain {
    grid-row-gap: 0rem;
  }

  .menu-link {
    font-size: 2rem;
  }

  .menu-mobile-line {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .menu-mobile-line.open {
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    inset: 0%;
  }

  .menu-mobile {
    display: block;
  }

  .gallery-title {
    font-size: .875rem;
  }

  .trayectoria-titelwrapper {
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    display: inline-flex;
  }

  .gallery-wrapper {
    font-size: .875rem;
  }

  .section-title {
    font-size: 2rem;
  }

  ._3col-grid.is-stats {
    grid-template-columns: 1fr;
  }

  .roster_header-text {
    padding-top: 35svw;
  }

  .roster_header-text.is-cta {
    justify-content: center;
    align-items: center;
    min-height: 50svw;
    padding-top: 0;
    display: flex;
  }

  .testimonial-title {
    font-size: 1rem;
  }

  .marquee-snap {
    height: 3.5rem;
  }

  .artisthero-social-title {
    font-size: 2rem;
  }

  .roster-nameslider {
    height: 3rem;
  }

  .roster-nameslider.is-reverse {
    height: 2.5rem;
  }

  .fs-cc_button {
    white-space: nowrap;
  }

  .cookie-preference_wrapper {
    padding-top: 2rem;
  }

  .fs-cc_modal-buttons {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    grid-template-columns: minmax(auto, auto);
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    align-items: stretch;
    padding: 1.5rem;
  }

  .fs-cc_close-button {
    margin-right: 1.25rem;
  }

  .header80_image {
    border-radius: 1rem;
  }

  .layout215_image-wrapper {
    max-width: none;
  }

  .layout348_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .header36_image {
    aspect-ratio: 2;
  }

  .layout348_desktop-image-wrapper {
    display: none;
  }

  .layout215_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .header36_component {
    grid-template-columns: 1fr;
  }

  .header80_content {
    padding-top: 4rem;
  }

  .gallery27_slide {
    padding-right: 0;
  }

  .gallery27_slider {
    overflow: visible;
  }

  .header-highlights-hosted-by-the-room_ix-trigger {
    margin-top: 35rem;
  }

  .gallery27_slide-nav {
    right: 5%;
  }

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

  .layout348_content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .header-highlights-hosted-by-the-room_component {
    height: 150vh;
  }

  .layout348_content {
    height: auto;
  }

  .header36_content {
    border-top: .5rem solid var(--resalt-light);
    border-right-style: none;
  }

  .header-highlights-hosted-by-the-room_content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .header80_image-wrapper.is-image-3 {
    width: 28vw;
  }

  .header80_image-wrapper.is-image-2 {
    width: 30vw;
    left: 52vw;
  }

  .header80_image-wrapper.is-image-6 {
    width: 26vw;
    right: 50vw;
  }

  .header80_image-wrapper.is-image-1 {
    width: 30vw;
  }

  .header80_image-wrapper.is-image-4 {
    width: 26vw;
  }

  .header80_image-wrapper.is-image-5 {
    width: 28vw;
  }

  .hero-wrapper-image {
    padding: calc(.5rem + 20%) .5rem .5rem;
  }

  .div-block-30 {
    padding: .5rem;
  }

  .highlights-hosted-by-the-room_image-wrapper {
    margin-top: -7rem;
    margin-bottom: -7rem;
  }

  .highlights-hosted-by-the-room_content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 60%;
  }

  .highlights-hosted-by-the-room_component {
    height: 200vh;
  }

  .typewriter-js {
    font-size: 4.9svw;
  }

  .text-in-box-mega {
    font-size: 14.6svw;
  }

  .text-in-box-big {
    font-size: 10.5svw;
  }

  .close-mobile {
    cursor: zoom-out;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0%;
  }

  .open-mobile {
    cursor: zoom-in;
  }
}

@media screen and (max-width: 479px) {
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .padding-global.gallery {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .button-group {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .text-style-inlineflex {
    display: inline;
  }

  .tour-stats {
    font-size: 1.75rem;
  }

  .planet-fill {
    min-width: 300svw;
  }

  .artisthero-title {
    font-size: 3rem;
  }

  .artisthero-profile-image {
    width: 90svw;
    max-width: 90%;
  }

  ._6col-grid.is-testimonial {
    grid-column-gap: 48px;
    grid-row-gap: 32px;
  }

  .hero-content_wrapper {
    font-size: 1.4rem;
  }

  .hero_animation-item.is-1 {
    top: 8.5svh;
    left: -3.6svw;
  }

  .hero_animation-item.is-2 {
    right: 19.2svw;
  }

  .hero_animation-item.is-3 {
    right: -9.6svw;
  }

  .hero_animation-item.is-4 {
    width: 4rem;
    right: -1svw;
  }

  .hero_animation-item.is-7 {
    width: 2rem;
  }

  .wrapper-style_highlight-caption {
    padding-right: .5rem;
  }

  .icon-1x1-extralarge.is-firt-photo {
    width: 6rem;
    height: 6rem;
  }

  .fourth-photograph {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    margin-top: 4rem;
    padding-left: 10%;
    padding-right: 10%;
  }

  .sixth-photograph {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 4fr;
  }

  .seventh-photograph {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    margin-top: 4rem;
  }

  .second-photograph {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .third-photographc {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 3fr 1fr;
    margin-top: 4rem;
  }

  .eight-photograph {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    margin-top: 4rem;
    padding-left: 10%;
    padding-right: 10%;
  }

  .image-style_sticker {
    width: 30svw;
    inset: auto 5svw -20% auto;
  }

  .ingallery-name {
    font-size: 9svw;
  }

  .footer-links {
    grid-template-columns: .75fr;
  }

  .whatsapp-block {
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
    right: 0;
  }

  .whatsapp-container {
    width: 80px;
    height: 80px;
    bottom: 10px;
    right: 0;
  }

  .whatsapp-chat {
    width: 100%;
    height: 40vh;
    display: none;
    position: relative;
  }

  ._2col-grid.is-partner {
    grid-template-columns: 1fr 1fr;
  }

  ._2col-grid.is-tourdates {
    grid-template-columns: 2fr;
  }

  .talent-content {
    padding-bottom: 8rem;
  }

  .tour-world_wrapper {
    width: 110svw;
    height: 110svw;
    left: -10.5svw;
  }

  .cta-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
  }

  .artisthero-sociallinks-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: wrap;
    grid-template-columns: 1fr;
  }

  .footer-content_social-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: grid;
  }

  .cortain-overlay {
    max-height: 60svh;
  }

  .navbar-layout {
    grid-template-columns: 8rem 1fr auto;
    font-size: 2rem;
    line-height: .7;
  }

  .menu-link {
    font-size: 1.5rem;
  }

  .menu-mobile-line.open {
    justify-content: center;
    align-items: center;
  }

  .menu-mobile {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    width: 25px;
    height: 25px;
    display: flex;
  }

  .trayectoria-titelwrapper {
    grid-column-gap: .25rem;
    grid-row-gap: 0rem;
    text-align: center;
    justify-content: center;
    align-items: flex-start;
    display: inline-block;
  }

  .section-title {
    font-size: 1.75rem;
    display: inline;
  }

  ._3col-grid.is-roster {
    grid-template-columns: 1fr;
  }

  .marquee-snap, .roster-nameslider.is-reverse {
    height: 3rem;
  }

  .cookie-preference_wrapper {
    max-width: 100%;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-cc_close-button {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .fs-cc_modal {
    max-width: 100%;
  }

  .fs-cc_preference-component {
    align-items: flex-end;
  }

  .fs-cc_preference-buttons {
    bottom: 0;
  }

  .fs-cc_cookie-manager {
    inset: auto auto .5rem .5rem;
  }

  .fs-cc_cookie-component {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .custom-cookie {
    display: flex;
  }

  .layout215_image-wrapper {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .layout348_component, .layout215_content, .header36_component, .header15_content-wrapper {
    grid-template-columns: 1fr;
  }

  .header-highlights-hosted-by-the-room_component {
    height: 150vh;
  }

  .layout348_content {
    height: auto;
  }

  .layout215_image {
    aspect-ratio: 1 / 1.25;
  }

  .header80_image-wrapper {
    width: 30vw;
    height: 35vw;
  }

  .highlights-hosted-by-the-room_heading {
    font-size: 1.75rem;
  }

  .highlights-hosted-by-the-room_image-wrapper {
    width: 100%;
  }

  .highlights-hosted-by-the-room_content {
    padding-left: 0;
    padding-right: 0;
  }

  .highlights-hosted-by-the-room_component {
    height: 100vh;
  }

  .highlights-hosted-by-the-room_button-wrapper {
    padding: 0;
  }

  .typewriter-js {
    font-size: 4.7svw;
  }

  .text-in-box-mega {
    font-size: 14svw;
  }

  .text-in-box-big {
    font-size: 10svw;
  }

  .open-mobile {
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: stretch;
  }
}

#w-node-_07206db8-3252-dfcf-01b5-0e7180289972-6ad097ba {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_07206db8-3252-dfcf-01b5-0e7180289977-6ad097ba {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_07206db8-3252-dfcf-01b5-0e7180289974-6ad097ba {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_07206db8-3252-dfcf-01b5-0e7180289975-6ad097ba {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_07206db8-3252-dfcf-01b5-0e7180289987-6ad097ba {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4a244abe-5839-fb89-1bbc-73014ad58f84-6ad097ba {
  order: -9999;
}

#w-node-eaa0abf4-1081-3bd3-2fa3-05e793303eeb-6ad097ba {
  place-self: stretch stretch;
}

#w-node-bb821872-68f4-731f-5d97-2b84680c0160-6ad097ba {
  align-self: start;
}

#w-node-bb821872-68f4-731f-5d97-2b84680c0161-6ad097ba {
  place-self: center start;
}

#w-node-bf1c01fd-0c5d-a29d-2a91-14591d03fd2e-6ad097ba, #w-node-_3f19d3b9-3a3b-5835-0ceb-224e6b9711fd-6ad097ba, #w-node-_46f5041c-29fe-9391-bd46-2a3c73b2d06b-6ad097ba {
  justify-self: stretch;
}

#w-node-_7e651494-9167-8327-3502-2d04c3b4cbee-6ad097ba {
  align-self: start;
}

#w-node-_4f89e5da-4f28-9270-3a8e-4c3be0ca1c1c-6ad097ba {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_526a089e-a4a3-ae9b-1c46-9ae4df23910a-6ad097ba, #w-node-_98d96864-fa86-d979-f181-50f39b823246-6ad097ba, #w-node-_10cdb6f8-c694-c2fe-a423-1794b845979f-6ad097ba {
  place-self: center;
}

#w-node-_62e89243-db57-ae13-f3ca-b072d408e7c2-c0d8b27a {
  grid-area: 1 / 1 / 2 / 2;
  place-self: stretch stretch;
}

#w-node-_268ee44f-bd4b-7bc5-0944-3683f9b8ebe5-c0d8b27a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch stretch;
}

#w-node-dfd690b6-c3ac-ffa1-962b-406ec0d8b290-c0d8b27a {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_92719042-858f-6d58-5814-2b1741076142-6ad097bc {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_92719042-858f-6d58-5814-2b1741076143-6ad097bc {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_92719042-858f-6d58-5814-2b1741076144-6ad097bc {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_92719042-858f-6d58-5814-2b1741076145-6ad097bc {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-b224ec27-30fa-be84-48bf-7ed471542af3-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-6ad097bd {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-6ad097bd, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-6ad097bd {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-6ad097bd {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-6ad097bd {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-6ad097bd {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-6ad097bd, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-6ad097bd {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-6ad097bd {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-6ad097bd, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-6ad097bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-6ad097bd {
  justify-self: start;
}

#w-node-e7ecac4b-cfdb-54c9-9fe5-b57223c50048-e3719dcf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ef544236-fc5c-a95c-8f3b-5b15c398c116-e3719dcf {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ee984ee8-1c9e-a749-9d05-d8b521602889-e3719dcf {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-ef544236-fc5c-a95c-8f3b-5b15c398c124-e3719dcf {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ef544236-fc5c-a95c-8f3b-5b15c398c125-e3719dcf {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_21226e5e-d11e-aa8a-2347-c6cd07d841f3-e3719dcf, #w-node-_21226e5e-d11e-aa8a-2347-c6cd07d841f7-e3719dcf, #w-node-_936e1ab1-cd8d-c4cc-e6bc-6ddbc48e6bdc-e3719dcf, #w-node-_936e1ab1-cd8d-c4cc-e6bc-6ddbc48e6be0-e3719dcf {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_95b0d5b0-387e-0166-37b4-5be06295ad70-e3719dcf {
  align-self: center;
}

#w-node-a014e1c7-c976-8781-4bd0-0bba4b12ef2e-e3719dcf, #w-node-a014e1c7-c976-8781-4bd0-0bba4b12ef32-e3719dcf, #w-node-_6031c950-01bd-ebc9-bb84-a8e635c64232-e3719dcf, #w-node-_6031c950-01bd-ebc9-bb84-a8e635c6423f-e3719dcf {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4b9-d472f53b, #w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4bb-d472f53b, #w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4bd-d472f53b, #w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4bf-d472f53b, #w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4c3-d472f53b, #w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4c5-d472f53b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4da-d472f53b {
  justify-self: center;
}

#w-node-f03fb01a-c193-ab03-be53-8500652427da-d472f53b {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-_07206db8-3252-dfcf-01b5-0e7180289972-6ad097ba {
    align-self: center;
  }

  #w-node-_07206db8-3252-dfcf-01b5-0e7180289987-6ad097ba {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_57ebc043-6418-00ac-03cf-8811f86bb218-6ad097ba {
    grid-column: 1 / 2;
  }

  #w-node-bb821872-68f4-731f-5d97-2b84680c0160-6ad097ba {
    order: 9999;
  }

  #w-node-_4ef3eecc-2037-89c2-da41-34d43758203d-6ad097ba {
    order: -9999;
  }

  #w-node-_92719042-858f-6d58-5814-2b1741076142-6ad097bc, #w-node-ef544236-fc5c-a95c-8f3b-5b15c398c116-e3719dcf {
    align-self: center;
  }

  #eventholders.w-node-f03fb01a-c193-ab03-be53-8500652427d6-d472f53b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_07206db8-3252-dfcf-01b5-0e7180289972-6ad097ba {
    grid-column-end: 2;
    place-self: stretch stretch;
  }

  #w-node-_07206db8-3252-dfcf-01b5-0e7180289977-6ad097ba {
    grid-column: 2 / 4;
    place-self: stretch stretch;
  }

  #w-node-_07206db8-3252-dfcf-01b5-0e7180289974-6ad097ba {
    grid-area: 2 / 1 / 3 / 3;
    place-self: stretch stretch;
  }

  #w-node-_07206db8-3252-dfcf-01b5-0e7180289975-6ad097ba {
    grid-area: 2 / 3 / 3 / 4;
    place-self: stretch stretch;
  }

  #w-node-eaa0abf4-1081-3bd3-2fa3-05e793303eeb-6ad097ba, #w-node-bb821872-68f4-731f-5d97-2b84680c0160-6ad097ba, #w-node-_9e2518f4-fe70-d51e-29eb-03af4b8e864a-6ad097ba {
    order: -9999;
  }

  #w-node-_92719042-858f-6d58-5814-2b1741076142-6ad097bc {
    grid-column-end: 2;
    place-self: stretch stretch;
  }

  #w-node-_92719042-858f-6d58-5814-2b1741076143-6ad097bc {
    grid-area: 1 / 2 / 2 / 4;
    place-self: stretch stretch;
  }

  #w-node-_92719042-858f-6d58-5814-2b1741076144-6ad097bc {
    grid-area: 2 / 1 / 3 / 3;
    place-self: stretch stretch;
  }

  #w-node-_92719042-858f-6d58-5814-2b1741076145-6ad097bc {
    grid-area: 2 / 3 / 3 / 4;
    place-self: stretch stretch;
  }

  #w-node-ef544236-fc5c-a95c-8f3b-5b15c398c116-e3719dcf {
    grid-column-end: 2;
    place-self: stretch stretch;
  }

  #w-node-ee984ee8-1c9e-a749-9d05-d8b521602889-e3719dcf {
    grid-area: 1 / 2 / 2 / 4;
    place-self: stretch stretch;
  }

  #w-node-ef544236-fc5c-a95c-8f3b-5b15c398c124-e3719dcf {
    grid-area: 2 / 1 / 3 / 3;
    place-self: stretch stretch;
  }

  #w-node-ef544236-fc5c-a95c-8f3b-5b15c398c125-e3719dcf {
    grid-area: 2 / 3 / 3 / 4;
    place-self: stretch stretch;
  }

  #w-node-_6031c950-01bd-ebc9-bb84-a8e635c64232-e3719dcf, #w-node-_6031c950-01bd-ebc9-bb84-a8e635c6423f-e3719dcf {
    grid-column: 1 / 2;
  }

  #w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4dc-d472f53b {
    order: -9999;
  }

  #w-node-_4ce2d02f-2a2f-71f0-9453-8a4381cad4da-d472f53b {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bb821872-68f4-731f-5d97-2b84680c0160-6ad097ba {
    order: 9999;
  }

  #w-node-_21226e5e-d11e-aa8a-2347-c6cd07d841f3-e3719dcf, #w-node-_21226e5e-d11e-aa8a-2347-c6cd07d841f7-e3719dcf, #w-node-_936e1ab1-cd8d-c4cc-e6bc-6ddbc48e6bdc-e3719dcf {
    grid-column: 1 / 2;
  }

  #w-node-_936e1ab1-cd8d-c4cc-e6bc-6ddbc48e6be0-e3719dcf {
    grid-area: 1 / 1 / 2 / 2;
  }
}


@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/helvetica-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akira Expanded Demo';
  src: url('../fonts/akira-expanded-demo.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Akira Super';
  src: url('../fonts/akira-super-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}