@import url("fonts.css");
* {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  width: 100%;
  overflow-x: hidden;
}

img {
  user-select: none;
}

.arte-gif {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  animation: hideGif 0.5s ease 1s;
  animation-iteration-count: 1;
  z-index: 9999;
}

@keyframes hideGif {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.general-title {
  text-align: center;
  font-weight: 700;
  font-family: "AvantGarde", sans-serif;
  color: #E50F45;
  font-size: 300%;
  margin: 5% 0 2% 0;
}

.medium-title {
  font-weight: 500;
  font-size: 170%;
  font-family: "AvantGarde", sans-serif;
  color: #E50F45;
  text-align: left;
}

.arte-button {
  color: #E50F45;
  font-weight: 500;
  font-family: "AvantGarde", sans-serif;
  border: 1px solid #E50F45;
  padding: 2%;
  background-color: rgba(229, 15, 69, 0);
  transition-duration: 0.3s;
  cursor: pointer;
  text-align: center;
  font-size: 90%;
  text-decoration: none;
}

.arte-button:hover {
  background-color: #E50F45;
  color: white;
}

nav {
  width: 50%;
  margin: 1% 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #E50F45;
  font-family: "AvantGarde", sans-serif;
  font-weight: 500;
}

nav .nav-group {
  display: flex;
  flex: 1;
  gap: 30%;
  list-style: none;
}

nav .nav-group.right {
  padding-left: 10%;
  justify-content: flex-start;
}

nav .nav-group.left {
  padding-right: 10%;
  justify-content: flex-end;
}

nav li {
  list-style-type: none;
  font-size: 120%;
}

nav li a {
  color: #E50F45;
  transition-duration: 0.3s;
  text-decoration: none;
}

nav li a:hover {
  color: #152F4A;
}

.image-anchor {
  width: 7%;
}

nav img {
  width: 100%;
}

#mobile-nav {
  display: none;
}

#top-nav {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#side-nav {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 5%;
  height: 20vh;
  position: fixed;
  top: 1%;
  left: 1%;
  margin: 0;
  padding: 0;
}

#side-nav img {
  width: 7%;
}

#mobile-nav {
  display: none;
}

#top-nav.hidden {
  opacity: 0;
  pointer-events: none;
}

#side-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-top {
  display: none;
}

.musical-block {
  width: 100%;
}

.title-column-text {
  width: 80%;
  margin: 2% 10%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.title-column-text .text-column {
  width: 70%;
  margin: 2% 15%;
  color: #E50F45;
  font-size: 95%;
  font-weight: 400;
  font-family: "AvantGarde", sans-serif;
  column-count: 2;
  column-gap: 5%;
}

.border {
  position: relative;
  padding-bottom: 30px;
}

.border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  border-bottom: 4px solid #E50F45;
}

