@font-face {
  font-family: Bebasneue;
  src: url('../fonts/BebasNeue-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bebasneue;
  src: url('../fonts/BebasNeue.otf') format("opentype"), url('../fonts/BebasNeue-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bebasneue Book;
  src: url('../fonts/BebasNeue-Book.otf') format("opentype"), url('../fonts/BebasNeue-Book.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bebasneue;
  src: url('../fonts/BebasNeue-Thin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bebasneue;
  src: url('../fonts/BebasNeue-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --silver: #c4c4c4;
  --magenta: #dd25ff;
  --imp: #871f1c;
  --grey: #6d6d6d;
  --09031e: #09031e;
  --midnight-blue: #1d0931;
  --button: #0e4410;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white);
  color: var(--silver);
  cursor: default;
  flex-direction: column;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
}

h1 {
  color: var(--white);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 3.157rem;
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2.369rem;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 1.777rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 1.333em;
  font-weight: 300;
  line-height: 1.3;
}

h5 {
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

h6 {
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.5;
}

p {
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

a {
  color: #000;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  transition: all .2s;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 2;
}

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

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

blockquote {
  border-left: 5px solid var(--magenta);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 11px 20px;
  font-size: 1.5em;
  line-height: 1.3;
}

figure {
  margin: 20px auto;
}

figcaption {
  color: var(--silver);
  text-align: center;
  margin-top: 12px;
  font-size: .75rem;
}

.navbar {
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  position: sticky;
  inset: 0% 0% auto;
}

.container {
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: relative;
}

.container.footer {
  background-color: #000;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.container.footer-copy {
  background-color: var(--imp);
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.brand {
  padding-left: 0;
}

.brand.w--current {
  max-width: 100px;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.nav-link {
  color: #000;
  padding: 20px;
  font-size: 1rem;
  font-weight: 400;
  transition: all .2s;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--imp);
  text-decoration: underline;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.button {
  background-color: var(--imp);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #fff;
  width: 135px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-weight: 400;
}

.button:hover {
  border: 1px solid var(--imp);
  background-color: var(--white);
  color: var(--imp);
  text-decoration: none;
  box-shadow: 0 0 #9733ee;
}

.button.w--open {
  width: 135px;
}

.section {
  width: 100%;
  padding-top: 90px;
}

.section.footer {
  background-color: #000;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.section._404 {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.hero {
  margin-top: 0;
  padding-top: 0;
}

.hero-wrap {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.play-icon {
  opacity: .75;
  flex: none;
  width: 45px;
  position: absolute;
}

.play-icon.hide {
  display: none;
}

.hero-image-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -40px;
  display: flex;
}

.absolute-image {
  object-fit: cover;
  position: absolute;
  inset: 0% auto auto;
}

.ratio-56-25 {
  border-radius: 10px;
  width: 100%;
  max-width: 45%;
  padding-top: 30%;
  position: relative;
  overflow: hidden;
}

.ratio-56-25._1 {
  display: none;
}

.ratio-56-25._2 {
  display: block;
}

.no-top-margin {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Oswald, sans-serif;
  font-weight: 700;
}

.no-top-margin.black {
  color: #000;
  font-weight: 700;
}

._2-column-grid {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 3.25fr .5fr 2.75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.subheading {
  max-width: 64ch;
  margin-bottom: 40px;
}

.subheading.no-margins {
  text-align: justify;
  max-width: 60ch;
}

.social-link {
  color: var(--magenta);
  flex: none;
  padding: 4px;
  font-size: .75rem;
  font-weight: 400;
  text-decoration: none;
}

.social-link:hover {
  text-decoration: none;
  transform: scale(1.1);
}

.social-icon {
  width: 20px;
}

.social-icon.bigger {
  width: 35px;
}

.font-align-center {
  color: #6d6d6d;
  text-align: center;
  -webkit-text-stroke-color: var(--grey);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 50px;
}

.black-box {
  background-color: #000;
  border-radius: 20px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 40px;
}

.black-box-contenter {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.black-box-content {
  width: 100%;
  max-width: 45%;
}

.absolute-lightbox-link {
  border-radius: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.faq-dropdown {
  color: var(--silver);
  border: 1px solid #9733ee;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.content-box {
  width: 100%;
  max-width: 45%;
}

.content-box.trailer {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hero-image {
  border-radius: 20px;
  width: 75%;
}

.hero-content-wrap {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 0;
}

.no-margins.font-align-center-on-mobile {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.body {
  background-color: var(--white);
  color: #000;
  font-family: Oswald, sans-serif;
}

.image {
  z-index: 999;
  width: 100%;
}

.div-block-2 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.paragraph {
  color: #fff;
  text-align: justify;
  font-weight: 300;
}

.image-3 {
  max-width: 30px;
}

.changer-overflow {
  height: 49px;
  display: inline-block;
  overflow: hidden;
}

.changer-move {
  display: inline-block;
}

.wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.text-span-2 {
  font-weight: 200;
}

.grey-box {
  background-color: #eaeaea;
  border-radius: 20px;
  width: 100%;
  padding: 40px;
}

.div-block-5 {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  display: flex;
}

.text-block-2 {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  font-weight: 200;
}

.div-block-6 {
  align-items: center;
  display: flex;
}

.link-block {
  margin-right: 5px;
}

.logos-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 30%;
  display: flex;
}

.logofooter {
  border-radius: 0;
  width: 55px;
}

.logofooter.big {
  width: 90px;
}

.logofooter.small {
  width: 40px;
}

.image-5 {
  width: 60px;
}

.dropdown-2 {
  margin-left: 0;
  margin-right: 0;
}

.dropdown-list {
  width: 134.352px;
}

.dropdown-list.w--open {
  width: 135px;
}

.dropdown-link:hover {
  color: var(--imp);
}

.dropdown-link.hide {
  display: none;
}

.showreel {
  width: 100%;
  max-width: 10%;
  margin-left: auto;
  padding-top: 25px;
  position: relative;
  overflow: hidden;
}

.absolute-lightbox-link-shrl {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.absolute-image-showreel {
  opacity: .91;
  object-fit: cover;
  border-radius: 0;
  max-width: 70%;
  position: absolute;
  inset: 0% auto auto;
}

.dates-wrapper {
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin-top: 40px;
  display: flex;
}

.single, .single:hover {
  text-decoration: none;
}

.single.hide {
  display: none;
}

.datas {
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

.datas.place {
  font-size: 30px;
}

.datas.teatro {
  color: var(--grey);
  font-weight: 500;
}

.datas.data {
  color: var(--imp);
  font-size: 25px;
  font-weight: 500;
}

.body-2 {
  background-color: var(--white);
}

.heading, .heading-2 {
  color: #000;
}

.image-6 {
  border-radius: 0;
}

.image-6.footer {
  width: 100vw;
  margin-bottom: -140px;
}

.absolute-image-cartaz {
  object-fit: cover;
  width: 100%;
}

.absolute-lightbox-link-cartaz {
  border-radius: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.ratio-56-25-cartaz {
  border-radius: 10px;
  width: auto;
  position: relative;
  overflow: hidden;
}

.grey-box-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #eaeaea;
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-self: center;
  justify-items: center;
  width: 100%;
  padding: 40px;
  display: grid;
}

.datas-past {
  color: var(--imp);
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.div-block-10 {
  align-items: center;
  display: flex;
}

.image-7 {
  width: 30px;
}

.div-block-11 {
  align-items: center;
  display: flex;
}

.button-4-next, .button-9-next {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.link-block-copy {
  z-index: 0;
  width: 45px;
  height: 45px;
  position: fixed;
  inset: auto 5% 3% auto;
}

.button-5-next {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.div-block {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90vh;
  display: flex;
}

.button-3-next {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.button-1-next {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  display: block;
}

.button-1-next:hover {
  text-decoration: none;
}

.page-7 {
  z-index: 3;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.button-9-back {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

._2page {
  z-index: -1;
  backface-visibility: visible;
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.last-page {
  z-index: -1;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0)translate3d(0, 0, -1px);
}

.link-block-5 {
  z-index: 10;
  width: 45px;
  height: 45px;
  position: fixed;
  inset: auto auto 3% 5%;
}

.page-2 {
  z-index: 8;
  backface-visibility: visible;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.button-2-back {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.page-6 {
  z-index: 4;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.button-7-next, .button-3-back {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.book {
  backface-visibility: visible;
  perspective: 1200px;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 48vw;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  position: relative;
  transform: none;
}

.button-5-back, .button-4-back {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.right-page {
  z-index: 1;
  backface-visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: scale(1);
}

.button-8-next {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.page-4 {
  z-index: 6;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.page-10 {
  z-index: 0;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.page-9 {
  z-index: 1;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.button-6-back, .button-6-next, .button-10-next {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.button-1-back {
  background-color: #ffffff80;
  border-radius: 50px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
}

.section-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.button-7-back, .button-2-next {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.button-2-next:hover {
  text-decoration: none;
}

.button-10-back {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.button-8-back {
  background-color: #ffffff80;
  border-radius: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  display: none;
}

.page-3 {
  z-index: 7;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.test {
  z-index: 9;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: none;
}

.page-8 {
  z-index: 2;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.left-page {
  z-index: -1;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.cover {
  z-index: 1;
  backface-visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.page-5 {
  z-index: 5;
  transform-origin: 0%;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.body3 {
  background-image: url('../images/fundo_Flipbook.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  overflow: hidden;
}

.image-13 {
  max-width: 50%;
  margin-bottom: 20px;
}

.video {
  border-radius: 20px;
  height: 0;
  overflow: hidden;
}

.section-videos-delta {
  width: 100%;
}

.link-block-6 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.text-block-3 {
  color: var(--white);
  text-decoration: underline;
}

._2-column-grid-copy {
  background-color: var(--imp);
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 3.25fr .5fr 2.75fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 80px;
  display: flex;
}

.logofooter-copy {
  border-radius: 0;
  width: 40px;
}

.image-3-copy {
  max-width: 30px;
  padding: 3.5px;
}

.link-block-2-copy {
  margin-left: 10px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.link-2 {
  margin-left: auto;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 16px;
  }

  ._2-column-grid-copy {
    padding-left: 140px;
    padding-right: 140px;
  }
}

@media screen and (min-width: 1440px) {
  ._2-column-grid-copy {
    padding-left: 160px;
    padding-right: 160px;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    flex-direction: column;
    align-items: center;
    max-width: 1800px;
    display: flex;
  }

  .nav-link {
    font-size: 1.5rem;
  }

  .button, .button.w--open {
    width: 210px;
  }

  .no-top-margin {
    font-size: 3rem;
  }

  .no-top-margin.black {
    font-size: 2.2rem;
  }

  .subheading.no-margins, .paragraph {
    font-size: 1.5rem;
  }

  .image-3 {
    max-width: 45px;
  }

  .dropdown-2 {
    font-size: 25px;
  }

  .showreel, .absolute-lightbox-link-shrl {
    overflow: visible;
  }

  .datas.place {
    font-size: 45px;
  }

  .datas.teatro {
    font-size: 25px;
  }

  .datas.data {
    font-size: 30px;
  }

  ._2-column-grid-copy {
    padding-left: 400px;
    padding-right: 400px;
  }

  .image-3-copy {
    max-width: 45px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .nav-menu {
    background-color: #ffffffe6;
    border-top: 1px solid #0000001a;
    width: 100%;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 10px 10px #0003;
  }

  .hero-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-wrap {
    max-width: 100%;
    margin-top: -30px;
  }

  .absolute-image {
    position: static;
  }

  .ratio-56-25 {
    max-width: 100%;
    padding-top: 0%;
    position: static;
  }

  .ratio-56-25._1 {
    display: block;
  }

  .ratio-56-25._2 {
    display: none;
  }

  ._2-column-grid {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-button {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    padding: 16px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .lottie-animation {
    width: 100%;
    height: 100%;
  }

  .subheading.no-margins {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .font-align-center {
    font-size: 1.8rem;
  }

  .black-box-contenter {
    flex-direction: column;
    align-items: center;
  }

  .black-box-content {
    max-width: 100%;
    margin-top: 20px;
  }

  .absolute-lightbox-link {
    position: static;
  }

  .content-box {
    max-width: 100%;
  }

  .content-box.trailer {
    margin-bottom: 10px;
  }

  .hero-content-wrap {
    margin-top: 0;
  }

  .changer-overflow {
    overflow: hidden;
  }

  .div-block-5 {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .link-block {
    margin-right: 10px;
  }

  .logos-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .showreel {
    justify-content: flex-end;
    max-width: 100%;
    padding-top: 0%;
    display: flex;
    position: static;
  }

  .absolute-lightbox-link-shrl {
    width: 60px;
    position: static;
  }

  .absolute-image-showreel {
    position: static;
  }

  .dates-wrapper {
    width: 100%;
  }

  .image-6.footer {
    width: 110vw;
    margin-bottom: -90px;
  }

  .absolute-image-cartaz, .absolute-lightbox-link-cartaz {
    position: static;
  }

  .ratio-56-25-cartaz {
    width: auto;
    max-width: 100%;
    padding-top: 0%;
    position: static;
  }

  .grey-box-2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .datas-past {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }

  ._2-column-grid-copy {
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .link-2:hover {
    color: var(--imp);
  }
}

@media screen and (max-width: 767px) {
  .hero-wrap {
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-image-wrap {
    max-width: 100%;
    margin-top: -25px;
  }

  ._2-column-grid {
    grid-template-columns: 1fr;
  }

  .subheading.no-margins {
    max-width: 100ch;
  }

  .font-align-center {
    font-size: 1.2rem;
  }

  .black-box {
    padding: 20px;
  }

  .black-box-contenter {
    flex-direction: column;
  }

  .black-box-content {
    max-width: 100%;
  }

  .hero-content-wrap {
    max-width: 100%;
    margin-bottom: 0;
    padding-right: 0;
  }

  .no-margins.font-align-center-on-mobile {
    text-align: center;
    font-size: 1.2rem;
  }

  .image {
    max-width: 75%;
  }

  .changer-overflow {
    overflow: hidden;
  }

  .grey-box {
    padding: 20px;
  }

  .logos-wrapper {
    width: 100%;
  }

  .dates-wrapper {
    grid-row-gap: 35px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .datas.place {
    font-size: 25px;
  }

  .datas.teatro {
    font-size: 12px;
  }

  .datas.data {
    font-size: 20px;
  }

  .image-6.footer {
    margin-bottom: -50px;
  }

  .ratio-56-25-cartaz {
    width: auto;
  }

  .grey-box-2 {
    padding: 20px;
  }

  .datas-past {
    font-size: 1.4rem;
  }

  .image-13 {
    max-width: 75%;
  }

  ._2-column-grid-copy {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-menu {
    background-color: #fffffff2;
  }

  .button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .hero-wrap {
    grid-row-gap: 0px;
  }

  .hero-image-wrap {
    opacity: 1;
    margin-top: -20px;
  }

  .social-link {
    padding: 0;
  }

  .social-icon.bigger {
    width: 20px;
  }

  .font-align-center {
    font-size: .8rem;
  }

  .black-box {
    padding: 20px;
  }

  .faq-dropdown {
    margin-bottom: 12px;
  }

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

  .hero-image {
    width: 100%;
  }

  .no-margins.font-align-center-on-mobile {
    margin-right: 5px;
    font-size: .7rem;
  }

  .image {
    border-radius: 0;
    max-width: 90%;
  }

  .image-3 {
    max-width: 20px;
    margin-right: 0;
  }

  .changer-overflow {
    overflow: hidden;
  }

  .wrap {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .grey-box {
    padding: 20px;
  }

  .div-block-5 {
    flex-direction: column;
  }

  .text-block-2 {
    text-align: center;
    font-size: 10.5px;
  }

  .div-block-6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    justify-items: center;
    display: flex;
  }

  .link-block {
    margin-right: 0;
  }

  .logos-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .logofooter {
    width: 25px;
  }

  .logofooter.big {
    width: 40px;
  }

  .logofooter.small {
    width: 25px;
  }

  .link-block-2 {
    margin-left: 0;
  }

  .image-5 {
    width: 30px;
  }

  .showreel {
    order: -1;
    justify-content: flex-end;
  }

  .absolute-lightbox-link-shrl {
    justify-content: center;
  }

  .dates-wrapper {
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .datas.place {
    font-size: 30px;
  }

  .datas.teatro {
    font-size: 15px;
  }

  .datas.data {
    font-size: 25px;
  }

  .image-6.footer {
    margin-bottom: -30px;
  }

  .ratio-56-25-cartaz {
    order: -1;
  }

  .grey-box-2 {
    grid-row-gap: 32px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .datas-past {
    font-size: 2rem;
  }

  .div-block-10 {
    flex-flow: row;
  }

  .image-7 {
    width: 20px;
  }

  .div-block {
    flex-flow: column;
  }

  .book {
    width: 95%;
    height: 66vw;
    margin: 20px 0;
  }

  .image-13 {
    max-width: 100%;
  }

  .text-block-3 {
    font-size: 11px;
  }

  ._2-column-grid-copy {
    flex-flow: row;
  }

  .logofooter-copy {
    width: 20px;
  }

  .image-3-copy {
    max-width: 20px;
    margin-right: 0;
    padding: 2px;
  }

  .link-block-2-copy {
    margin-left: 0;
  }

  .body-3 {
    height: 100vh;
  }
}

#w-node-_18096eac-96cc-1414-0ebb-fe8633391a2c-8ad6ae05, #w-node-e390b2e7-e146-c4f4-4cf0-5ec6dfe8b57a-8ad6ae05 {
  align-self: center;
}

#w-node-b1729cc6-7cf3-8d58-5a17-72ab3d4ad517-8ad6ae05, #w-node-b1729cc6-7cf3-8d58-5a17-72ab3d4ad51e-8ad6ae05, #w-node-b1729cc6-7cf3-8d58-5a17-72ab3d4ad525-8ad6ae05, #w-node-b1729cc6-7cf3-8d58-5a17-72ab3d4ad52c-8ad6ae05, #w-node-b1729cc6-7cf3-8d58-5a17-72ab3d4ad533-8ad6ae05, #w-node-cb0efa69-1bef-ba22-e266-43bf383da93a-9ea95ec4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-b1729cc6-7cf3-8d58-5a17-72ab3d4ad517-8ad6ae05 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-cb0efa69-1bef-ba22-e266-43bf383da93a-9ea95ec4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_160e466f-9103-264b-5df2-e5947885ece3-8ad6ae05, #w-node-_11bd98df-a27b-36e1-4d2f-3826f4995fbe-8ad6ae05, #w-node-_9095cd4a-c9e9-7742-acd6-ddf47b7ef286-8ad6ae05, #w-node-fe40148f-6387-ca06-9b5b-6647de768914-8ad6ae05, #w-node-_2b216818-3edc-f217-e8b8-364093d07113-8ad6ae05 {
    order: 9999;
  }
}


@font-face {
  font-family: 'Bebasneue';
  src: url('../fonts/BebasNeue-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebasneue';
  src: url('../fonts/BebasNeue.otf') format('opentype'), url('../fonts/BebasNeue-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebasneue Book';
  src: url('../fonts/BebasNeue-Book.otf') format('opentype'), url('../fonts/BebasNeue-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebasneue';
  src: url('../fonts/BebasNeue-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebasneue';
  src: url('../fonts/BebasNeue-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}