html {
  scroll-behavior: smooth;
}

body {
  background-color: #f0eee7;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: clip;
  width: 100%;
  position: relative;
}
.section-bkg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -10;
}
.button {
  cursor: pointer;
  transition: all 150ms;
  display: flex;
  align-items: center;
  color: #000000;
  text-decoration: none;
}
.button:hover {
  background-image: url("meetup/pattern-repeat.svg");
  background-size: 18px;
  background-color: white;
  outline: 2px solid black;
  color: black;
}
.row {
  width: calc(100% - 100px);
  max-width: 1300px;
}
.text-center {
  text-align: center;
}
mark {
  color: #22e243;
  background-color: transparent;
  font-weight: 700;
}

h2 {
  font-size: 48px;
}

p {
  font-size: 24px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }
}
/* HERO */

.meetup_hero {
  background-image: url("meetup/hero_background.webp");
  background-size: cover;
  background-position: center;
  .row {
    display: flex;
    margin-top: 48px;
    position: relative;
  }

  .row::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("meetup/corners.svg");
    background-size: 100% auto;
    pointer-events: none;
    background-repeat: no-repeat;
  }

  .meetup_hero_title {
    margin-top: 130px;
    flex: 1;
    z-index: 1;
    display: flex;
    flex-direction: column;
    img {
      width: 100%;
    }
    .meetup_hero_expo {
      width: 100%;
      margin-top: 32px;
    }

    span {
      color: white;
      font-size: 32px;
      font-weight: 700;
    }
    .button {
      margin-top: 72px;
    }
  }

  .meetup_hero_image {
    display: block;
    flex: 2;
    margin-top: 100px;
    position: relative;
    img {
      width: calc(100% + 160px);
      position: relative;
      left: -80px;
      display: block;
    }
    .meetup_hero_names {
      position: absolute;
      width: 100%;
      left: 0;
      bottom: 128px;
    }
  }
}

.meetup_hero_expo_wrapper_mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-bottom: 40px;
  background-color: black;
  width: 100%;
  z-index: 1;
  span {
    color: white;
    font-size: 18px;
    font-weight: 700;
  }

  .meetup_hero_expo {
    margin-top: -16px;
    max-width: calc(80% - 50px);
  }
}

.meetup_hero_expo_wrapper {
  display: flex;
  flex-direction: column;
}

.button {
  background-color: #22e243;
  border: none;
  font-size: 16px;
  font-weight: 800;
  height: 64px;
  border-radius: 32px;
  width: fit-content;
  padding: 0 40px;
}

.button-secondary {
  outline: 2px solid #22e243;
  background-color: #000000;
  color: #ffffff;
}

@media (max-width: 768px) {
  .row {
    width: calc(100% - 50px);
  }
  .meetup_hero {
    background-image: url("meetup/hero_background_mobile.webp");
    .row::after {
      display: none;
    }
  }
  .meetup_hero .row {
    flex-direction: column;
  }

  .meetup_hero_names {
    display: none !important;
  }

  .meetup_hero_title {
    margin-top: 10px !important;
    .button {
      margin: auto;
    }
    img {
      width: 80% !important;
      margin: auto;
    }
  }

  .meetup_hero_image {
    margin-top: 16px !important;
    img {
      width: calc(100% + 70px) !important;
      left: -15px !important;
    }
  }
  .meetup_hero_expo_wrapper_mobile {
    display: flex;
  }

  .meetup_hero_expo_wrapper {
    display: none;
  }

  .button {
    font-size: 14px;
  }
}

/* Odbierz darmowy bilet */

.bilet {
  text-align: center;
  padding: 128px 0;
  position: relative;
  .cards {
    display: flex;
    gap: 32px;
  }
  .section-bkg {
    top: -40px;
    left: 0;
    width: calc(100% - 30px);
  }

  .bkg-right {
    left: auto;
    right: 0;
    top: -40px;
    width: calc(100% - 30px);
  }

  p {
    margin-top: 32px;
    margin-bottom: 96px;
  }
}

.card-dark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 24px;
  padding-bottom: 64px;
  padding-inline: 24px;
  img {
    height: 56px;
    margin-bottom: 8px;
  }
  span {
    color: #888888;
    font-size: 14px;
    margin-bottom: 16px;
  }

  strong {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 12px;
  }

  .button {
    height: 48px;
    font-size: 14px;
  }
  .flex-row {
    display: flex;
    margin-top: 24px;
    gap: 16px;
    justify-content: center;
  }
}

.card-dark::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000000 0%, #222222 100%);
  border-radius: 16px;
}

