html {
  --padding-basic: calc(1rem + 1.8vw);
  --sw-height: 30rem;
  --sw-width: 22rem;
  --color-primary: #9e0000;
  --color-primary-light: #bd0101;
  --color-primary-m: #7c0d09a1;
  --color-primary-mm: rgba(124, 13, 9, 0.082);
  --color-secondary: rgba(38, 52, 65);
  --color-secondary-m: rgba(38, 52, 65, 0.158);
  --color-quaternary: rgb(255, 235, 153);
  --color-quaternary-m: rgba(192, 162, 43, 0.65);
  --color-quinary: rgb(240, 238, 237);
  --color-quinary-m: rgba(240, 238, 237, 0.5);
  --color-white: rgb(255, 255, 255);
  --color-white-m: rgba(255, 255, 255, 0.85);
  --color-grey-dark: #29343a;
  --color-grey-light: #e9e9e9;
  --color-grey-light-medium: #bbbbbb;
  --color-grey-medium-m: #37464f33;
  --color-grey-medium-mm: #37464fab;
  --color-grey-medium: #37464f;
  --color-grey-m: #a39d9d;
  --calendar-bg-color: #e9e9e99c;
  --calendar-border-color: #a5100b;
  --color-grey1: #e9e9e9cb;
  --calendar-font-color: #37464f;
  --weekdays-border-bottom-color: #404040;
  --calendar-date-hover-color: #505050;
  --calendar-current-date-color: #ff08002a;
  --calendar-today-color: #ff08002a;
  --calendar-today-innerborder-color: transparent;
  --calendar-nextprev-bg-color: transparent;
  --next-prev-arrow-color: #505457;
  --calendar-border-radius: 16px;
  --calendar-prevnext-date-color: #818181; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

:root {
  font-size: 62.5%; }

html {
  box-sizing: border-box; }

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.9;
  overflow-x: hidden;
  background-color: var(--color-quinary-m);
  min-height: 100vh;
  position: relative;
  z-index: 0; }

body::after {
  background-image: url("../img/pngegg.png");
  content: "";
  opacity: 0.05;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1; }

.container {
  display: grid;
  grid-template-columns: [container-start] 10vw [center-start] 1fr repeat(10, [col-start] minmax(min-content, 14rem) [col-end]) [center-end sidebar-start] minmax(min-content, calc(18rem + 8vw)) [sidebar-end] 5vw [container-end];
  grid-template-rows: 13.8rem repeat(8, min-content); }
  @media only screen and (max-width: 1200px) {
    .container {
      grid-template-columns: [container-start] minmax(1rem, 1fr) [center-start] repeat(10, [col-start] minmax(min-content, 14rem) [col-end]) [center-end sidebar-start] minmax(min-content, calc(10rem + 6vw)) [sidebar-end container-end];
      grid-template-rows: 3.8rem repeat(8, min-content); } }
  @media only screen and (max-width: 900px) {
    .container {
      grid-template-columns: [container-start center-start] 1fr [center-end sidebar-start sidebar-end container-end];
      grid-template-rows: 3.8rem repeat(8, min-content); } }

li {
  list-style: none; }

a:link,
a:visited {
  text-decoration: none;
  color: var(--color-quinary);
  font-weight: font-weight("font-weight-regular");
  letter-spacing: 0.1rem; }

@keyframes swing {
  0% {
    transform: rotate(4deg); }
  100% {
    transform: rotate(-4deg); } }

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px); }
  100% {
    transform: translateY(0px); } }

@keyframes border1 {
  0% {
    left: -100%; }
  100% {
    left: 100%; } }

@keyframes border3 {
  0% {
    left: 100%; }
  100% {
    left: -100%; } }

@keyframes border2 {
  0% {
    top: -100%; }
  100% {
    top: 100%; } }

@keyframes border4 {
  0% {
    top: 100%; }
  100% {
    top: -100%; } }

.on-cards .cards .card .text-box h4, .film-card__content--textbox__title, .accordion__container--content--textbox__title {
  font-size: calc(1.6rem + 0.5vw);
  color: var(--color-grey-dark);
  letter-spacing: 0.1rem;
  font-family: "Lora", serif;
  text-align: center;
  font-weight: 500; }

.film-card__content--textbox__title--sub, .accordion__container--content--textbox__title--sub {
  font-size: calc(1.4rem + 0.2vw);
  color: var(--color-grey-dark);
  letter-spacing: 0.1rem;
  font-family: "Lora", serif;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600; }

.on-cards .cards .card .text-box p, .film-card__content--textbox__text, .accordion__container--content--textbox__text {
  color: var(--color-grey-dark);
  font-family: "Lora", serif;
  font-size: calc(1.35rem + 0.2vw);
  letter-spacing: 0.05rem;
  text-align: justify;
  text-wrap: wrap;
  line-height: 1.8; }

.tooltip {
  position: relative;
  display: inline-block;
  background: var(--color-quaternary); }

.tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: var(--color-primary);
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 4px 0;
  position: absolute;
  z-index: 10;
  top: -12px; }

.tooltip-right {
  right: 110%; }
  .tooltip-right::after {
    left: 100%;
    border-color: transparent transparent transparent black; }

.tooltip-left {
  left: 110%; }
  .tooltip-left::after {
    right: 100%;
    border-color: transparent black transparent transparent; }

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  border-width: 5px;
  border-style: solid; }