/*=======GALLERY-WRAPPER=======*/
.gallery-wrapper {
  overflow-x: auto;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-wrapper:active {
  cursor: grabbing;
}

.musical-gallery {
  margin-top: 20%;
  background-color: #E50F45;
  height: 15vh;
  overflow-x: clip;
  overflow-y: visible;
  width: 75%;
  padding-left: 25%;
  gap: 2%;
  display: inline-flex;
  padding: 0 150vw 0 45vw;
}

.musical-gallery img {
  height: 50vh;
  margin-top: -35vh;
  width: 55%;
  object-fit: cover;
  pointer-events: none;
}

.main-top-photo {
  width: 55%;
  margin: 5% 22.5%;
}

.main-top-photo img {
  width: 100%;
}

.current-musical-selection {
  width: 100%;
}

.current-musical-selection div:nth-child(1) {
  width: 100%;
}

.title-to-block-div {
  width: 67.5%;
  margin: 5% 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.title-to-block-div p {
  width: 80%;
  color: #E50F45;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-family: "AvantGarde", sans-serif;
}

.countdown {
  position: relative;
  font-family: "AvantGarde", sans-serif;
  font-weight: 600;
  background-color: #E50F45;
  color: white;
  padding: 1%;
  font-size: 90%;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 29%;
  display: flex;
  margin: 0 auto;
  gap: 1%;
}

.dates-div {
  width: 80%;
  color: #E50F45;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-family: "AvantGarde", sans-serif;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 10px;
  padding: 5% 0;
  border-top: 2px solid #E50F45;
  border-bottom: 2px solid #E50F45;
}

.dates-div div {
  width: 22.5%;
}

.dates-div h5 {
  font-weight: 600;
  font-size: 120%;
  margin-bottom: 3%;
}

.dates-div p {
  font-size: 85%;
}

.dates-wrapper {
  width: 81%;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

#prevBtn {
  position: absolute;
  left: -15%;
}

#nextBtn {
  position: absolute;
  left: 105%;
}

.arrow-btn {
  flex-shrink: 0;
  width: 70px;
  height: 40px;
  color: #E50F45;
  font-size: 180%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, opacity 0.2s;
  z-index: 2;
  background: white;
}

.arrow-btn:hover {
  font-size: 200%;
}

.arrow-btn:disabled {
  cursor: default;
  color: #fff;
  background-color: #fff;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.dates-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.date-slide {
  text-decoration: none;
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.date-card {
  flex: 0 0 calc((100% - 24px) / 4);
  font-family: "AvantGarde", sans-serif;
  background-color: white;
  color: #E50F45;
  padding: 14px 10px;
  font-size: 130%;
  text-align: left;
  transition-duration: 0.3s;
}

.date-card:hover {
  background-color: #E50F45;
  color: white;
}

.date-card:hover p {
  color: white;
}

.info-block-title {
  font-size: 90%;
  font-weight: 600;
  text-transform: uppercase;
}

.date-hours {
  font-size: 70%;
  line-height: 1.7;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d3d3d3;
  border: none;
  cursor: pointer;
}

.dot.active {
  background: #E50F45;
  transform: scale(1.3);
}

@media (max-width: 540px) {
  .date-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}
.info-block {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #E50F45;
  font-family: "AvantGarde", sans-serif;
}

.info-block h5 {
  font-weight: 600;
  font-size: 110%;
}

.info-block li {
  font-weight: 400;
  list-style-type: none;
}

.info-block div:nth-child(1) {
  display: flex;
  align-items: left;
  flex-direction: column;
}

.info-block div:nth-child(2) {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 35%;
}

.info-block div:nth-child(2) button {
  margin-top: 3%;
}

.info-block div:nth-child(3) {
  display: flex;
  align-items: right;
  flex-direction: column;
}

.behind-the-sueno {
  width: 67.5%;
  padding: 5% 22.5% 5% 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid #E50F45;
  font-family: "AvantGarde", sans-serif;
  color: #E50F45;
}

.behind-the-sueno h2 {
  text-align: left;
  align-self: flex-start;
  margin: 0;
  padding: 0;
}

.behind-the-sueno div {
  display: block;
  width: 80%;
}

.behind-the-sueno p {
  column-count: 2;
  width: 100%;
}

.behind-the-sueno .arte-button {
  margin-top: 10%;
}

.view-photos-section {
  width: 40%;
  margin: 10% 30%;
  color: #E50F45;
  font-family: "AvantGarde", sans-serif;
}

.view-photos-section {
  width: 60%;
  margin: 10% 20%;
  color: #E50F45;
  font-family: "AvantGarde", sans-serif;
}

.view-photos-section h3 {
  font-weight: 700;
  font-size: 230%;
  text-align: center;
}

.view-photos-section p {
  font-weight: 400;
  text-align: center;
  margin-top: 2%;
}

.view-photos-section p a {
  color: #E50F45;
}

/*=========CONTACT-SECTION==========*/
.contact-section {
  width: 40%;
  padding: 2% 30%;
  background-color: #E50F45;
}

.contact-section h2 {
  color: white;
  margin: 0;
}

.contact-section div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 7%;
}

.contact-section div ul li {
  list-style-type: none;
  color: white;
  font-family: "AvantGarde", sans-serif;
  margin-bottom: 5%;
}

.contact-section div ul:nth-child(1) {
  text-align: left;
}

.contact-section div ul:nth-child(2) {
  text-align: right;
}

/*=======SPONSORS=======*/
.sponsor-section {
  width: 50%;
  margin: 5% 25%;
}

.sponsor-section figure {
  display: flex;
  justify-content: center;
  gap: 10%;
  flex-wrap: wrap;
  margin: 5% 0;
}

.sponsor-section figure img {
  width: 30%;
  margin: 3% 0;
}

/*===========CAST-AND-CREW==========*/
.castcrew-block {
  width: 85%;
  margin: 3% 10% 10% 5%;
  display: flex;
  align-items: flex-start;
  font-family: "AvantGarde", sans-serif;
  color: #E50F45;
  justify-content: space-between;
}

.castcrew-block h3 {
  width: 10%;
}

.castcrew-block-box {
  width: 80%;
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}

.castcrew-block-box figure {
  width: 20%;
  margin-bottom: 3%;
}

.castcrew-block-box figure img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 800px;
  object-fit: cover;
}

