* {
  font-family: "system-ui", "verdana", "tahoma", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

:root {
  --white: #fff;
  --black: #000;
  --orange: #f2d87c;
}

img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--orange);
  position: relative;
}

a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

a:hover {
  color: var(--orange);
}

a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  max-width: 1170px;
  z-index: 10;
}

.f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.mt-0 {
  margin-top: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.text,
.text * {
  line-height: 1.6;
  color: var(--black);
}

p.text,
.text > p {
  margin-bottom: 25px;
}

.text-center {
  text-align: center;
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--orange);
  padding: 0 30px;
  text-transform: uppercase;
  font-size: 14px;
  border: 2px solid var(--orange);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.btn::after {
  display: none;
}

.btn:hover {
  color: #fff;
  background-color: var(--orange);
  background-color: rgba(0, 0, 0, 0);
}

.btn-secondary {
  color: var(--black);
  background-color: var(--orange);
}

.btn-secondary:hover {
  color: var(--orange);
  background-color: var(--black);
  border-color: var(--black);
}

.btn-white {
  color: var(--white);
  background-color: var(--black);
}

.btn-white:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.cover-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  cursor: pointer;
}

.cover-link::after {
  display: none;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon:before,
.icon::after {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.h1 {
  font-size: 50px;
  margin: 0 0 50px;
}

.h3 {
  font-size: 20px;
  margin: 20px 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.block--title {
  font-size: 30px;
  margin: 0 0 50px;
  text-align: center;
}

.footer {
  padding: 1px;
}

.footer-logo {
  padding: 1px;
}

.copyright {
  padding: 1px;
}

* {
  font-family: "Roboto Mono", system-ui, -apple-system, "Helvetica Neue",
    sans-serif;
}

main {
  background-color: var(--black);
}

.header {
  position: fixed;
  z-index: 9999;
  background-color: rgba(23, 14, 3, 0.5);
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
  width: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header.active {
  background-color: rgba(23, 14, 3, 0.9);
}

.logo {
  color: #fff;
  font-size: 18px;
}

.menu {
  margin: 0 auto;
}

.menu > a {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  padding: 0 24px;
  font-size: 14px;
}

.menu > a::after {
  right: 24px;
  left: 24px;
  width: auto;
}

.menu > a:hover {
  color: var(--orange);
}

.hero {
  height: 100vh;
  position: relative;
  min-height: 600px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(23, 14, 3, 0.8);
  z-index: 2;
}

.hero-img {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-img img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.h1 {
  font-size: 85px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-text {
  font-size: 35px;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
}

.hero-date {
  font-size: 20px;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
}

.hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.hero-buttons .btn {
  margin: 0 20px;
}

.timer-wrapper {
  background-color: var(--black);
  padding: 60px 20px;
  text-align: center;
}

.timer-title {
  font-size: 40px;
  color: #fff;
  margin: 0 0 40px;
  font-weight: 400;
  line-height: 1.2;
}

.filter-locations {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.timer-item {
  display: inline-block;
  color: #fff;
  font-size: 30px;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  margin: 20px 0;
}

.timer-text-item {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}

.date-text-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}

.timer-pinned {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.timer-pinned-content {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.timer-pinned-content > span {
  font-size: 18px;
  color: #fff;
  margin: 0 10px 0 0;
}

.timer2-item,
.timer2-text {
  display: inline-block;
  color: var(--orange);
  font-size: 18px;
}

.block-text {
  padding: 120px 0;
  background-color: var(--black);
}

.block-title {
  font-size: 35px;
  color: #fff;
  margin: 0 0 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.block-title-black {
  color: var(--black);
  margin-bottom: 45px;
}

.text * {
  color: #fff;
  line-height: 1.6;
}

.text p:not(:last-child) {
  margin-bottom: 17px;
}

.block-dates {
  padding: 90px 0 120px;
  background-color: var(--black);
}

.date {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.date-date {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.date-day {
  font-size: 60px;
  margin: 0 5px 0 0;
  color: #fff;
  grid-row: auto;
}

.date-text {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.date-name {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 30px;
}

.date-name p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}

.date-navigation {
  margin-left: auto;
}

.cover-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.cover-block * {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.cover-block:hover * {
  color: var(--orange);
}

.block-songs {
  position: relative;
  padding: 120px 0;
}

.block-songs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(23, 14, 3, 0.8);
  z-index: 2;
}

.songs-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.song {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  line-height: 1.6;
}

.block-spotify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 0;
}

.block-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0;
  overflow: hidden;
}

.block-gallery {
  padding: 60px 0 120px;
  overflow: hidden;
}

.block-gallery,
.swiper,
.swiper-wrapper {
  width: 100%;
}

.swiper-slide {
  height: auto;
}

.swiper-slide img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.block-bio {
  position: relative;
  padding: 120px 0;
}

.block-bio::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(23, 14, 3, 0.6);
  z-index: 2;
}

.block-bio .text-bio {
  max-width: 600px;
}

.soc-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.soc-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 25px;
}

.soc-icon svg {
  fill: #fff;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.soc-icon:hover::after {
  display: none;
}

.wikipedia {
  background-image: url("../icons/wikipedia-white2.svg");
  position: relative;
}

.wikipedia::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: #fff;
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.spotify {
  background-image: url("../icons/spotify-white.svg");
}

.soundcloud {
  background-image: url("../icons/soundcloud-white.svg");
}

.youtube {
  background-image: url("../icons/youtube-white.svg");
}

.twitter {
  background-image: url("../icons/twitter-white.svg");
}

.linkedin {
  background-image: url("../icons/linkedin-white.svg");
}

.instagram {
  background-image: url("../icons/inst-white.svg");
}

.facebook {
  background-image: url("../icons/fb-white.svg");
}

.faq-block {
  padding: 120px 0;
}

.faq {
  max-height: 60px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.faq.active {
  max-height: fit-content;
}

.faq.active .faq-question::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 19px;
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

.faq-question::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 20px;
  top: 22px;
  background-image: url("../icons/arrowdonw-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.faq-answer {
  color: #fff;
  padding: 0 50px 20px 0;
  line-height: 1.6;
}

.star {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 3px;
  background-image: url("../icons/star-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  fill: var(--orange);
}

.star-empty {
  background-image: url("../icons/star.svg");
}

.block-comments {
  padding: 60px 0;
}

.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.review {
  margin-bottom: 35px;
}

.review-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review-name {
  font-size: 20px;
  margin-right: 30px;
  color: #fff;
}

.review-date {
  margin: 5px 0 20px;
  font-size: 13px;
  line-height: 15px;
  color: #7b7873;
}

.review-text {
  color: #7b7873;
  line-height: 1.6;
}

.footer {
  padding: 120px 0 20px;
  background-color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer h2,
.footer a {
  color: #fff;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.menu-toggle {
  display: none;
}

@media screen and (max-width: 992px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 70px 0 50px;
    overflow: hidden;
  }

  .block-title {
    font-size: 30px;
  }

  .footer a {
    font-size: 18px;
  }

  .hero-overlay::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(1%, transparent),
      color-stop(98%, #000)
    );
    background: -o-linear-gradient(top, transparent 1%, #000 98%);
    background: linear-gradient(180deg, transparent 1%, #000 98%);
  }

  .hero-content {
    position: relative;
    z-index: 10;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: auto;
    right: auto;
    padding: 40px 15px 0;
  }

  .hero-img {
    position: absolute;
    height: auto;
  }

  .hero-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(1%, transparent),
      color-stop(98%, #000)
    );
    background: -o-linear-gradient(top, transparent 1%, #000 98%);
    background: linear-gradient(180deg, transparent 1%, #000 98%);
  }

  .hero-img img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top;
    object-position: top;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .menu-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .menu-toggle span:nth-child(2) {
    margin: 2px 0;
  }

  .menu-toggle.active span {
    background-color: var(--orange);
  }

  .menu {
    position: fixed;
    opacity: 0;
    left: 0;
    right: 0;
    max-height: 0;
    top: 70px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: rgba(23, 14, 3, 0.5);
  }

  .menu.active {
    opacity: 1;
    max-height: 1000px;
    visibility: visible;
    z-index: 999;
  }

  .menu a {
    padding: 15px 40px;
  }

  .logo {
    margin: 0 auto;
    font-size: 18px;
  }

  .header {
    height: 70px;
    background-color: rgba(23, 14, 3, 0.9);
  }

  .menu {
    background-color: rgba(23, 14, 3, 0.9);
  }

  .h1 {
    font-size: 35px;
  }

  .hero-text {
    font-size: 25px;
    margin-top: 0;
  }

  .hero-date {
    font-size: 18px;
    line-height: 1.4;
  }

  .hero-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 10px;
  }

  .hero-buttons .btn {
    margin: 10px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .timer-pinned {
    left: 15px;
    right: 15px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
  }

  .timer-pinned p {
    margin-bottom: 10px;
  }

  .timer-item {
    font-size: 24px;
  }

  .timer-text-item {
    font-size: 16px;
  }

  .block-bio,
  .block-text,
  .block-songs,
  .block-spotify,
  .footer,
  .block-dates {
    padding: 50px 0;
  }

  .faq-block {
    padding: 100px 0;
  }

  .block-comments {
    padding: 0;
  }

  .cover-block,
  .date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .date-name {
    padding: 0;
    text-align: center;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .date {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 0;
  }

  .timer-pinned-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .timer-pinned-content > span {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 16px;
  }

  .cover-block {
    width: 100%;
    text-align: center;
  }

  .date-date {
    border: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .date-day {
    padding: 0 3px 0 0;
    margin: 0;
  }

  .date-text {
    margin-top: 6px;
    padding-left: 5px;
  }

  .date-navigation {
    margin: 5px auto 0;
  }
}

@media screen and (max-width: 500px) {
  .soc-icon {
    margin-bottom: 20px;
  }

  .soc-links {
    margin-bottom: -20px;
  }
}

@media screen and (max-width: 375px) {
  .hero-text {
    font-size: 20px;
  }

  .h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.custom-dropdown {
  position: relative;
  min-width: 220px;
  font-family: inherit;
  font-size: 16px;
  user-select: none;
}

.dropdown-selected {
  background: #181818;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dropdown-arrow {
  margin-left: 10px;
  font-size: 16px;
}

.dropdown-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 110%;
  background: #222;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 100;
  padding: 8px 0;
}

.dropdown-item {
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
}

.dropdown-item:hover,
.dropdown-item.selected {
  background: #333;
}

.dropdown-check {
  color: #f2d87b;
  font-size: 16px;
  margin-left: 10px;
}

.disclaimer {
  color: #7b7873;
  background: black;
  text-align: center;
  margin: 0;
  padding-bottom: 120px;
  line-height: 30px;
}

.lang {
  background: rgba(55, 55, 55, 0.5);
  border-radius: 5px;
  padding: 5px;
  position: relative;
  transition: 0.3s all;
}

.lang-submenu {
  position: absolute;
  top: 120%;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  background: rgba(55, 55, 55, 0.5);
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s all;
  transform: translateX(-50%);
  left: 50%;
}

.venue-name::after {
  content: " - ";
  color: #fff;
}

.lang-item {
  display: block;
  padding: 5px 0;
  transition: 0.3s all;
  color: var(--white);
}
.lang-item.active,
.lang-item:hover {
  color: var(--orange);
}

.lang-item.active {
  cursor: context-menu;
}

@media screen and (min-width: 992px) {
  .lang-submenu .lang-item {
    margin-bottom: 10px;
  }
  .lang:hover {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .lang:hover .lang-submenu {
    opacity: 1;
    z-index: 20;
    visibility: visible;
    top: 99%;
  }

  .menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 992px) {
  .lang-submenu {
    display: flex;
    justify-content: center;
  }
  .lang {
    padding: 15px 40px;
    display: flex;
  }
  .lang-submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    z-index: 21;
    background: none;
    padding: 0 0 0 28px;
  }
  .lang-submenu a {
    padding: 5px 28px 5px 0px;
  }
}

@media screen and (max-width: 768px) {
  .date-name p {
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    line-height: 1.3;
  }

  .venue-name {
    display: block;
    font-weight: 200;
  }

  .venue-name::after {
    content: "";
  }

  .venue-location {
    display: block;
    margin-top: 5px;
  }
}

@media screen and (max-width: 480px) {
  .date-name p {
    line-height: 1.5 !important;
    word-break: break-word;
  }

  .venue-name {
    display: block;
    font-weight: 200;
  }

  .venue-name::after {
    content: "";
  }

  .venue-location {
    display: block;
    margin-top: 8px;
  }
}

.poster-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  max-height: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  max-height: 800px;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: #007bff;
}

.dot:hover {
  background: #007bff;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .slider-container,
  .slider-container .slide,
  .slider-track {
    height: 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

.fullscreen-btn {
  right: 80px;
}

.fullscreen-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fullscreen-slider.active {
  display: flex;
  opacity: 1;
}

.fullscreen-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.fullscreen-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  max-width: none;
  border-radius: 0;
  overflow: hidden;
}

.fullscreen-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slider-container .slide {
  min-width: 100%;
  max-height: 800px;
  display: block;
}

.slider-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fullscreen-slider .slide {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-slider .slide img {
  width: 100vw;
  height: 88vh;
  object-fit: contain;
  border-radius: 0;
}

.fullscreen-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.fullscreen-slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.fullscreen-slider-btn.prev-btn {
  left: 30px;
}

.fullscreen-slider-btn.next-btn {
  right: 30px;
}

.fullscreen-slider-dots {
  text-align: center;
  margin-top: 20px;
}

.fullscreen-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fullscreen-dot.active {
  background: #007bff;
}

.fullscreen-dot:hover {
  background: #007bff;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .fullscreen-slider-container {
    width: 100%;
    height: 100vh;
  }

  .fullscreen-slider-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .fullscreen-slider-btn.prev-btn {
    left: 15px;
  }

  .fullscreen-slider-btn.next-btn {
    right: 15px;
  }

  .close-btn {
    top: 15px;
    right: 15px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }
}