.tooltip:hover .tooltiptext {
  visibility: visible; }

.calendar {
  width: calc(12rem + 6vw);
  font-family: "IBM Plex Sans", sans-serif;
  position: relative;
  background: var(--calendar-bg-color);
  color: var(--calendar-font-color);
  margin: 3vw 0;
  box-sizing: border-box;
  overflow: hidden;
  font-weight: normal;
  border-radius: var(--calendar-border-radius);
  border: 1px solid var(--calendar-border-color); }
  @media only screen and (max-width: 900px) {
    .calendar {
      width: calc(20rem + 6vw); } }

.calendar-inner {
  padding: 1px 2px 6px 2px; }

.calendar .calendar-inner .calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center; }

.calendar .calendar-inner .calendar-body div {
  padding: 2px;
  min-height: 20px;
  line-height: 20px;
  border: 1px solid transparent;
  margin: 5px 1px 0px; }

.calendar .calendar-inner .calendar-body div:nth-child(-n + 7) {
  border-bottom: 1px solid var(--calendar-border-color); }

.calendar .calendar-inner .calendar-body div:nth-child(-n + 7):hover {
  border-bottom: 1px solid var(--calendar-border-color); }

.calendar .calendar-inner .calendar-body div > a {
  color: var(--calendar-font-color);
  text-decoration: none;
  display: flex;
  justify-content: center; }

.calendar .calendar-inner .calendar-body div:hover {
  border: 1px solid var(--calendar-date-hover-color);
  border-radius: 4px; }

.calendar .calendar-inner .calendar-body div.empty-dates:hover {
  border: 1px solid transparent; }

.calendar .calendar-inner .calendar-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr); }

.calendar .calendar-inner .calendar-today-date {
  display: grid;
  text-align: center;
  cursor: pointer;
  margin: 0px;
  background: var(--calendar-current-date-color);
  padding: 2px 0px;
  border-radius: 10px;
  width: 80%;
  margin: auto; }

.calendar .calendar-inner .calendar-controls .calendar-year-month {
  display: flex;
  min-width: 100px;
  justify-content: space-evenly;
  align-items: center; }

.calendar .calendar-inner .calendar-controls .calendar-next {
  text-align: right; }

.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-year-label,
.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-month-label {
  font-size: 20px; }

.calendar .calendar-inner .calendar-body .calendar-today {
  background: var(--calendar-today-color);
  border-radius: 4px; }

.calendar .calendar-inner .calendar-body .calendar-today:hover {
  border: 1px solid transparent; }

.calendar .calendar-inner .calendar-body .calendar-today a {
  outline: 2px solid var(--calendar-today-innerborder-color); }

.calendar .calendar-inner .calendar-controls .calendar-next a,
.calendar .calendar-inner .calendar-controls .calendar-prev a {
  color: var(--calendar-font-color);
  font-family: arial, consolas, sans-serif;
  font-size: 10px;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
  background: var(--calendar-nextprev-bg-color);
  margin: 10px; }

.calendar .calendar-inner .calendar-controls .calendar-next a svg,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg {
  height: 20px;
  width: 20px; }

.calendar .calendar-inner .calendar-controls .calendar-next a svg path,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg path {
  fill: var(--next-prev-arrow-color); }

.calendar .calendar-inner .calendar-body .prev-dates,
.calendar .calendar-inner .calendar-body .next-dates {
  color: var(--calendar-prevnext-date-color); }

.calendar .calendar-inner .calendar-body .prev-dates:hover,
.calendar .calendar-inner .calendar-body .next-dates:hover {
  border: 1px solid transparent;
  pointer-events: none; }

.gallery {
  grid-column: center-start / center-end;
  margin-top: calc(1rem + 2vw);
  padding: var(--padding-basic);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .gallery__grid {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(20rem + 4vw), 1fr));
    gap: 1rem; }
  .gallery__grid--item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto; }

.caricature-container {
  display: flex;
  transition: transform 1s ease;
  margin-bottom: 6vw;
  justify-content: center;
  align-items: flex-start; }
  @media only screen and (min-width: 1200px) {
    .caricature-container {
      transform: translateY(-30%); } }

.swing {
  width: calc(12rem + 4vw);
  background-color: white;
  animation: swing ease-in-out 1s infinite alternate;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  transform-origin: center -20px; }
  @media only screen and (max-width: 900px) {
    .swing {
      width: calc(20rem + 6vw); } }

.swing::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 20px;
  border: 1px solid #979797;
  top: -10px;
  left: 47%;
  z-index: 0;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg); }

.swing::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: -15px;
  left: 50%;
  z-index: 5;
  border-radius: 50% 50%;
  background: black; }

.swing-pic {
  display: block;
  width: 100%;
  height: 100%; }

.paper-box {
  margin: 1em auto;
  width: calc(12rem + 4vw); }
  @media only screen and (max-width: 900px) {
    .paper-box {
      width: calc(20rem + 6vw); } }

.paper-effect {
  position: relative; }
  .paper-effect::before, .paper-effect::after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 1rem;
    width: 50%;
    top: 80%;
    background: #777;
    box-shadow: 0 1em 0.5em #777; }
  .paper-effect::before {
    transform: rotate(-3deg);
    left: 0.5em; }
  .paper-effect::after {
    transform: rotate(3deg);
    right: 0.5em; }

.myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s; }

.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 200px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.9); }

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px; }

.modal-img {
  width: 100%;
  height: auto; }

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px; }

.modal-content, #caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s; }

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0); }
  to {
    -webkit-transform: scale(1); } }

@keyframes zoom {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--color-quaternary);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s; }

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer; }

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%; } }

.sidebar {
  grid-column: sidebar-start / sidebar-end;
  grid-row: 3 / 6;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media only screen and (min-width: 900px) and (max-width: 1200px) {
    .sidebar {
      margin-right: 5rem; } }
  @media only screen and (max-width: 900px) {
    .sidebar {
      grid-row: 4; } }
  .sidebar--plakat {
    width: calc(10rem + 6vw);
    border: 0.1rem solid var(--color-grey-medium-m);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px; }
    @media only screen and (max-width: 900px) {
      .sidebar--plakat {
        width: calc(20rem + 6vw); } }
    .sidebar--plakat-1 {
      transform: rotate(5deg); }
    .sidebar--plakat-2 {
      transform: rotate(-5deg); }
    .sidebar--plakat-3 {
      transform: rotate(5deg); }
  @media only screen and (max-width: 900px) {
    .sidebar {
      grid-column: container-start / container-end; } }

.sidebar-sticky {
  position: sticky;
  top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center; }

.vmi {
  position: relative; }

@media only screen and (min-width: 1200px) {
  .button-ticket {
    margin-bottom: 4vw;
    background-color: var(--color-primary);
    border: none;
    color: white;
    padding: 0.8rem 3rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.6rem;
    cursor: pointer;
    transition-duration: 0.5s;
    border-radius: 1.3rem;
    transform: translateX(400%);
    transition: transform 0.5s ease; } }

.show {
  transform: translateX(0); }

.dropdown {
  position: relative;
  display: inline-block; }
  .dropdown a:link,
  .dropdown a:visited {
    font-size: calc(1.35rem + 0.2vw);
    color: var(--color-secondary);
    white-space: nowrap; }
  .dropdown a:active,
  .dropdown a:hover {
    color: var(--color-primary); }
  .dropdown .without-dropdown:hover {
    border-bottom: 1px solid var(--color-primary); }
  .dropdown .dropdown-menu {
    position: absolute;
    display: flex;
    flex-wrap: nowrap;
    display: none;
    background: var(--color-primary);
    z-index: 1;
    left: 50%;
    right: auto;
    text-align: center;
    transform: translate(-50%, 0); }
    .dropdown .dropdown-menu a {
      white-space: nowrap;
      color: var(--color-quinary);
      padding: 0.2rem 1rem;
      font-size: calc(1rem + 0.2vw);
      text-decoration: none;
      display: block; }
    @media only screen and (max-width: 1200px) {
      .dropdown .dropdown-menu {
        display: flex;
        flex-direction: column;
        display: none;
        padding: 1rem; } }

.dropdown:first-child .dropdown-menu {
  left: auto;
  text-align: center;
  transform: translate(1%, 0); }

.dropdown:hover .dropdown-menu {
  display: flex; }

@media only screen and (min-width: 1200px) {
  .dropdown:last-child .dropdown-menu {
    right: auto;
    text-align: center;
    transform: translate(-90%, 0); } }

.programs {
  grid-column: center-start / center-end;
  padding: calc(0.1rem + 2vw) 0; }
  .programs-grid {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fit, minmax(55rem, 1fr)); }
    .programs-grid .colspan {
      grid-column: 1 / -1;
      padding-bottom: calc(0.1rem + 3vw); }
    .programs-grid__wrapper {
      position: relative;
      margin-bottom: 2rem;
      padding: 0 2vw 3vw 2vw;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; }
      .programs-grid__wrapper .textbox {
        margin: 2rem;
        position: absolute;
        background: inherit;
        top: 4rem;
        padding: 1.5rem 3rem;
        background-color: rgba(255, 255, 255, 0.58);
        border: 1px solid var(--color-primary);
        backdrop-filter: blur(2px); }
        .programs-grid__wrapper .textbox__title {
          text-transform: uppercase;
          text-align: center;
          font-size: calc(1.6rem + 0.5vw);
          color: var(--color-secondary);
          font-weight: 700;
          letter-spacing: 0.4rem; }
        .programs-grid__wrapper .textbox__subtitle {
          font-size: calc(1.4rem + 0.2vw);
          text-align: center;
          color: var(--color-secondary);
          letter-spacing: 0.1rem;
          margin-bottom: 1rem;
          font-weight: 600; }
          @media only screen and (max-width: 1200px) {
            .programs-grid__wrapper .textbox__subtitle {
              font-size: calc(1.35rem + 0.2vw);
              margin-bottom: 0.2rem; } }
        .programs-grid__wrapper .textbox__text {
          font-size: calc(1.35rem + 0.2vw);
          color: var(--color-secondary);
          text-align: justify;
          line-height: 1.9; }
          .programs-grid__wrapper .textbox__text.vadtext {
            line-height: 1.7; }
      .programs-grid__wrapper .img {
        z-index: -10;
        height: calc(30rem + 18vw); }
        .programs-grid__wrapper .img img {
          box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 12px;
          height: calc(35rem + 18vw);
          bottom: 0; }
    @media only screen and (max-width: 1550px) {
      .programs-grid {
        grid-template-columns: 1fr;
        justify-items: center; }
        .programs-grid__wrapper {
          width: calc(30rem + 35vw); }
          .programs-grid__wrapper .textbox {
            top: 6rem; }
          .programs-grid__wrapper .img {
            height: calc(35rem + 20vw); }
          .programs-grid__wrapper .vadimg {
            height: calc(35rem + 25vw); } }
    @media only screen and (max-width: 1200px) {
      .programs-grid {
        line-height: 1.6; }
        .programs-grid.vadtext {
          line-height: 1.5; } }
    @media only screen and (max-width: 900px) {
      .programs-grid__wrapper {
        width: calc(45rem + 35vw); }
        .programs-grid__wrapper .textbox {
          top: 6rem; }
        .programs-grid__wrapper .img {
          height: calc(35rem + 30vw); }
          .programs-grid__wrapper .img img {
            height: calc(35rem + 30vw); }
        .programs-grid__wrapper .vadimg {
          height: calc(35rem + 30vw); }
          .programs-grid__wrapper .vadimg img {
            height: calc(35rem + 30vw); } }
    @media only screen and (max-width: 700px) {
      .programs-grid__wrapper {
        width: 92%; }
        .programs-grid__wrapper .textbox {
          top: 2rem; }
      .programs-grid .img {
        height: calc(37rem + 30vw); }
        .programs-grid .img img {
          height: calc(37rem + 30vw); }
      .programs-grid .vadimg {
        height: calc(37rem + 30vw); }
        .programs-grid .vadimg img {
          height: calc(37rem + 30vw); } }
    @media only screen and (max-width: 600px) {
      .programs-grid__wrapper .textbox {
        position: relative; }
      .programs-grid .img {
        height: 0; }
        .programs-grid .img img {
          height: 0; }
      .programs-grid .vadimg {
        height: 0; }
        .programs-grid .vadimg img {
          height: 0; } }
  @media only screen and (min-width: 1550px) {
    .programs .sp {
      grid-column: 1 / span 2; }
    .programs .fraction {
      width: 50%; } }