.card-dark::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(0deg, #000000 0%, #727272 100%);
  border-radius: 17px;
}

@media (max-width: 1100px) {
  .bilet .card-dark .flex-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .bilet {
    padding: 64px 0;
    .section-bkg {
      display: none;
    }
    .cards {
      flex-direction: column;
    }
    p {
      margin-top: 24px;
      margin-bottom: 64px;
    }
  }
}

#page-block {
  display: none;
}

/* Zespół */

.zespol {
  margin-top: 128px;
  margin-bottom: 128px;

  .zespol_header {
    margin-bottom: 128px;
  }

  .zespol_buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

.person_socials {
  display: flex;
  display: none;
  justify-content: center;
  gap: 25px;
  margin-top: 16px;
}
.persons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .person-card {
    flex: calc(33.33% - 16px);
    flex-grow: 0;
  }
}

.person-card {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
  img {
    width: 100%;
    margin-bottom: 32px;
  }
  span {
    text-transform: uppercase;
    font-size: 14px;
    color: #888888;
    margin-bottom: 12px;
  }
  strong {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  p {
    font-size: 16px;
    font-weight: 500;
  }
}

@media (max-width: 768px) {
  .zespol {
    .zespol_header {
      margin-bottom: 64px;
    }
    text-align: center;
    .persons {
      .person-card {
        flex: 100%;
        flex-grow: 1;
      }
    }
  }
}

/* FAQ */
.faq h2 {
  margin-bottom: 64px;
  text-align: center;
}
.faq {
  max-width: 1300px;
  margin: 128px auto 0 auto;
  padding: 0 24px;
  font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}
.faq-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
}
.faq-content {
  border-bottom: 2px solid #ffffff;
}
.faq-item {
  border-top: 2px solid #ffffff;
  padding: 64px 110px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.faq-item-title {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item-content {
  margin-top: 0;
  height: 0;
  overflow: hidden;
  transition: all 250ms;
  p {
    margin: 0;
    font-size: 18px;
  }
}

.faq-item img {
  transition: all 250ms;
}

.faq-item.active .faq-item-content {
  height: 100px;
  margin-top: 24px;
}

.faq-item.active img {
  transform: rotate(-180deg);
}

@media (max-width: 768px) {
  .faq-item.active .faq-item-content {
    height: 130px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-item {
    padding-inline: 0;
  }
}

/* JOIN ZEN */

.join-zen {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 256px 0 128px 0;
  font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}

.pattern-bkg {
  max-width: 1312px;
  flex-shrink: 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: 15px;
  background: linear-gradient(
    30deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.join-zen__badges {
  display: flex;
  gap: 48px;
  transform: translateY(-45px);
}

.badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: white;
  border: 2px solid black;
  border-radius: 36px;
  width: 128px;
  height: 128px;
}

.badge--qr img {
  width: 96px;
  height: 96px;
}

.join-zen__eyebrow {
  color: #69e245;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 16px 0;
}

.join-zen__title {
  color: #000000;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Nunito;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin: 0 24px 24px 24px;
}

.join-zen__text {
  color: #000000;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0 24px 48px;
}

.join-zen__code {
  color: #69e245;
  font-weight: 900;
}

.join-zen__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.join-zen__stores img {
  height: 41.77px;
  width: auto;
}

@media (max-width: 768px) {
  .join-zen {
    padding: 50 24px;
  }

  .join-zen__box {
    width: 100%;
    height: unset;
    border-radius: 20px;
    background: url("assets/images/pattern.svg") lightgray 0% 0% / 25px 25px
      repeat;
    padding-bottom: 40px;
  }

  .join-zen__badges {
    transform: translateY(-35px);
  }

  .badge--qr {
    display: none;
  }

  .join-zen__eyebrow {
    color: #69e245;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 16px;
  }

  .join-zen__title {
    color: #000000;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0 16px 16px;
  }
  .join-zen__title br {
    display: none;
  }
  .join-zen__text {
    color: #000000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    margin: 0 16px 32px;
  }

  .join-zen__code {
    color: #22e243;
    font-weight: 900;
  }

  .join-zen__stores img {
    height: 52.214px;
  }
}

.rozklad {
}

.rozklad_events {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
  position: relative;
}

#rozklad_events_line {
  position: absolute;
  left: 185px;
  height: calc(100% - 180px);
  top: 90px;
  width: 3px;
  overflow: hidden;
  background: white;
}

#rozklad_events_line_fill {
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, #ffffff 0%, #22e243 400px, #22e243 100%);
  transition: all 50ms;
}

@media (max-width: 1200px) {
  #rozklad_events_line {
    left: 126px;
    height: calc(100% - 150px);
    top: 60px;
  }
}

@media (max-width: 768px) {
  #rozklad_events_line {
    display: none;
  }
}