.castcrew-block-box figure h5 {
  font-size: 120%;
  font-weight: 600;
}

.castcrew-block-box figure p {
  font-size: 110%;
  font-weight: 400;
}

.member-card {
  position: relative;
  display: inline-block;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 5%;
}

/* 2. Make both images fill the exact same container dimensions */
.member-card .base-img,
.member-card .hover-img {
  width: 100%;
  height: 100%;
}

.member-card .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.member-card:hover .hover-img {
  opacity: 1;
}

.creatives {
  width: 80%;
  margin: 5% 10%;
  font-family: "AvantGarde", sans-serif;
  color: #E50F45;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.creatives .general-title {
  margin-bottom: 0;
}

.creatives h3 {
  text-align: center;
  font-size: 180%;
  margin-bottom: 5%;
  font-weight: 500;
}

.creatives-container {
  width: 90%;
  margin: 0 5%;
  display: flex;
  justify-content: center;
  gap: 10%;
  flex-wrap: wrap;
}

.creative-section {
  width: auto;
  margin-bottom: 5%;
  text-align: left;
}

.creatives-container .creative-section h3 {
  font-size: 120%;
  text-align: left;
  font-weight: 600;
}

.creatives-container .creative-section p {
  font-size: 100%;
}

.creatives-container .creative-section b {
  font-weight: 600;
}

/*============CONTACT========*/
.contact-form {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "AvantGarde", sans-serif;
}

.contact-form div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 5%;
}

.contact-form section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20%;
}

.contact-form label {
  margin-bottom: 3%;
  text-transform: uppercase;
  color: #E50F45;
  font-weight: 600;
  font-size: 110%;
}

.contact-form input {
  width: 94%;
  margin-bottom: 3%;
  border: 1px solid #E50F45;
  background-color: white;
  padding: 3%;
  color: #E50F45;
  font-size: 100%;
}

.contact-form input[type=submit] {
  background-color: none;
  border: none;
  padding: 0;
  font-weight: 600;
  width: 15%;
  float: right;
  font-size: 130%;
  margin: 3% 0 3% 85%;
  text-align: right;
  transition-duration: 0.3s;
}

.contact-form input[type=submit]:hover {
  font-weight: 800;
  cursor: pointer;
}

.contact-form .message-section {
  width: 100%;
}

.contact-form textarea {
  height: 30vh;
  width: 96%;
  border: 1px solid #E50F45;
  padding: 2%;
  font-size: 120%;
  resize: none;
  font-family: "AvantGarde", sans-serif;
}

/*============FOOTER=========*/
footer {
  width: 90%;
  padding: 3% 5% 1% 5%;
  background-color: #E50F45;
  color: white;
  font-family: "AvantGarde", sans-serif;
}

footer section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer div:nth-child(1) {
  width: 30%;
}

footer div:nth-child(1) ul li {
  list-style-type: none;
  margin-bottom: 2%;
}

footer div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  font-size: 230%;
}

footer div:nth-child(2) figure {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25%;
  margin-top: 5%;
}

footer div:nth-child(2) figure img {
  width: 15%;
}

footer figure {
  width: 10%;
  padding-left: 20%;
}