.gal__imgs {
  margin-top: calc(1rem + 2vw);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-template-rows: repeat(4, min-content);
  gap: 2.5rem; }

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

.gal__imgs--img:nth-child(1) {
  grid-column: 1/ 2;
  grid-row: 1 / 3; }

.gal__imgs--img:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2; }

.gal__imgs--img:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 3; }

.gal__imgs--img:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 3 / 4; }

.gal__imgs--img:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2 / 4; }

.gal__imgs--img:nth-child(6) {
  grid-column: 3 / 4;
  grid-row: 3 / 4; }

.gal__imgs--img:nth-child(7) {
  grid-column: 1 / 2;
  grid-row: 4 / 5; }

.gal__imgs--img:nth-child(8) {
  grid-column: 2 / 3;
  grid-row: 4 / 5; }

.gal__imgs--img:nth-child(9) {
  grid-column: 3 / 4;
  grid-row: 4 / 5; }

@media only screen and (max-width: 1300px) {
  .gal__imgs--img {
    grid-column: auto / auto !important;
    grid-row: auto / auto !important; } }

.poster_gal__imgs {
  grid-column: col-start 8 / col-end 10;
  margin: calc(3rem + 3vw) 0;
  display: grid;
  width: min-content;
  grid-template-columns: repeat(5, calc(6rem + 1.5vw));
  grid-template-rows: repeat(5, min-content);
  gap: .1rem;
  border-radius: 10px;
  border: 0.1rem solid var(--color-grey-medium-m);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px; }

.poster_gal__imgs--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px; }

.plakat {
  font-weight: 800;
  font-size: calc(1.2rem + 0.6vw);
  color: var(--color-primary);
  letter-spacing: calc(.1rem + 0.1vw);
  margin: 0 1rem;
  padding: 0;
  width: 100%;
  line-height: 1.2; }

.cim {
  font-weight: 400;
  font-size: calc(.5rem + 0.5vw);
  letter-spacing: calc(.2rem + 0.1vw); }

.poster_gal__imgs--img:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2; }

.poster_gal__imgs--img:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2; }

.poster_gal__imgs--img:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2; }

.poster_gal__imgs--img:nth-child(4) {
  grid-column: 4 / 5;
  grid-row: 1 / 2; }

.poster_gal__imgs--img:nth-child(5) {
  grid-column: 5 / 6;
  grid-row: 1 / 2; }

.poster_gal__imgs--img:nth-child(6) {
  grid-column: 1 / 2;
  grid-row: 2 / 3; }

.poster_gal__imgs--img:nth-child(7) {
  grid-column: 2 / 3;
  grid-row: 2 / 3; }

.poster_gal__imgs--img:nth-child(8) {
  grid-column: 3 / 4;
  grid-row: 2 / 3; }

.poster_gal__imgs--img:nth-child(9) {
  grid-column: 4 / 5;
  grid-row: 2 / 3; }

.poster_gal__imgs--img:nth-child(10) {
  grid-column: 5 / 6;
  grid-row: 2 / 3; }

.poster_gal__imgs--img:nth-child(11) {
  height: 60%;
  grid-column: 1 / 6;
  grid-row: 3 / 4; }