.rozklad_event {
  display: flex;
}

.rozklad_event_card {
  background: linear-gradient(
    30deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.55) 100%
  );
  border-radius: 16px;
  display: flex;
  gap: 16px;
  padding: 64px;
  padding-left: 100px;
  flex: 1;
}

.rozklad_time_wrapper {
  width: 330px;
  padding-top: 50px;
  position: relative;
}

.rozklad_time_wrapper::after {
  content: "";
  position: absolute;
  left: calc(50% + 20px);
  width: 3px;
  height: 100%;
  background: #ffffff;
  z-index: -1;
}

.event_first .rozklad_time_wrapper::after {
  background: linear-gradient(0deg, #ffffff, #22e243);
}

.event_first .rozklad_time_wrapper::before {
  content: "";
  position: absolute;
  left: calc(50% + 15px);
  width: 13px;
  height: 13px;
  border-radius: 7px;
  background: #22e243;
  z-index: 2;
  top: 124px;
}

.event_last .rozklad_time_wrapper::after {
  display: none;
}

.event_last .rozklad_time_wrapper::before {
  content: "";
  position: absolute;
  left: calc(50% + 15px);
  width: 13px;
  height: 13px;
  border-radius: 7px;
  background: #ffffff;
  z-index: 0;
  top: 43px;
}

@media (max-width: 1200px) {
  .event_last .rozklad_time_wrapper::before {
    top: 17px;
  }
}

.rozklad_event_title {
  font-size: 32px;
  font-weight: 700;
}

.rozklad_event_green {
  color: #22e243;
  font-size: 18px;
}

.rozklad_event_time_tag {
  height: 48px;
  background-color: #f0eee7;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 0 24px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rozklad_event_decription {
  font-size: 18px;
}

.rozklad_event_card_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rozklad_event_time {
  font-size: 58px;
  color: #22e243;
  font-weight: 800;
  display: flex;
  gap: 6px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.rozklad_event_time span {
  height: 80px;
  width: 70px;
  min-width: 70px;
  display: block;
  text-align: center;
  position: relative;
}

.rozklad_event_time span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(50% - 1px);
  background-color: #ffffff;
  border-radius: 3px;
  z-index: -1;
}
.rozklad_event_time span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(50% - 1px);

  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 0%,
    rgb(244, 244, 244) 100%
  );

  border-radius: 3px;
  z-index: -1;
}

.rozklad_event_time_colon {
  line-height: 70px;
}

@media (max-width: 1200px) {
  .rozklad_event_card {
    flex-direction: column;
    padding: 48px;
    padding-left: 64px;
  }

  .rozklad_event_time {
    font-size: 38px;
    gap: 4px;
    line-height: 56px;
    position: absolute;
    top: 24px;
  }
  .rozklad_event_time span {
    height: 54px;
    width: 48px;
    min-width: 48px;
  }
  .rozklad_event_time_colon {
    line-height: 48px;
  }

  .rozklad_time_wrapper {
    width: 212px;
  }

  .event_first .rozklad_time_wrapper::before {
    top: 72px;
  }

  .rozklad_time_wrapper::after {
    height: calc(100% + 15px);
    top: 75px;
  }
}
@media (max-width: 768px) {
  .rozklad_events {
    margin-top: 16px;
  }
  .rozklad_event {
    flex-direction: column;
  }

  .rozklad_event_time {
    justify-content: center;
  }

  .rozklad_event .rozklad_time_wrapper::after {
    display: none;
  }

  .rozklad_event .rozklad_time_wrapper::before {
    display: none;
  }

  .rozklad_time_wrapper {
    top: 80px;
    margin: auto;
  }

  .rozklad_event_card {
    flex-direction: column;
    padding: 32px;
    padding-top: 128px;
    text-align: center;
  }

  .rozklad_event_time_tag {
    margin: auto;
  }

  .rozklad_event_img img {
    width: 100%;
  }
}

.zero-brush img {
  width: 100%;
  margin-top: -32px;
}

/* cards_expo */

.cards_expo {
  padding: 64px 0;
  .row {
    display: flex;
    gap: 16px;
  }
}