footer figure img {
  width: 100%;
}

.credits {
  color: white;
  font-size: 80%;
  text-align: center;
  width: 50%;
  margin: 0 25%;
}

.scroll-top {
  position: fixed;
  bottom: 2%;
  right: 2%;
  padding: 1%;
  font-size: 90%;
  text-align: center;
  cursor: pointer;
  display: none;
  background-color: #E50F45;
  color: white;
  transition-duration: 0.3s;
  animation: popup 0.7s ease;
}

.scroll-top:hover {
  background-color: white;
  border: 1px solid #E50F45;
  color: #E50F45;
}

/*--------waiting-screens-----*/
.screen-body {
  background-color: #E50F45;
  width: 65%;
  height: 70vh;
  padding: 15vh 17.5%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7%;
  color: white;
  text-align: center;
  font-family: "AvantGarde", sans-serif;
}

.screen-body figure {
  margin: 0 46%;
  width: 8%;
}

.screen-body img {
  width: 100%;
}

.screen-body h1 {
  font-size: 250%;
}

.screen-body h3 {
  font-size: 130%;
}

.screen-body p {
  font-size: 110%;
}

.screen-body a {
  text-transform: uppercase;
  padding: 2%;
  border: 1px solid white;
  font-family: "AvantGarde", sans-serif;
  width: 10%;
  margin: 0 45%;
  cursor: pointer;
  background-color: #E50F45;
  transition-duration: 0.3s;
  font-weight: 600;
  text-decoration: none;
  color: white;
  width: 150px;
  font-size: 110%;
}

.screen-body a:hover {
  background-color: white;
  color: #E50F45;
}