.poster_gal__imgs--img:nth-child(12) {
  grid-column: 1 / 2;
  grid-row: 4 / 5; }

.poster_gal__imgs--img:nth-child(13) {
  grid-column: 2 / 3;
  grid-row: 4 / 5; }

.poster_gal__imgs--img:nth-child(14) {
  grid-column: 3 / 4;
  grid-row: 4 / 5; }

.poster_gal__imgs--img:nth-child(15) {
  grid-column: 4 / 5;
  grid-row: 4 / 5; }

.poster_gal__imgs--img:nth-child(16) {
  grid-column: 5 / 6;
  grid-row: 4 / 5; }

.poster_gal__imgs--img:nth-child(17) {
  grid-column: 1 / 2;
  grid-row: 5 / 6; }

.poster_gal__imgs--img:nth-child(18) {
  grid-column: 2 / 3;
  grid-row: 5 / 6; }

.poster_gal__imgs--img:nth-child(19) {
  grid-column: 3 / 4;
  grid-row: 5 / 6; }

.poster_gal__imgs--img:nth-child(20) {
  grid-column: 4 / 5;
  grid-row: 5 / 6; }

.poster_gal__imgs--img:nth-child(21) {
  grid-column: 5 / 6;
  grid-row: 5 / 6; }

.deg1 {
  transform: rotate(5deg); }

.deg2 {
  transform: rotate(-5deg); }

.social {
  z-index: 25;
  grid-column: container-start / center-start;
  display: flex;
  flex-direction: column;
  position: sticky;
  align-self: start;
  top: 10rem; }
  .social-icon,
  .social a {
    font-size: calc(1.25rem + 0.2vw);
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    display: block;
    background: var(--color-primary);
    color: var(--color-quinary);
    border-radius: 50%;
    margin-left: 1rem;
    margin-bottom: 2rem;
    transform: translateX(-800%);
    transition: transform 0.5s ease; }
    .social-icon:first-child,
    .social a:first-child {
      margin-top: 6rem; }
  .social .show {
    transform: translateX(0); }
  @media only screen and (max-width: 1200px) {
    .social {
      display: none; } }

.swiper-section {
  grid-column: center-start / center-end;
  padding: var(--padding-basic);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative; }
  @media only screen and (max-width: 1000px) {
    .swiper-section {
      width: 100%;
      padding: var(--padding-basic) var(--padding-basic) var(--padding-basic) 0; } }
  .swiper-section .sw {
    position: relative;
    margin-left: 2rem;
    padding-top: 0.8rem;
    padding-bottom: 20px;
    width: calc(30rem + 30vw);
    border-radius: 10px;
    border: 0.1rem solid #ffffff25;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px; }
    @media only screen and (max-width: 1990px) {
      .swiper-section .sw {
        width: calc(30rem + 40vw); } }
    @media only screen and (max-width: 600px) {
      .swiper-section .sw {
        margin-left: 0;
        width: calc(16rem + 40vw); } }

.my-swiper .swiper {
  position: relative;
  width: 100%;
  padding-top: 4.5rem; }

.my-swiper-slide .swiper-slide {
  margin-bottom: 5rem;
  width: var(--sw-width);
  height: var(--sw-height);
  background-position: center;
  background-size: cover;
  box-shadow: 20px 25px 30px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: self-start; }
  .my-swiper-slide .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px; }

.swiper-slide-active {
  filter: blur(0px); }

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #fff; }

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none; }

.on-cards {
  grid-column: center-start / center-end;
  margin-top: calc(1rem + 2vw);
  padding: var(--padding-basic) 0 0 var(--padding-basic);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 600px) {
    .on-cards {
      padding: var(--padding-basic) 0; } }
  .on-cards .cards {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media only screen and (min-width: 1200px) {
      .on-cards .cards .card::before {
        z-index: -11;
        content: "";
        position: absolute;
        top: 25%;
        left: -7%;
        width: 10%;
        height: 55%;
        background-image: url("../img/bigdot-white.png"); } }
    .on-cards .cards .card {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: calc(1rem + 2vw);
      z-index: 0;
      width: 100%; }
      .on-cards .cards .card .card-image {
        position: relative;
        width: calc(12rem + 8vw);
        border-radius: 10px;
        box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2); }
        @media only screen and (max-width: 600px) {
          .on-cards .cards .card .card-image {
            display: none; } }
      .on-cards .cards .card .text-box {
        z-index: 22;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: #e4d6c12c;
        backdrop-filter: blur(4px);
        padding: 2rem calc(1rem + 2vw);
        border: 0.1rem solid rgba(145, 145, 145, 0.164);
        border-radius: 10px;
        flex-direction: column;
        transform: translateX(-60px); }
        @media only screen and (max-width: 700px) {
          .on-cards .cards .card .text-box {
            width: calc(30rem + 20vw); } }
        @media only screen and (max-width: 600px) {
          .on-cards .cards .card .text-box {
            transform: translateX(0); } }
        .on-cards .cards .card .text-box h4 {
          align-self: flex-start;
          font-size: calc(1.5rem + 0.3vw); }
        .on-cards .cards .card .text-box p {
          position: relative;
          line-height: 1.7;
          display: flex;
          align-items: center;
          padding: 10px 25px 10px 25px; }
        .on-cards .cards .card .text-box .on {
          align-self: flex-end;
          padding: 1rem 1.7rem;
          font-size: calc(1.4rem + 0.2vw);
          color: var(--color-primary);
          letter-spacing: 0.2rem;
          margin-top: 2rem;
          position: relative;
          overflow: hidden; }
          .on-cards .cards .card .text-box .on span {
            position: absolute;
            display: block; }
          .on-cards .cards .card .text-box .on span:nth-child(1) {
            top: 0;
            left: 0;
            width: 100%;
            height: 0.2rem;
            background-image: linear-gradient(90deg, transparent, var(--color-primary-m));
            animation: border1 1s linear infinite;
            animation-delay: 0s; }
          .on-cards .cards .card .text-box .on span:nth-child(3) {
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0.2rem;
            background-image: linear-gradient(270deg, transparent, var(--color-primary-m));
            animation: border3 1s linear infinite;
            animation-delay: 0s; }
          .on-cards .cards .card .text-box .on span:nth-child(2) {
            top: 0;
            right: 0;
            height: 100%;
            width: 0.2rem;
            background-image: linear-gradient(180deg, transparent, var(--color-primary-m));
            animation: border2 1s linear infinite;
            animation-delay: 0.5s; }
          .on-cards .cards .card .text-box .on span:nth-child(4) {
            top: 0;
            left: 0;
            height: 100%;
            width: 0.2rem;
            background-image: linear-gradient(360deg, transparent, var(--color-primary-m));
            animation: border4 1s linear infinite;
            animation-delay: 0.5s; }