.card-img {
  position: relative;
  img {
    width: 100%;
  }

  .card-img-description {
    position: absolute;
    bottom: 0;
    color: #ffffff;
    padding: 48px 54px;
    height: 300px;
    display: flex;
    flex-direction: column;
    h2 {
      font-size: 32px;
    }

    p {
      font-size: 18px;
    }
    .button {
      margin-top: auto;
      text-decoration: none;
      color: #000000;
      display: flex;
      align-items: center;
      height: 48px;
      font-size: 14px;
      padding-right: 32px;
      img {
        height: 11px;
        width: 11px;
        margin-left: 16px;
      }
    }
  }
}

@media (max-width: 1200px) {
  .card-img-description {
    padding: 32px 48px !important;
    height: auto !important;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .cards_expo {
    .row {
      flex-direction: column;
    }
  }
  .card-img-description {
    height: auto !important;
    padding: 32px 24px !important;
    gap: 12px;
    h2 {
      font-size: 20px !important;
    }

    p {
      font-size: 16px !important;
    }
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .hide-under-1200 {
    display: none;
  }
}

@media (min-width: 1201px) {
  .hide-over-1200 {
    display: none;
  }
}

#app_popup {
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  padding: 46px;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: all 180ms;
  min-width: 270px;
  .popup_content {
    display: flex;
    gap: 67px;
    margin-top: 0;
  }
  .popup_qr {
    min-width: 148px;
    display: flex;
    flex-direction: column;
    font-weight: 700;
    text-align: center;
    img {
      width: 100%;
      height: auto;
    }
  }

  h2 {
    font-size: 34px !important;
    margin-bottom: 16px;
  }
}

#app_popup.open {
  opacity: 1;
  pointer-events: all;
}

#app_popup_close {
  position: absolute;
  top: 22px;
  right: 30px;
  height: 20px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  #app_popup .popup_content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  #app_popup h2 {
    font-size: 24px !important;
  }
}

.zen-popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 24px;
}
.zen-popup-overlay[aria-hidden="false"] {
  display: flex;
}

.zen-popup {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  max-width: 588px;
  padding: 40px;
  width: 100%;
  border-radius: 20px;
  border-radius: 20px;
  background-color: #000000;

  isolation: isolate;
}
.zen-popup::before {
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 20px;
  border: 0.03020833vw solid;
  background-image: linear-gradient(180deg, #ffffff -74.36%, #00000000 75.85%);
  z-index: -9;
  width: 100%;
  height: 100%;
}
.zen-popup::after {
  position: absolute;
  content: "";
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 20px;
  background-image: linear-gradient(139deg, #222 4.64%, #000 93.85%);
  z-index: -9;
  width: 100%;
  height: 100%;
}
.zen-popup__close {
  appearance: none;
  border: 0;
  background: transparent;
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px;
  cursor: pointer;
  line-height: 0;
}
.zen-popup__close img {
  width: 24px;
  height: 24px;
  display: block;
}

.zen-popup__title {
  color: #fff;
  font-size: 34px;
  font-family: Nunito;
  margin: 0px;
  margin-bottom: 20px;
}
.zen-popup__text {
  color: #fff;
  font-size: 19px;
  margin: 0 0 20px 0;
  font-family: Nunito;
  font-size: 19px;
  color: #fff;
  margin-bottom: 0;
}
.zen-popup__stores {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.zen-popup__stores .download-button img {
  display: block;
  height: 44px;
}

.zen-popup__qr {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  color: #fff;
  text-align: center;
}
.zen-popup__qr img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.zen-popup__qr-text {
  font-size: 15px;
  font-family: Nunito;
  font-weight: 700;
}

@media (max-width: 640px) {
  .zen-popup {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 360px;
    padding: 24px 20px 28px;
  }
  .zen-popup__title {
    font-size: 28px;
    text-align: center;
  }
  .zen-popup__text {
    font-size: 17px;
    text-align: center;
    margin-bottom: 18px;
  }
  .zen-popup__stores {
    justify-content: center;
  }
  .zen-popup__qr {
    display: none;
  }
}

@media (min-width: 768px) {
  .zen-popup .download-buttons {
    display: none;
  }
}

.zen-popup .download-buttons img {
  filter: brightness(0) invert(1);
}

.button-arrow-down {
  display: flex;
  align-items: center;
  padding-right: 32px;
  img {
    height: 11px;
    width: 11px !important;
    margin-left: 16px;
    transform: rotate(90deg);
  }
}

.splide__pagination {
  width: fit-content;
  margin: auto !important;
  background: white;
  padding: 12px 14px !important;
  border-radius: 22px;
  bottom: -70px !important;
}

.splide__pagination__page {
  background-color: #888888 !important;
}

.splide__pagination__page.is-active {
  background-color: #22e243 !important;
}


.strefa_spotkan {
  padding-bottom: 164px;
  gap: 64px;
}