@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 {
  --09031e: #09031e;
  --silver: #c4c4c4;
  --white: white;
  --magenta: #dd25ff;
  --imp: #871f1c;
  --grey: #6d6d6d;
  --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(--09031e);
  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: var(--white);
  width: 100%;
  height: 90px;
  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;
}

.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-link.hide {
  display: none;
}

.nav-menu {
  align-items: center;
  margin-left: auto;
  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: var(--white);
  margin-top: 20px;
  padding-top: 0;
}

.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;
  width: 100%;
  display: flex;
}

.card {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.card-icon {
  border-radius: 50%;
  flex: none;
}

.paragraph-smaller {
  font-size: .75rem;
}

.paragraph-smaller.max-35ch {
  text-align: center;
  text-transform: uppercase;
  max-width: 35ch;
  margin-bottom: 0;
  font-size: .85rem;
  font-weight: 400;
}

.absolute-image {
  object-fit: cover;
  width: 100%;
  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 {
  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%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

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

.subheading.no-margins {
  text-align: justify;
  text-transform: none;
}

.social-link {
  color: var(--magenta);
  flex: none;
  padding: 4px;
  font-size: .75rem;
  font-weight: 400;
  text-decoration: none;
  display: 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 {
  opacity: 1;
  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: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.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;
}

.footer-black {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-block-2 {
  margin-top: 20px;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 200;
}

.link {
  color: #fff;
  margin-right: 5px;
  font-size: 1.5rem;
  font-weight: 300;
  text-decoration: none;
}

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

.text-span-4 {
  font-size: 1.1rem;
}

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

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

.home {
  width: 100%;
}

.logos-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 35%;
  display: grid;
}

.logofooter {
  border-radius: 0;
}

.logofooter.big {
  width: 90px;
}

.link-block-2 {
  align-items: center;
  margin-left: 5px;
  text-decoration: none;
  display: flex;
}

.link-block-2:hover {
  text-decoration: none;
}

.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);
}

.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;
}

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

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

.image-6 {
  border-radius: 0;
  width: 100vw;
}

.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;
  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: 2.5rem;
  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-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #871f1c;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: Oswald, sans-serif;
  font-weight: 400;
}

.button-2:hover {
  color: #871f1c;
  background-color: #fff;
  border: 1px solid #871f1c;
  text-decoration: none;
  box-shadow: 0 0 #9733ee;
}

.text-block {
  color: #871f1c;
  text-align: center;
  letter-spacing: 2px;
  font-family: Bebasneue, sans-serif;
  font-size: 2.369rem;
}

.image-8 {
  max-width: 290px;
  margin-bottom: 10px;
  display: none;
}

.text-span-5, .text-span-6, .text-span-7 {
  font-family: Bebasneue, sans-serif;
}

._3-columns-grid-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: stretch center;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.image-9 {
  margin-bottom: 40px;
}

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

.dropdown-link-3 {
  text-align: right;
}

.dropdown-link-3.w--current {
  color: #000;
  text-decoration: none;
}

.logo-footer {
  width: 70px;
}

.logo-footer.smaal {
  width: 50px;
}

.container-contacts {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--imp);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-5-contacts {
  background-color: var(--imp);
  padding-top: 0;
  padding-bottom: 0;
}

.contacts-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

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

.text-span-8 {
  color: var(--silver);
}

.text-span-9 {
  color: #000;
}

.link-block-arena {
  text-align: center;
  letter-spacing: 5px;
  font-family: Bebasneue Book, sans-serif;
  font-size: 27px;
  text-decoration: none;
}

.link-2 {
  font-weight: 400;
  text-decoration: none;
}

.logofooterwrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.logofooterwrapper.nc {
  background-color: #fff0;
}