.film-card {
  grid-column: center-start / center-end;
  margin: calc(1rem + 2vw);
  padding: var(--padding-basic);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  row-gap: calc(1rem + 4vw);
  overflow: hidden; }
  .film-card__content {
    width: 90%;
    display: flex;
    border: 0.1rem solid var(--color-grey-medium-m);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px;
    border-radius: 10px; }
    .film-card__content--textbox {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: space-between;
      margin: 3rem calc(1rem + 2vw);
      height: auto; }
      .film-card__content--textbox-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; }
      @media only screen and (max-width: 440px) {
        .film-card__content--textbox {
          margin: 2rem 1rem 2rem 1rem; } }
      @media only screen and (max-width: 1200px) {
        .film-card__content--textbox__text {
          line-height: 1.7; } }

.stripe {
  position: relative;
  overflow: hidden;
  border-radius: 1rem 0 0 1rem; }
  .stripe img {
    width: 4.5rem;
    height: 100%;
    object-fit: cover; }
  .stripe__text {
    width: 50rem;
    height: 4.5rem;
    position: absolute;
    top: 23rem;
    text-align: right;
    left: -22.5rem;
    color: var(--color-primary);
    font-size: calc(1.4rem + 0.2vw);
    letter-spacing: 0.8rem;
    transform: rotate(0.75turn);
    font-weight: 600; }

.ribbon {
  position: absolute;
  padding: 0.2rem 2rem;
  font-size: calc(1.4rem + 0.4vw);
  letter-spacing: 0.4rem;
  margin: 0 0 0 -0.3rem;
  line-height: 1.875em;
  color: #e0e0e0;
  border-radius: 0 0.5rem 0.5rem 0;
  background: var(--color-primary);
  box-shadow: -1px 2px 3px rgba(0, 0, 0, 0.5);
  width: calc(20rem + 5vw);
  z-index: 222; }

.ribbon::before,
.ribbon::after {
  position: absolute;
  content: "";
  display: block; }

.ribbon::before {
  width: 0.469em;
  height: 125%;
  padding: 0 0 0.438em;
  top: 0;
  left: -0.469em;
  background: inherit;
  border-radius: 0.313em 0 0 0.313em; }

.ribbon::after {
  width: 0.313em;
  height: 0.3rem;
  background: rgba(0, 0, 0, 0.35);
  bottom: -0.313em;
  left: -0.313em;
  border-radius: 0.313em 0 0 0.313em;
  box-shadow: inset -1px 2px 2px rgba(0, 0, 0, 0.3); }

.r100 {
  width: 100%; }

.r00 {
  top: 0;
  left: 0;
  margin-top: 0.8rem; }

.potty {
  position: relative;
  animation: example 20s infinite ease-in-out; }
  .potty::before {
    width: 0.5em; }

@keyframes example {
  0% {
    transform: translateY(0) rotateZ(0deg); }
  10% {
    transform: translateY(10px) rotateZ(-10deg); }
  20% {
    transform: translateY(18px) rotateZ(15deg); }
  30% {
    transform: translateY(25px) rotateZ(-10deg); }
  40% {
    transform: translateY(30px) rotateZ(12deg); }
  50% {
    transform: translateY(32px) rotateZ(-15deg); }
  70% {
    transform: translateY(40px) rotateZ(15deg); }
  80% {
    transform: translateY(48px) rotateZ(-15deg); }
  90% {
    transform: translateY(50px) rotateZ(10deg); }
  95% {
    transform: translateY(55px) rotateZ(20deg); }
  100% {
    transform: translateY(300px) rotateZ(-30deg); } }