@keyframes popup {
  0% {
    bottom: 0;
    opacity: 0;
  }
  100% {
    bottom: 2%;
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  body {
    overflow-x: hidden;
  }
  .general-title {
    font-size: 230%;
  }
  .medium-title {
    font-size: 120%;
  }
  nav {
    width: 60%;
    margin: 1% 20%;
  }
  nav li {
    list-style-type: none;
    font-size: 110%;
  }
  nav li a {
    color: #E50F45;
    transition-duration: 0.3s;
    text-decoration: none;
  }
  #side-nav img {
    width: 5%;
  }
  #top-nav {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .musical-block {
    width: 100%;
  }
  .title-column-text {
    width: 85%;
    margin: 2% 7.5%;
  }
  .title-column-text .text-column {
    width: 85%;
    margin: 2% 7.5%;
  }
  .musical-gallery {
    margin-top: 20%;
    background-color: #E50F45;
    height: 35vh;
    overflow-x: clip;
    overflow-y: visible;
    width: 75%;
    padding-left: 25%;
    gap: 2%;
    display: inline-flex;
    padding: 0 auto 0 45vw;
    align-items: stretch;
  }
  .musical-gallery > *:last-child {
    padding-right: 25vw;
  }
  .musical-gallery img {
    height: 60vh;
    margin-top: -25vh;
    width: 45%;
    object-fit: cover;
    pointer-events: none;
    max-width: 400px;
  }
  .main-top-photo {
    width: 60%;
    margin: 5% 20%;
  }
  .title-to-block-div {
    width: 73.5%;
    margin: 5% 7% 5% 7%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .title-to-block-div p {
    font-size: 90%;
  }
  .date-card {
    flex: 0 0 calc((100% - 10px) / 3);
    font-size: 90%;
  }
  .dates-div {
    justify-content: space-between;
  }
  .dates-div div {
    width: 25%;
  }
  .dates-div h5 {
    font-weight: 600;
    font-size: 100%;
  }
  .date-card {
    font-size: 100%;
  }
  .info-block {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #E50F45;
    font-family: "AvantGarde", sans-serif;
  }
  .info-block h5 {
    font-weight: 600;
    font-size: 110%;
  }
  .info-block li {
    font-weight: 400;
    list-style-type: none;
  }
  .behind-the-sueno {
    width: 90%;
    padding: 5% 2.5% 5% 7.5%;
  }
  .behind-the-sueno p {
    column-count: 1;
  }
  .view-photos-section {
    width: 50%;
    margin: 10% 25%;
    color: #E50F45;
    font-family: "AvantGarde", sans-serif;
  }
  .view-photos-section {
    width: 60%;
    margin: 10% 20%;
    color: #E50F45;
    font-family: "AvantGarde", sans-serif;
  }
  /*===========CAST-AND-CREW==========*/
  .castcrew-block {
    width: 90%;
    margin: 3% 5% 10% 5%;
    display: flex;
    align-items: flex-start;
    font-family: "AvantGarde", sans-serif;
    color: #E50F45;
    justify-content: space-between;
  }
  .castcrew-block-box figure img {
    min-width: 100px;
    min-height: 240px;
  }
  .castcrew-block-box figure h5 {
    font-size: 100%;
  }
  .castcrew-block-box figure p {
    font-size: 100%;
  }
  .creatives {
    width: 90%;
    margin: 5%;
  }
  .creatives .general-title {
    margin-bottom: 0;
  }
  .creatives h3 {
    font-size: 160%;
  }
  .creatives-container {
    width: 90%;
    margin: 0 5%;
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
  }
  .creative-section {
    width: 45%;
    margin-bottom: 5%;
    text-align: left;
    padding-top: 2%;
    border-top: 1px solid #E50F45;
  }
  .creatives-container .creative-section h3 {
    font-size: 120%;
    text-align: left;
    font-weight: 600;
  }
  /*============CONTACT========*/
  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "AvantGarde", sans-serif;
  }
  .contact-form div {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 5%;
  }
  .contact-form section {
    display: flex;
    flex-direction: column;
    gap: 5%;
  }
  .contact-form div section {
    width: 45%;
  }
  .contact-form label {
    margin-bottom: 3%;
    text-transform: uppercase;
    color: #E50F45;
    font-weight: 600;
    font-size: 110%;
  }
  .contact-form input {
    margin-bottom: 3%;
    border: 1px solid #E50F45;
    background-color: white;
    padding: 3%;
    color: #E50F45;
    font-size: 100%;
  }
  .contact-form input[type=submit] {
    background-color: none;
    border: none;
    padding: 0;
    font-weight: 600;
    width: 30%;
    text-align: right;
    float: right;
    font-size: 130%;
    margin: 3% 0 3% 70%;
    text-align: right;
    transition-duration: 0.3s;
  }
  .contact-form input[type=submit]:hover {
    font-weight: 800;
    cursor: pointer;
  }
  .contact-form section textarea {
    height: 30vh;
    width: 96%;
    border: 1px solid #E50F45;
    padding: 2%;
    font-size: 120%;
    resize: none;
    font-family: "AvantGarde", sans-serif;
  }
  /*=========CONTACT-SECTION==========*/
  .contact-section {
    width: 60%;
    padding: 2% 20%;
  }
  /*=======SPONSORS=======*/
  .sponsor-section {
    width: 60%;
    margin: 5% 20%;
  }
  /*============FOOTER=========*/
  footer {
    width: 95%;
    padding: 3% 2.5% 1% 2.5%;
  }
  footer section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .credits {
    color: white;
    font-size: 80%;
    text-align: center;
    width: 80%;
    margin: 5% 10% 0 10%;
  }
  .scroll-top-top {
    position: fixed;
    bottom: 1%;
    right: 1%;
    font-size: 80%;
    text-align: center;
    display: none;
    background-color: #E50F45;
    color: white;
    transition-duration: 0.3s;
    animation: popup 0.7s ease;
  }
}
@media (max-width: 800px) {
    
    /*--------waiting-screens-----*/
.screen-body {
  background-color: #E50F45;
  width: 65%;
  height: 80vh;
  padding: 5vh 10%;
}

.screen-body figure {
  margin: 0 30%;
  width: 40%;
}

.screen-body figure img {
  width: 100%;
}
.screen-body h1{
    font-size: 180%;
}

  p {
    font-size: 90%;
  }
  .nav-top {
    display: block;
    top: 3%;
    left: 3%;
    position: fixed;
    z-index: 100;
  }
  header {
    padding-top: 20%;
  }
  #side-nav {
    display: none;
  }
  #top-nav {
    display: none;
  }
  .animation-div {
    margin: 0;
  }
  .ham {
    cursor: pointer;
    transition: transform 400ms;
    user-select: none;
  }
  .line {
    fill: none;
    transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, stroke 300ms;
    stroke: #E50F45;
    stroke-width: 3.5;
    stroke-linecap: round;
  }
  .ham1.active .line {
    stroke: white;
  }
  .ham1 .top {
    stroke-dasharray: 40 139;
  }
  .ham1 .bottom {
    stroke-dasharray: 40 139;
  }
  .ham1.active .top {
    stroke-dashoffset: -98px;
  }
  .ham1.active .bottom {
    stroke-dashoffset: -138px;
  }
  #mobile-nav {
    display: none;
    animation: slidein 0.5s ease;
    position: fixed;
    text-align: center;
    justify-content: center;
    font-size: 150%;
    height: 110vh;
    padding-top: 10vh;
    margin-top: -10vh;
    width: 110%;
    margin-left: -5%;
    padding: 2vh 0;
    color: white;
    z-index: 99;
    background-color: #E50F45;
  }
  @keyframes slidein {
    0% {
      opacity: 0;
      margin-top: -200%;
    }
    100% {
      opacity: 1;
      margin-top: -10vh;
    }
  }
  #mobile-nav img {
    width: 10%;
    margin: 20% 0 5% 0;
  }
  #mobile-nav ul {
    width: 90%;
    height: 80%;
    margin: 10% 5%;
    display: block;
    flex-direction: column;
    overflow-x: visible;
  }
  nav li a {
    color: white;
  }
  #mobile-nav li {
    text-decoration: none;
    list-style-type: none;
    margin: 5% 0;
  }
  #mobile-nav-menu li a {
    font-size: 150%;
  }
  .navbutton {
    padding: 10% 0;
    text-align: center;
    font-size: 110%;
  }
  #mobile-nav p {
    display: block;
    width: 100%;
    font-size: 90%;
    padding: 0;
    margin-top: 15%;
    padding: 0;
    text-align: center;
  }
  #scrollBtn {
    display: none;
  }
  .scroll-top-top {
    display: none;
  }
  .general-title {
    font-size: 180%;
    margin-bottom: 10%;
  }
  .medium-title {
    font-size: 160%;
    margin-bottom: 3%;
  }
  .title-column-text {
    width: 90%;
    margin: 2% 5%;
    display: block;
  }
  .title-column-text .text-column {
    column-count: unset;
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 2% 5%;
    color: #E50F45;
    font-size: 90%;
    font-weight: 400;
    font-family: "AvantGarde", sans-serif;
  }
  .text-column div:nth-child(1) {
    margin-bottom: 5%;
  }
  .border {
    position: relative;
    padding-bottom: 30px;
  }
  .border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    border-bottom: 4px solid #E50F45;
  }
  /*=======GALLERY-WRAPPER=======*/
  .gallery-wrapper {
    margin-top: 30%;
  }
  .musical-gallery img {
    width: 80%;
    height: 65vh;
    margin-top: -30vh;
    min-width: 300px;
    min-height: 400px;
  }
  .main-top-photo {
    width: 80%;
    margin: 5% 10%;
  }
  .main-top-photo img {
    width: 100%;
  }
  .current-musical-selection {
    width: 100%;
  }
  .current-musical-selection div:nth-child(1) {
    width: 100%;
  }
  .title-to-block-div {
    width: 80%;
    margin: 5% 10%;
    display: block;
  }
  .title-to-block-div p {
    width: 100%;
  }
  .countdown {
    width: 70%;
    padding: 3% 1%;
  }
  #musicalTitle {
    margin-bottom: 5%;
  }
  .dates-div {
    width: 100%;
    color: #E50F45;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    font-family: "AvantGarde", sans-serif;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 10px;
    padding: 5% 0;
    border-top: 2px solid #E50F45;
    border-bottom: 2px solid #E50F45;
  }
  .carousel-container {
    width: 100%;
  }
  .carousel-viewport {
    width: 95%;
    padding: 0 2.5%;
  }
  .dates-wrapper {
    width: 95%;
    margin: 0 2.5%;
  }
  .dates-div div {
    width: 40%;
  }
  #nextBtn {
    left: 97%;
  }
  .info-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    color: #E50F45;
    font-family: "AvantGarde", sans-serif;
  }
  .info-block h5 {
    font-weight: 600;
    font-size: 110%;
  }
  .info-block li {
    font-weight: 400;
    list-style-type: none;
  }
  .info-block div {
    margin: 5% 0;
  }
  .info-block div:nth-child(1) {
    display: flex;
    align-items: left;
    flex-direction: column;
  }
  .info-block div:nth-child(2) {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 35%;
  }
  .info-block div:nth-child(2) button {
    margin-top: 3%;
  }
  .info-block div:nth-child(3) {
    display: flex;
    align-items: left;
    flex-direction: column;
  }
  .behind-the-sueno {
    width: 80%;
    padding: 10%;
    display: block;
    margin-bottom: 10%;
  }
  .behind-the-sueno h2 {
    text-align: left;
    align-self: flex-start;
    margin: 0;
    padding: 0;
    margin-bottom: 3%;
    width: 100%;
  }
  .behind-the-sueno div {
    display: block;
    width: 100%;
  }
  .behind-the-sueno p {
    width: 100%;
    column-count: 1;
  }
  .behind-the-sueno .arte-button {
    margin-top: 3%;
  }
  .view-photos-section {
    width: 80%;
    margin: 10%;
  }
  .view-photos-section h3 {
    font-size: 180%;
  }
  #mobileTitle {
    margin-top: 15%;
  }
  .castcrew-block {
    width: 90%;
    margin: 3% 5% 10% 5%;
    display: block;
    font-family: "AvantGarde", sans-serif;
    color: #E50F45;
    justify-content: space-between;
  }
  .castcrew-block-box {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
  .castcrew-block-box figure {
    width: 45%;
  }
  .castcrew-block-box figure img {
    min-width: 200px;
    min-height: 400px;
  }
  .creatives-container {
    width: 90%;
    margin: 0 5%;
    display: block;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
  }
  .creative-section {
    width: 80%;
    margin: 0 10% 5% 10%;
    text-align: left;
    padding-top: 2%;
    border-top: 1px solid #E50F45;
  }
  .creatives-container .creative-section h3 {
    font-size: 120%;
    text-align: left;
    font-weight: 600;
  }
  /*=========CONTACT-SECTION==========*/
  .contact-section {
    width: 80%;
    padding: 5% 10%;
  }
  /*=======SPONSORS=======*/
  .sponsor-section {
    width: 80%;
    margin: 10%;
  }
  .sponsor-section figure img {
    width: 30%;
    margin: 3% 0;
  }
  /*============FOOTER=========*/
  footer {
    width: 90%;
    padding: 3% 5% 1% 5%;
    background-color: #E50F45;
    color: white;
    font-family: "AvantGarde", sans-serif;
  }
  footer section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  footer div:nth-child(1) {
    width: 40%;
  }
  footer div:nth-child(2) {
    align-items: flex-end;
    width: 45%;
    justify-content: right;
    font-size: 120%;
  }
  footer div:nth-child(2) figure {
    width: 50%;
    display: flex;
    justify-content: right;
    gap: 15%;
    align-items: center;
    padding: 0 10% 0 40%;
    margin-top: 5%;
  }
  footer div:nth-child(2) figure img {
    width: 25%;
  }
  .logo-figure {
    display: flex;
    justify-content: center;
    width: 30%;
    margin: 10% auto 5% auto;
    padding: 0;
  }
  .logo-figure img {
    width: 60%;
  }
  footer figure {
    width: 10%;
    padding-left: 20%;
  }
  footer figure img {
    width: 100%;
  }
  .credits {
    color: white;
    font-size: 80%;
    text-align: center;
    width: 80%;
    margin: 10% 10% 2% 10%;
  }
}

/*# sourceMappingURL=style.css.map */