.link-block-4 {
  color: var(--white);
  align-items: center;
  display: flex;
}

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

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

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

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

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

  .hero-image {
    width: 100%;
  }

  .container-2 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .container-contacts {
    position: relative;
  }
}

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

  .navbar-wrapper {
    align-items: center;
  }

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

  .nav-menu {
    background-color: #fffc;
    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%;
  }

  .card {
    flex-direction: column;
  }

  .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: 20px;
    padding-right: 20px;
  }

  .menu-button {
    flex: none;
    order: 1;
    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: 20px;
  }

  .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, .content-box.trailer {
    max-width: 100%;
  }

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

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

  .changer-overflow {
    overflow: hidden;
  }

  .footer-black {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-2 {
    margin-top: 20px;
  }

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

  .logos-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 55%;
  }

  .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, .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 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  ._3-columns-grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
  }

  .container-2, .container-contacts {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-5-contacts, .contacts-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-toggle {
    padding: 20px;
    display: inline-block;
  }

  .icon {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }
}

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

  .hero-image-wrap {
    max-width: 100%;
  }

  ._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;
  }

  .image {
    max-width: 75%;
  }

  .changer-overflow {
    overflow: hidden;
  }

  .grey-box {
    padding: 20px;
  }

  .footer-black {
    flex-direction: column;
  }

  .text-block-2 {
    width: auto;
    margin-top: 20px;
  }

  .logos-wrapper {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 80%;
  }

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

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

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

  ._3-columns-grid-2 {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .logo-footer {
    width: 40px;
  }

  .logo-footer.smaal {
    width: 30px;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    height: auto;
  }

  .navbar-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .button {
    padding: 10px 20px;
  }

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

  .hero-image-wrap {
    opacity: 1;
  }

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

  .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 {
    font-size: .7rem;
  }

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

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

  .changer-overflow {
    overflow: hidden;
  }

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

  .grey-box {
    padding: 20px;
  }

  .footer-black {
    flex-direction: column;
  }

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

  .link {
    font-size: 10px;
    font-weight: 300;
    text-decoration: none;
  }

  .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 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
  }

  .image-5 {
    width: 45px;
  }

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

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

  .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: 2.3rem;
  }

  .image-7 {
    width: 25px;
  }

  .button-2 {
    padding: 10px 20px;
  }

  .text-block {
    width: 100%;
    font-size: 7vw;
  }

  ._3-columns-grid-2 {
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .container-2, .container-contacts {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .dropdown-toggle {
    padding: 10px;
  }

  .image-10 {
    max-width: 65%;
  }

  .link-block-arena {
    width: 100%;
    font-size: 5vw;
  }
}

#w-node-_18096eac-96cc-1414-0ebb-fe8633391a2c-13d4ce2c {
  align-self: center;
}

#w-node-_2bfb0100-6bee-466e-da86-46f660f5cc61-13d4ce2c, #w-node-_4f4e7791-64c8-bfe5-2a4c-7f374d3976e9-13d4ce2c, #w-node-bab16137-960f-efa9-957c-ec561a0f5aa6-13d4ce2c, #w-node-b4e4ca98-4e67-02d2-5f5b-1c99495e3b6a-13d4ce2c, #w-node-_8d079419-1cc9-c2cf-c175-9dbf4ffa24fc-13d4ce2c, #w-node-_8d079419-1cc9-c2cf-c175-9dbf4ffa24fe-13d4ce2c, #w-node-_8d079419-1cc9-c2cf-c175-9dbf4ffa2518-13d4ce2c, #w-node-_8d079419-1cc9-c2cf-c175-9dbf4ffa251a-13d4ce2c, #w-node-_8d079419-1cc9-c2cf-c175-9dbf4ffa251c-13d4ce2c, #w-node-_8d079419-1cc9-c2cf-c175-9dbf4ffa251e-13d4ce2c, #w-node-d84ba0d9-1dda-8766-75c2-6bcf5ca8e7c4-9ea95ec4, #w-node-cb0efa69-1bef-ba22-e266-43bf383da93a-9ea95ec4, #w-node-_18e49c61-45f2-fbd3-e48e-d98559da2940-9ea95ec4, #w-node-f038ec75-81c2-e34b-a91f-dd6f37a7974d-9ea95ec4, #w-node-_9fe5774f-b714-90ab-a53f-857118cdf575-9ea95ec4, #w-node-d7ee0683-1ee8-878d-0f66-66f16eb6d3ab-9ea95ec4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_18096eac-96cc-1414-0ebb-fe8633391a2c-13d4ce2f {
  align-self: center;
}

#w-node-_2bfb0100-6bee-466e-da86-46f660f5cc61-13d4ce2f, #w-node-_4f4e7791-64c8-bfe5-2a4c-7f374d3976e9-13d4ce2f, #w-node-bab16137-960f-efa9-957c-ec561a0f5aa6-13d4ce2f, #w-node-b4e4ca98-4e67-02d2-5f5b-1c99495e3b6a-13d4ce2f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_2bfb0100-6bee-466e-da86-46f660f5cc61-13d4ce2c, #w-node-_2bfb0100-6bee-466e-da86-46f660f5cc61-13d4ce2f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8d079419-1cc9-c2cf-c175-9dbf4ffa24fe-13d4ce2c, #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-13d4ce2c, #w-node-fcfd4a1a-8b42-9314-88a3-0a20e875ce1d-13d4ce2c, #w-node-_19e26861-9bb0-2ce5-e957-d1ae85c032a9-13d4ce2c, #w-node-_2b5ee6eb-77ed-0c1f-273c-c0373bed939d-13d4ce2c, #w-node-_8911318c-46ce-f880-886f-3dc847c744da-13d4ce2c, #w-node-_160e466f-9103-264b-5df2-e5947885ece3-13d4ce2f, #w-node-c839e5db-8a74-5f29-0369-435569081e5a-13d4ce2f, #w-node-_148e706f-3c72-cbc9-7246-72de6327bdab-13d4ce2f, #w-node-_7060cfa8-bfc5-3a9d-9fd4-b3745efda12e-13d4ce2f, #w-node-_6679c430-4016-be9d-03cb-7ec4ab912f12-13d4ce2f {
    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;
}