.footer {
  background-color: var(--color-grey-dark);
  grid-column: container-start / container-end;
  display: grid;
  padding: 1.5rem 0;
  grid-template-rows: repeat(2, max-content);
  z-index: 300; }
  .footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, 25rem);
    place-content: center;
    column-gap: 5vw; }
    .footer__content--section {
      display: grid;
      row-gap: 0.6rem; }
      .footer__content--section__link:link, .footer__content--section__link:visited {
        font-size: calc(1rem + 0.2vw);
        line-height: 1.5;
        letter-spacing: 0.15rem;
        color: var(--color-grey-light); }
      .footer__content--section:first-child, .footer__content--section:nth-child(2) {
        border-right: 0.1rem solid var(--color-grey-light); }
      .footer__content--section img {
        height: 6rem; }
    .footer__content--contact {
      display: flex;
      align-items: center; }

.header {
  grid-column: container-start / container-end;
  display: flex;
  flex-direction: column; }
  .header .topbar {
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    display: flex;
    justify-content: space-evenly;
    background-color: var(--color-primary);
    text-transform: uppercase; }
    .header .topbar__social {
      display: flex;
      align-items: center; }
      .header .topbar__social li a:link,
      .header .topbar__social li a:visited {
        font-size: calc(1.25rem + 0.2vw);
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        text-align: center;
        display: block;
        background: var(--color-quinary);
        color: var(--color-primary);
        border-radius: 50%;
        margin-left: 1rem; }
    .header .topbar__links {
      display: flex; }
      .header .topbar__links--item a:link,
      .header .topbar__links--item a:visited {
        padding: 0 1.5rem;
        font-size: calc(1.35rem + 0.2vw); }
  .header .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 999;
    animation: smoothScroll 1s forwards; }
    .header .sticky .navbar__logo {
      padding: 2rem 0; }
      .header .sticky .navbar__logo img {
        height: 7rem; }
  .header .navbar {
    display: flex;
    background-color: var(--color-white-m);
    backdrop-filter: blur(3px);
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid var(--color-primary-m);
    text-transform: uppercase;
    height: 9.4rem; }
    .header .navbar__logo {
      display: flex; }
      .header .navbar__logo img {
        height: calc(4rem + 2vw); }
    .header .navbar__links {
      display: flex;
      column-gap: 2.3vw; }
  @media only screen and (max-width: 1200px) {
    .header {
      /* Dynamic Class */ }
      .header .topbar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999; }
      .header .navbar {
        flex-direction: column;
        justify-content: start;
        padding: 0 10rem;
        position: fixed;
        transition: all 0.65s ease-in-out;
        height: 100vh;
        right: 0;
        top: 5rem;
        transform: translateX(100%);
        z-index: 999; }
        .header .navbar__logo {
          padding-top: 11rem;
          padding-bottom: 3rem; }
        .header .navbar__links {
          flex-direction: column; }
          .header .navbar__links--item {
            padding-top: 4rem; }
      .header .hamburger {
        height: 5rem;
        width: 6rem;
        top: 8rem;
        right: 5rem;
        padding: 0;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        z-index: 999; }
      .header .hamburger__line {
        height: 2px;
        background-color: var(--color-primary); }
      .header .hamburger__line:first-child {
        width: 50%;
        transition: all 0.25s ease; }
      .header .hamburger__line:nth-child(2) {
        transition: all 0.1s ease; }
      .header .hamburger__line:last-child {
        width: 50%;
        transition: all 0.25s ease;
        align-self: flex-end; }
      .header .display__nav {
        transform: translateX(0); }
      .header .hamburger__line-1 {
        transform: rotate(45deg) translateX(1.7rem) translateY(-0.2rem); }
      .header .hamburger__line-2 {
        visibility: hidden; }
      .header .hamburger__line-3 {
        transform: rotate(-46deg) translateX(-0.2rem) translateY(-2.1rem); } }

.hamburger {
  position: fixed; }

.tag {
  display: flex; }
  .tag__text {
    font-size: calc(1rem + 0.1vw);
    color: var(--color-grey-medium-mm);
    padding: 0 0.5rem;
    margin: 0 1rem;
    border: 1px solid var(--color-grey-medium-m);
    border-radius: 10px; }

.main {
  grid-column: center-start / center-end;
  padding: var(--padding-basic);
  display: flex;
  justify-content: center;
  align-items: center; }
  .main__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
    .main__content--title {
      font-size: calc(2.5rem + 1vw);
      color: var(--color-grey-medium);
      letter-spacing: 0.1rem;
      font-family: "Lora", serif;
      text-align: center; }
      .main__content--title__sub {
        font-size: calc(1.35rem + 0.2vw);
        color: var(--color-grey-medium);
        letter-spacing: 0.1rem;
        font-family: "Lora", serif;
        margin-bottom: 3rem;
        text-align: center; }
        .main__content--title__sub-right {
          font-size: calc(1rem + 0.2vw);
          font-style: italic;
          color: var(--color-grey-medium-mm);
          letter-spacing: 0.1rem;
          font-family: "Lora", serif;
          align-self: stretch;
          text-align: right; }
    .main__content--film {
      padding: 0 var(--padding-basic) 1rem var(--padding-basic);
      border-bottom: 1px solid var(--color-grey-medium-m);
      margin-bottom: 1.5rem; }
      .main__content--film__title {
        font-size: calc(1.6rem + 0.5vw);
        color: var(--color-grey-medium);
        letter-spacing: 0.1rem;
        font-family: "Lora", serif;
        margin: 1.5rem 0 0.5rem 0;
        text-align: left; }
      .main__content--film__text {
        font-size: calc(1.4rem + 0.2vw);
        color: var(--color-grey-medium);
        letter-spacing: 0.05rem;
        text-align: justify;
        font-family: "Lora", serif;
        text-indent: 3rem;
        margin-bottom: 1rem; }
  @media only screen and (max-width: 440px) {
    .main {
      padding: 0 1.5rem; } }
  @media only screen and (max-width: 1200px) {
    .main {
      top: calc(15.5rem + 10vw);
      flex-direction: column; }
      .main__content {
        width: 100%; } }

.carousel {
  grid-column: container-start / container-end;
  overflow: hidden;
  border: 0.5rem solid black; }
  .carousel .track {
    animation: filmCarousel 240s linear infinite;
    display: flex;
    width: max-content; }
  .carousel__items {
    height: calc(10rem + 10vw); }
  .carousel__img {
    height: calc(10rem + 10vw);
    width: calc((10rem + 10vw) * 1.91);
    display: block;
    object-fit: cover;
    border-bottom: 1.3rem dashed black;
    border-top: 1.3rem dashed black;
    border-left: 0.3rem solid black;
    border-right: 0.3rem solid black; }

@keyframes filmCarousel {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
  @media (min-width: 1200px) {
    .carousel {
      margin-top: 0.5rem; } }

.info {
  grid-column: center-start / center-end;
  padding: var(--padding-basic);
  margin: calc(2rem + 2vw);
  display: flex;
  column-gap: 6%;
  justify-content: space-between; }
  @media only screen and (max-width: 700px) {
    .info {
      margin: 0.5vw; } }
  .info__bordered {
    display: flex;
    flex-direction: column;
    padding: 8vh 0;
    align-items: center;
    width: 100%;
    border: 0.1rem solid var(--color-grey-medium-m);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px;
    border-radius: 10px;
    padding: 3rem 4rem 3rem 8rem;
    width: 100%;
    align-items: stretch; }
    @media only screen and (max-width: 700px) {
      .info__bordered {
        padding: 1vw; } }
    .info__bordered--title {
      text-transform: uppercase;
      text-align: left;
      border-bottom: 1px solid var(--color-primary);
      margin: 4rem 0;
      font-size: calc(1.6rem + 0.5vw);
      color: var(--color-primary);
      font-weight: 600;
      letter-spacing: 0.1rem; }
    .info__bordered--text {
      font-size: calc(1.4rem + 0.2vw);
      color: var(--color-secondary);
      text-indent: 3rem; }
      .info__bordered--text .right {
        float: right;
        margin: 2rem; }
      .info__bordered--text li {
        padding: 0 2rem 6rem 0; }
      .info__bordered--text .rent {
        padding: 0 2rem; }

.accordion {
  grid-column: center-start / center-end;
  padding: var(--padding-basic);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative; }
  @media only screen and (max-width: 1200px) {
    .accordion {
      padding: var(--padding-basic);
      grid-column: center-start / sidebar-end; } }
  .accordion__container {
    position: relative;
    display: flex;
    width: 100%; }
    .accordion__container--content {
      border-radius: 1rem;
      overflow: hidden;
      transition: all 500ms linear;
      width: 5rem;
      height: calc(105rem - 15vw); }
      @media only screen and (max-width: 1990px) {
        .accordion__container--content {
          height: calc(100rem - 20vw); } }
      @media only screen and (min-width: 900px) and (max-width: 1200px) {
        .accordion__container--content {
          height: calc(80rem - 10vw); } }
      .accordion__container--content--textbox {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin: 5rem 3rem 0 3rem; }
        .accordion__container--content--textbox__title {
          margin-top: 0.5rem;
          text-transform: uppercase; }
          .accordion__container--content--textbox__title--sub {
            margin-top: 0.5rem;
            line-height: 2; }
        .accordion__container--content--textbox__text {
          padding-bottom: 1rem; }
  .accordion_item {
    margin: 0 0.5px;
    box-shadow: rgba(0, 0, 0, 0.788) 0px 3px 12px; }
  .accordion_header {
    position: relative;
    width: 4.5rem;
    height: 100%; }
    .accordion_header img {
      object-fit: cover; }
    .accordion_header__text {
      margin: 4rem 0 0 0;
      width: 50rem;
      height: 4.5rem;
      position: absolute;
      top: 25rem;
      text-align: right;
      left: -22.8rem;
      color: var(--color-primary);
      font-size: calc(1.4rem + 0.2vw);
      letter-spacing: 0.6rem;
      transform: rotate(0.75turn);
      font-weight: 600;
      text-transform: uppercase; }
      @media only screen and (max-width: 900px) {
        .accordion_header__text {
          font-size: 1.8rem;
          line-height: 2.5; } }

.active {
  width: 80%; }

.active .accordion_header {
  display: none; }

@media only screen and (max-width: 1000px) {
  .accordion__container {
    display: initial; }
  .accordion_header__text {
    display: none; }
  .accordion_item {
    width: 98% !important;
    margin: 1rem 0;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 12px; } }
  @media only screen and (max-width: 1000px) and (max-width: 900px) {
    .accordion_item {
      width: 100% !important; } }
