* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
}

html,
body {
  font-size: 16px;
  width: 100%;
  color: #26221e;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-right: 0 !important;
  margin: 0 !important;
  overflow-x: hidden;
}

html.modal-open,
body.modal-open,
html.menu-open,
body.menu-open {
  overflow: hidden !important;
}

html {
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 3px solid #ffbf47 !important;
  outline-offset: 2px;
  border-radius: 0px;
}

.skip-link {
  position: absolute;
  top: -2.5rem;
  /* move it above the viewport */
  left: 1rem;
  background: #ae0000;
  /* button-blue or your brand color */
  color: #fff !important;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: top 0.3s ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
  /* slide into view when focused */
  outline: 3px solid #ffbf47;
  /* optional high-contrast ring */
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

b,
strong {
  font-weight: 700;
}

button,
a {
  background: transparent;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

button:hover,
button:visited,
button:focus,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
}

img {
  width: 100%;
  position: relative;
}

span {
  font-family: inherit;
  font-weight: inherit;
}

p {
  font-family: inherit;
  font-weight: inherit;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

h1,
h2,
h3 {
  margin-top: 0;
  margin-block-end: 1em;
  font-family: "mBank", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

footer {
  background: #d9d9d9;
}

.wrapperMain {
  display: flex;
  flex-flow: column;
  width: 100%;
  margin: 0 auto;
}

.wrapperMain .sectionInner {
  width: 100%;
  margin: 0 auto;
  max-width: 1210px;
  position: relative;
}

.wrapperMain .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.wrapperMain .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: mBank;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 36px;
  padding: 8px 24px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.wrapperMain .btnSmall {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 36px;
  padding: 6px 24px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.wrapperMain .mobile-only {
  display: none;
}

.wrapperMain .btnPink {
  border: 1px solid #ff0eb2;
  color: #fff;
  font-size: 20px;
  background-color: #ff0eb2;
  padding: 8px;
}

.wrapperMain .btnPink:hover {
  color: #ff0eb2;
  background-color: #fff;
}

.wrapperMain .btnGreen {
  width: 350px;
  height: 54px;
  color: #00f;
  font-size: 16px;
  background-color: #00ff00;
}

.wrapperMain .btnGreen:hover {
  color: #00ff00;
  background-color: #00f;
}

.wrapperMain .btnCTA {
  padding: 17px 42px;
  width: 100%;
  max-width: 255px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #ae0000;
  z-index: 9;
  transition: 0.3s all ease-in-out;
}

.wrapperMain .btnContainer {
  width: 0;
  height: 60px;
  position: relative;
  left: -175px;
}

.wrapperMain .btnContainer .btnContent {
  width: 0;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.wrapperMain .btnSticky {
  width: 350px;
  height: 54px;
  border: 4px solid #fff;
  color: #00f;
  font-size: 16px;
  background-color: #00ff00;
  z-index: 100;
  transition: 0.3s all ease-in-out;
  top: -50px;
}

.wrapperMain .btnSticky:hover {
  color: #00ff00;
  background-color: #00f;
}

.wrapperMain .btnSticky.fixed {
  top: 30px;
  left: calc(50% - 175px);
  position: fixed;
  animation-duration: 0.5s;
  animation-name: shakeBtn;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

.wrapperMain .btnSticky.sticky {
  top: -50px;
  left: calc(50% - 175px);
  position: sticky;
}

.wrapperMain .btnSticky.swipe {
  animation-duration: 9s;
  animation-name: swipeBtn;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}

.wrapperMain .btnSticky.shake {
  animation-duration: 0.5s;
  animation-name: shakeBtn;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
}

.wrapperMain .btnSticky.goUp {
  top: -70px;
}

@keyframes shakeBtn {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(3deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  35% {
    transform: rotate(7deg);
  }

  45% {
    transform: rotate(-8deg);
  }

  65% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(-5deg);
  }

  85% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes swipeBtn {
  0% {
    transform: translateX(0px);
  }

  10% {
    transform: translateX(8px);
  }

  20% {
    transform: translateX(-10px);
  }

  30% {
    transform: translateX(6px);
  }

  40% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(0px);
  }
}

.wrapperMain .btnBlack {
  border: 1px solid #000;
  color: #fff;
  font-size: 20px;
  background-color: #000;
}

.wrapperMain .btnBlack:hover {
  color: #000;
  background-color: #fff;
}

/* Overlay wrapper (hidden by default) */
.modal-overlay {
  position: fixed;
  inset: 0;
  /* shorthand for top/right/bottom/left */
  background: rgba(0, 0, 0, 0.85);
  display: none;
  /* hide by default */
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99999;
}

/* visible state */
.modal-overlay.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.modal {
  background: #000;
  color: #fff;
  border-radius: 15px;
  max-width: 1200px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  outline: none;
  /* allow JS-managed focus */
}

/* Modal content scroll area */
.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 50px;
}

/* focus styles for interactive elements */

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 50px;
}

/* for Firefox */
.modal-content {
  scrollbar-width: thin;
  /* make it thin */
  scrollbar-color: #ffffff #000000;
  /* thumb color / track color */
}

/* for WebKit (Chrome, Edge, Safari) */
.modal-content::-webkit-scrollbar {
  width: 6px;
  /* overall thickness */
  background-color: #000000;
  /* track background */
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  /* thumb color */
  border-radius: 3px;
  /* rounded ends */
  min-height: 20px;
  /* ensure it’s clickable */
}

.modal-content::-webkit-scrollbar-track {
  background-color: #000000;
  /* track background */
}

/* close button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

/* make sure the page behind can scroll if needed */
body.modal-open {
  overflow: hidden;
}

.modal .promo-grid {
  display: flex;
  gap: 25px;
}

/* centre the single‐item on mobile */
.modal .promo-single {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* each promo card */
.modal .promo-item {
  color: #fff;
  text-align: left;
}

/* the circle with amount */
.modal .promo-circle {
  width: 239px;
  height: 239px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 66px;
  font-weight: bold;
  line-height: 1;
  font-family: "mBank", sans-serif;
}

/* circle colors by promo */
.modal .promo-item.red .promo-circle {
  background: #e90a0a;
}

.modal .promo-item.orange .promo-circle {
  background: #ff8600;
}

.modal .promo-item.blue .promo-circle {
  background: #0065b1;
}

.modal .promo-item.green .promo-circle {
  background: #008520;
}

.modal .promo-item.red .promo-title {
  color: #e90a0a;
}

.modal .promo-item.orange .promo-title {
  color: #ff8600;
}

.modal .promo-item.blue .promo-title {
  color: #0065b1;
}

.modal .promo-item.green .promo-title {
  color: #008520;
}

/* titles under circle */
.modal .promo-title {
  font-size: 20px;
  margin: 0 0 10px;
  font-family: "mBank", sans-serif;
}

/* custom bullet list */
#popup1 ul {
  list-style: none;
  padding-left: 0;
  font-weight: 600;
}

#popup1 ul li {
  position: relative;
  padding-left: 20px;
  /* Space for custom bullet */
  margin-bottom: 15px;
  font-family: "mBank", sans-serif;
}

#popup1 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.modal .promo-item.red ul li::before {
  background: #e90a0a;
}

.modal .promo-item.orange ul li::before {
  background: #ff8600;
}

.modal .promo-item.blue ul li::before {
  background: #0065b1;
}

.modal .promo-item.green ul li::before {
  background: #008520;
}

/* final note text */
.modal .promo-note {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

#popup2 .columns {
  gap: 50px;
  align-items: center;
}

#popup2 .columnLeft {
  max-width: 240px;
}

#popup2 .promo-title {
  color: #0065b1;
}

#popup2 .promo-circle {
  width: 239px;
  height: 239px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 66px;
  font-weight: bold;
  line-height: 1;
  font-family: "mBank", sans-serif;
  background: #0065b1;
}

#popup3 .columns {
  gap: 50px;
  align-items: center;
}

#popup3 .columnLeft {
  max-width: 240px;
}

#popup3 .promo-title {
  color: #008520;
}

#popup3 .promo-circle {
  width: 239px;
  height: 239px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 66px;
  font-weight: bold;
  line-height: 1;
  font-family: "mBank", sans-serif;
  background: #008520;
}

#popup3 ul {
  list-style: none;
  padding-left: 0;
  font-weight: 600;
}

#popup3 ul li {
  position: relative;
  padding-left: 20px;
  /* Space for custom bullet */
  margin-bottom: 15px;
  font-family: "mBank", sans-serif;
}

#popup3 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #008520;
  border-radius: 50%;
}

#popup4 .columns {
  gap: 50px;
  align-items: center;
}

#popup4 .columnLeft {
  max-width: 240px;
}

#popup4 .promo-title {
  color: #0065b1;
}

#popup4 .promo-circle {
  width: 239px;
  height: 239px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 66px;
  font-weight: bold;
  line-height: 1;
  font-family: "mBank", sans-serif;
  background: #0065b1;
}

#popup4 ul {
  list-style: none;
  padding-left: 0;
  font-weight: 600;
}

#popup4 ul li {
  position: relative;
  padding-left: 20px;
  /* Space for custom bullet */
  margin-bottom: 15px;
  font-family: "mBank", sans-serif;
}

#popup4 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: #0065b1;
  border-radius: 50%;
}

@media (max-width: 450px) {
  .wrapperMain .btnGreen {
    width: 320px;
  }
}

@media (max-width: 400px) {
  .wrapperMain .btnGreen {
    width: 280px;
  }
}

@media (max-width: 360px) {
  .wrapperMain .btnContainer {
    left: -140px !important;
  }

  .wrapperMain .btnSticky {
    width: 280px;
  }

  .wrapperMain .btnSticky.fixed {
    left: calc(50% - 140px);
  }

  .wrapperMain .btnSticky.sticky {
    left: calc(50% - 140px);
  }
}

.wrapperMain #header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: column;
  z-index: 99;
  padding: 66px 40px 20px;
  position: absolute;
  top: 0;
  left: 0;
  /**
  background: linear-gradient(182.55deg, rgba(184, 189, 222, 0) 2.13%, #B8BDDE 70.71%);
**/
}



.wrapperMain #header .headerMenuContainer {
  width: 100%;
  max-height: 0;
  height: auto;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
  padding: 0 20px;
}

.wrapperMain #header .headerMenuContainer.active {
  max-height: 80px;
}

.wrapperMain #header .headerMenuContainer .headerMenuContent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 0 0;
}

.wrapperMain #header .headerWrapper {
  max-width: 1210px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.headerColoStripe {
  width: 100%;
}

#header .headerLogoContainer {
  display: flex;
  gap: 40px;
  align-items: center;
}

#header .headerNavCTA {
  display: flex;
  align-items: center;
  margin-left: auto;
}

header .headerNavContainer {
  margin-left: auto;
}

.wrapperMain #header .headerNav {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  padding-right: 40px;
}

.wrapperMain #header .headerNav li a,
header .skip-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.wrapperMain #header .skip-link {
  margin-left: auto;
  align-self: flex-start;
}

.wrapperMain #header .headerWrapper .headerBtnContainer .btn {
  width: 190px;
}

.wrapperMain #header .headerWrapper .headerBtnContainer .btn:nth-child(3) {
  margin: 0 20px;
}

.wrapperMain #header .headerWrapper .logo {
  width: 155px;
  flex-shrink: 0;
  z-index: 99;
}

.wrapperMain #header .headerWrapper .off_festival_logo {
  width: 170px;
}

.wrapperMain #header .headerWrapper .visa_logo {
  width: 185px;
}

/** WCAG Styles  **/

.wcag-toggle {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

/* Hide the native checkbox */
.toggle-switch input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* The outer pill */
.toggle-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 135px;
  height: 45px;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

/* Pill background (drawn behind everything) */
.toggle-switch .pill-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 135px;
  height: 45px;
  border: 1px solid #939598;
  border-radius: 30px;
  background-color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  z-index: 0;
}

/* The knob */
.toggle-switch .toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 39px;
  height: 39px;
  background: linear-gradient(to right, #fff9ff 0%, #d1d3d4 100%);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Change the pill’s background and knob position when checked */
.toggle-switch input:checked~.pill-background {
  background-color: #37fb6f;
  /* bright green */
  border-color: #006838;
}

.toggle-switch input:checked~.toggle-slider {
  transform: translateX(93px);
  background: linear-gradient(to right, #fff9ff 0%, #d1d3d4 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.toggle-switch input:checked~.toggle-label {
  left: 20px;
  transition: all 0.3s ease;
}

/* Make the text label sit above the pill */
.toggle-switch .toggle-label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 2;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  pointer-events: none;
  /* do not block clicks */
  user-select: none;
  font-family: Montserrat, Arial, sans-serif;
  transition: all 0.3s ease;
}

/* Adjust text color when checked */
.toggle-switch input:checked~.toggle-label {
  color: #000000;
}

/* Disabled state */
.toggle-switch input:disabled~.pill-background,
.toggle-switch input:disabled~.toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-switch input:disabled~.toggle-label {
  color: #888888;
}

.toggle-switch input:focus-visible~.toggle-slider {
  outline: 2px solid #3898ec;
  outline-offset: 2px;
}

/* hide ring when it’s not “keyboard” focus */
.toggle-switch input:focus:not(:focus-visible)~.toggle-slider {
  outline: none;
}

/* Example: if you want the body to gain a class “wcag-compliant” when checked */
.wcag-compliant {
  /* your WCAG-specific styles go here */
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 400px) {
  .wrapperMain #header .headerWrapper .logo {
    width: 121px;
  }

  .wrapperMain #header .headerWrapper .btnMenuMobile {
    max-width: 140px;
  }

  .wrapperMain #header .headerWrapper .btnMenuMobile .menuText {
    font-size: 22px;
  }

  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 24px;
    line-height: 36px;
    padding: 0 20px 1px 20px;
    bottom: -70px;
  }
}

@media (max-width: 350px) {
  .wrapperMain #header .headerWrapper .btnMenuMobile {
    max-width: 110px;
  }

  .wrapperMain #header .headerWrapper .btnMenuMobile .menuText {
    font-size: 18px;
  }

  .wrapperMain #header .headerWrapper .btnMenuMobile .menuArrow {
    width: 14px;
    height: 29px;
  }

  .wrapperMain #header .headerMenuContainer .headerMenuContent {
    padding: 20px 0 0 0;
  }

  .wrapperMain #header .headerMenuContainer .headerMenuContent .btnPink {
    font-size: 16px;
  }

  .wrapperMain #header .headerMenuContainer .headerMenuContent .btn:nth-child(2) {
    margin: 0 0 0 5px;
  }
}

/** Hamburger Menu **/

.headerNav {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.headerNav a {
  text-decoration: none;
  color: #333;
}

/* Hamburger */
.hamburger {
  position: relative;
  width: 52px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span::before {
  content: "";
  top: -8px;
}

.hamburger span::after {
  content: "";
  top: 8px;
}

/* Animate into “X” */
.hamburger.open span {
  background: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
  background: #000;
}

.hamburger.open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #000;
}

.wrapperMain #header .headerNavCTA.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  padding: 6rem 1rem 1rem;
  z-index: 9;
}

.wrapperMain #header .headerWrapper .headerNavContainer.open .headerNav {
  flex-direction: column;
  gap: 1.5rem;
}

/* Pseudo-overlay on <body> */
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: auto;
  z-index: 1;
}

/* Make sure nav is above the overlay */
.headerNavContainer.open {
  z-index: 1000;
}

/* Responsive breakpoint */

.wrapperMain #header .headerNavCTA {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  z-index: 1000;
  transition: right 0.3s ease;
  right: -300px;
}

.hamburger {
  display: block;
}

header .headerNavContainer {
  margin: 0px;
}

.wrapperMain #header .headerNav {
  flex-direction: column;
  padding-right: 0;
  padding-top: 20px;
}

.wrapperMain #header .btn.btnCTA {
  margin-left: 0;
  width: 100%;
  margin-top: auto;
}

/** Global **/

section,
.section {
  padding: 60px 40px;
  position: relative;
}

section .columns {
  display: flex;
  gap: 40px;
  position: relative;
  align-items: center;
}

section .columns .column {
  flex: 1;
  min-width: 0;
  position: relative;
}

.sectionContent {
  font-size: 24px;
  font-weight: 600;
  font-family: "mBank", sans-serif;
}

.wrapperMain #hero {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 190px 40px 60px 40px;
  background: url(../img/hero_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden;
  z-index: 1;
}

.wrapperMain #hero .sectionInner {
  z-index: 1;
}

.wrapperMain #hero:after {
  content: "";
  position: absolute;
  width: 1250px;
  height: 1250px;
  right: -419px;
  top: -537px;
  background: url(../img/hero_bg_overlay.svg);
  background-size: contain;
  z-index: -1;
}


.wrapperMain #hero .columnLeft .btn.btnCTA {
  width: 260px;
}

.chat-bubble {
  position: relative;
  display: inline-block;
  padding: 26px 40px;
  background: #fff;
  border-radius: 80px 80px 80px 0px;
  box-shadow: -10px 10px 10px 0px #00000033;
}

.chat-bubble::before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 24px solid #fff;
  border-right: 24px solid transparent;
  filter: drop-shadow(-10px 10px 10px #00000033);
  z-index: 2;
}

.chat-bubble.right::before {
  border-right: transparent;
  border-left: 24px solid transparent;
  right: 0;
  left: auto;
}

#hero .chat-bubble {
  max-width: 720px;
}

#hero .chat-bubble h1 {
  margin-bottom: 5px;
}

#hero .chat-bubble p {
  margin: 5px 0px;
}

#festival-card-promo .columnRight {
  max-width: 460px;
}

#festival-card-promo h2 {
  margin-top: 42px;
  margin-bottom: 25px;
}

#festival-card-promo .sectionInner {
  background: #26221e;
  border-radius: 100px;
  padding: 55px;
}

#festival-card-promo .sectionContent.bottom {
  max-width: 400px;
}

#festival-card-promo .btn.btnCTA {
  margin-top: 35px;
}

#relax-chat {
  padding-top: 20px;
  padding-bottom: 20px;
}

#relax-chat .top-bubble {
  max-width: 920px;
  text-align: center;
  background: #26221e;
  padding: 40px;
  border-radius: 80px;
  margin: auto;
  z-index: 1;
  position: relative;
}

#relax-chat .top-bubble h2 {
  margin-bottom: 20px;
}

#relax-chat .top-bubble p {
  font-weight: 400;
  max-width: 850px;
  margin-bottom: 5px;
}

#relax-chat .chat-bubbles {
  position: relative;
  padding: 215px 30px 80px 30px;
  border-radius: 100px;
  background: url(../img/blured_bg.jpg);
  background-size: cover;
  margin-top: -150px;
}

#relax-chat .chat-bubbles:after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 150px);
  left: 0;
  top: -150px;
  display: none;
}

#relax-chat .chat-bubbles-inner {
  max-width: 800px;
  margin: auto;
}

#relax-chat .chat-bubble p {
  margin: 0;
  font-size: 32px;
}

#relax-chat .chat-bubble.right {
  text-align: right;
  border-radius: 80px 80px 00px 80px;
  max-width: 660px;
  float: right;
}

#relax-chat .chat-bubble:not(:last-child) {
  margin-bottom: 50px;
}

#relax-chat .chat-bubble:last-child {
  max-width: 570px;
}

#artists-lineup {
  padding: 60px 0px 20px 0px;
  display: flex;
  flex-direction: column;
}

#artists-lineup .sectionInner.rotating-artist-list {
  max-width: 100%;
  background: #000000;
  padding: 70px 0px;
}

#artists-lineup h2 {
  text-align: center;
  margin-bottom: 45px;
  padding: 0 40px;
}

#artists-lineup .stage-wrapper {
  max-width: 1800px;
  margin: auto;
}

#artists-lineup .stage-wrapper:last-child {
  margin-top: 110px;
}

#artists-lineup .stage-wrapper h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  padding: 0px 40px;
}

#artists-lineup .ticker {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#artists-lineup .ticker__inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: artists-ticker-scroll 30s linear infinite;
}

#artists-lineup .ticker__inner span {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  position: relative;
  padding-left: 40px;
  font-weight: 700;
  font-family: "mBank", sans-serif;
}

#artists-lineup .ticker__inner span::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #e90a0a;
  display: inline-block;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes artists-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }

  /* Move by full width of original content */
}

/* Accessibility: Reduce motion for sensitive users */
@media (prefers-reduced-motion: reduce) {
  #artists-lineup .ticker__inner {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* hide all duplicated items */
  #artists-lineup .ticker__inner .duplicate {
    display: none;
  }
}

#artists-lineup .lines_separator.flipped {
  transform: rotate(180deg);
}

#artists-lineup .lines_separator {
  width: 100vw;
}

section#jazgot-promo {
  padding-bottom: 40px;
}

#jazgot-promo .sectionInner {
  padding: 55px 55px 55px 300px;
  background-color: #26221e;
  border-radius: 100px;
  background-image: url(../img/microphone_stand.png);
  background-size: 180px;
  background-repeat: no-repeat;
  background-position: 65px 65px;
}


#jazgot-promo h3 {
  font-size: 40px;
}

#jazgot-promo .sectionInner p {
  font-size: 24px;
  font-weight: 400;
  font-family: "mBank", sans-serif;
}

#jazgot-promo .sectionInner .btn.btnCTA {
  margin: 40px 0px 50px 0px;
}

#card-benefits {
  padding-bottom: 0px;
}

#card-benefits h2 {
  text-align: center;
}

.price-highlight {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: bold;
  font-family: "mBank", sans-serif;
  margin-bottom: 70px;
}

.price-zero {
  font-size: 260px;
  line-height: 200px;
  display: inline-block;
  background-image: url("../img/blured_bg.jpg");
  background-size: 300%;
  background-position: 96% 53%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.price-zl {
  font-size: 140px;
  line-height: 120px;
  margin-left: 8px;
  display: inline-block;
  background-image: url("../img/blured_bg.jpg");
  background-size: cover;
  background-position: center;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

#card-benefits .columns {
  margin: 70px auto 0 auto;
  max-width: 1110px;
}

#card-benefits .columnLeft {
  padding-bottom: 70px;
}

#card-benefits .columnRight {
  align-self: flex-end;
  display: flex;
  justify-content: center;
}

#card-benefits .columnRight .mbank-card-apple-wallet {
  max-width: 460px;
}

#account-offer {
  padding-top: 100px;
  padding-bottom: 100px;
}

#account-offer .card-action-box h2 {
  text-align: center;
  max-width: 450px;
  margin: 0px auto 40px auto;
}

#account-offer .card-action-box p {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#account-offer .card-action-box .btn.btnCTA {
  margin: 40px auto 0px auto;
}

#account-offer .card-action-box.bottom {
  margin-top: 100px;
}

/* Container & highlight text */
#savings-highlights {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f6f6f6;
}

#savings-highlights h2 {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 30px;
}

#savings-highlights .savings-highlights__grid {
  display: grid;
  gap: 0 24px;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 1025px) {
  #savings-highlights .savings-highlights__panel {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #savings-highlights .savings-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Panels 1 & 2 live on row 2, full width */
  #savings-highlights .savings-highlights__cell--panel1,
  #savings-highlights .savings-highlights__cell--panel2 {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  /* Panels 3 & 4 live on row 4, full width */
  #savings-highlights .savings-highlights__cell--panel3,
  #savings-highlights .savings-highlights__cell--panel4 {
    grid-row: 4;
    grid-column: 1 / -1;
  }
}

#savings-highlights .savings-highlights__cell:not(.savings-highlights__panel) {
  display: flex;
}

#savings-highlights .savings-highlights__cell:not(.savings-highlights__panel).is-open .savings-highlights__card-body {}

#savings-highlights .savings-highlights__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

#savings-highlights .savings-highlights__card-body {
  flex: 1;
  transition: all 0.1s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#savings-highlights .savings-highlights__card-body:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #efd063;
  transform: translateY(-100%);
  transition: all 0.2s ease;
  z-index: -1;
}

#savings-highlights .savings-highlights__cell:not(.savings-highlights__panel).is-open .savings-highlights__card-body:after {
  transform: translateY(0);
}

#savings-highlights .savings-highlights__cell:not(.savings-highlights__panel).is-open .savings-highlights__card-body {
  border-radius: 0;
}

/* Card styling */
#savings-highlights .savings-highlights__card-header {
  background: #efd063;
  padding: 32px;
  border-bottom: none;
  border-radius: 24px 24px 0 0;
}

#savings-highlights .savings-highlights__amount {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "mBank", sans-serif;
}

#savings-highlights .savings-highlights__amount .currency {
  font-size: 1.5rem;
}

#savings-highlights .savings-highlights__card-body {
  background: #fff;
  padding: 24px 32px 32px;

  border-radius: 0 0 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

#savings-highlights .savings-highlights__summary {
  font-size: 1.45rem;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  margin: 0;
}

/* Toggle (“sprawdź szczegóły”) */
#savings-highlights .savings-highlights__toggle {
  background: none;
  border: none;
  font: inherit;
  color: #0065b1;
  text-decoration: none;
  cursor: pointer;
  margin-top: 32px;
  font-weight: 600;
  font-family: "mBank", sans-serif;
  text-align: left;
}

/* Panel content */

#savings-highlights .savings-highlights__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  box-shadow: 0px 15px 30px 0px #26221e1a;
  border-radius: 0 0 24px 24px;
}

#savings-highlights .savings-highlights__panel-inner {
  background: #fff;
  border-top: 4px solid #efd063;
  border-radius: 0 0 24px 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

#savings-highlights .savings-highlights__panel[hidden] {
  display: none;
}

#savings-highlights .savings-highlights__panel.is-open[style="max-height: none;"] {
  overflow: visible;
}

#savings-highlights .savings-highlights__panel-title {
  margin-bottom: 1.5rem;
}

#savings-highlights .savings-highlights__panel-list {
  padding-left: 1.25rem;
  margin: 0;
}

#savings-highlights .savings-highlights__panel-note,
#savings-highlights .savings-highlights__panel-text {
  margin: 0.5rem 0;
  font-style: italic;
}

/* Test button */
#savings-highlights .savings-highlights__test-btn {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #005a9c;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}

#savings-highlights .savings-highlights__test-btn:focus {
  outline: 3px solid #000;
  outline-offset: 2px;
}

/* Collapse (“zwiń”) */
#savings-highlights .savings-highlights__collapse {
  margin: 24px auto 0 auto;
  background: none;
  border: none;
  font: inherit;
  color: #ae0000;
  cursor: pointer;
  font-family: "mBank", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

#savings-highlights .savings-highlights__collapse img {
  display: inline-block;
  width: 24px;
}

/* ---------- Offers in Panel 1 ---------- */
#savings-highlights .sh-panel__offers {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  border-radius: 16px;
  padding: 24px;
}

#savings-highlights .sh-offer {
  display: grid;
  grid-template-columns: auto 1fr;
  overflow: hidden;
  border-bottom: 1px solid #d8d8d8;
}

#savings-highlights .sh-offer.sh-offer--month1 {
  border-bottom: 1px solid #d8d8d8;
}

#savings-highlights .sh-offer__label {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  padding: 8px 16px 8px 8px;
  font-size: 0.75rem;
  color: #6e6e6e;
  display: flex;
  align-items: center;
  justify-content: center;
}

#savings-highlights .sh-offer__details {
  padding: 20px;
  border-left: 1px solid #d8d8d8;
}

#savings-highlights .sh-offer__title {
  font-family: "mBank", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#savings-highlights .sh__list {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  list-style-type: disc;
}

#savings-highlights .sh__list li {}

/* ---------- Callout box (Panels 2 & 3) ---------- */
#savings-highlights .savings-highlights__callout {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 0.5rem;
  padding: 16px;
  margin-top: 1rem;
}

#savings-highlights .savings-highlights__callout-icon {
  width: 1rem;
  margin-right: 0.5rem;
  display: inline-block;
}

#savings-highlights .savings-highlights__callout-text {
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---------- Panel bonus bar (Panel 1) ---------- */
#savings-highlights .savings-highlights__panel-bonus {
  background: #0065b1;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  font-weight: 600;
  margin-top: 20px;
  text-align: left;
  font-size: 1.25rem;
  font-family: "mBank", sans-serif;
}

#savings-highlights .sh-offer__disclaimer {
  font-size: 0.75rem;
  font-weight: 600;
}

#savings-highlights .savings-highlights__reminder {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-top: 32px;
}

#savings-highlights .savings-highlights__reminder img {
  width: 24px;
  margin-right: 8px;
  display: inline-block;
}

#savings-highlights .savings-highlights__reminder p {
  margin: 0;
}

#referral-program {
  padding-top: 80px;
  padding-bottom: 80px;
}

#referral-program .columns {
  max-width: 1210px;
  margin: auto;
}

#referral-program .columnRight {
  max-width: 420px;
}

ul.square-bullet {
  list-style: none;
  padding-left: 0;
}

ul.square-bullet li {
  font-weight: 600;
  font-size: 24px;
  font-family: "mBank", sans-serif;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

ul.square-bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  background-color: #e90a0a;
  border-radius: 0;
}

.section-separator {
  text-align: center;
}

.section-separator img {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

#free-services {
  padding-top: 80px;
  padding-bottom: 80px;
}

#free-services .columns {
  max-width: 1210px;
  margin: auto;
}

#free-services .columnLeft {
  max-width: 420px;
}





ul.circle-bullet {
  list-style: none;
  padding-left: 0;
  font-size: 24px;
  font-weight: 600;
}

ul.circle-bullet li {
  position: relative;
  padding-left: 30px;
  /* Space for custom bullet */
  margin-bottom: 15px;
  font-family: "mBank", sans-serif;
}

ul.circle-bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 20px;
  height: 20px;
  background-color: #e90a0a;
  border-radius: 50%;
}

#zero-zloty .list-container {
  margin-top: 100px;
}

#zero-zloty .list-container h2 {
  font-size: 60px;
}

#zero-zloty .list-container .colored_stripe_small {
  width: 615px;
  margin-top: 50px;
  margin-bottom: 10px;
  float: right;
}




.wrapperMain #section11 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.wrapperMain #section11 h2 {
  font-size: 24px;
  color: #000;
}

#faq-2 .title {
  text-align: center;
  font-style: normal;
  font-weight: 600;
}

#faq-2 .title {
  margin: 0 0;
}

.wrapperMain #section11 .mainWrapper {
  display: flex;
  column-gap: 50px;
}

.wrapperMain #section11 .mainWrapper .docWrapper {
  display: flex;
  flex-direction: column;
}

.wrapperMain #section11 .mainWrapper .docWrapper .element {
  display: flex;
  margin: 0 0 20px 0;
  align-items: flex-start;
}

.wrapperMain #section11 .mainWrapper .docWrapper .element .img {
  width: 16px;
  margin: 2px 15px 0 0;
  flex-shrink: 0;
}

.wrapperMain #section11 .mainWrapper .docWrapper .element .text {
  color: #000000;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5em;
  font-family: "Montserrat", sans-serif;
  align-self: center;
  text-decoration: underline;
}

.wrapperMain #section11 .mainWrapper .docWrapper.margin {
  margin: 0 50px 0 0;
}

@media (max-width: 750px) {
  .wrapperMain #section11 .mainWrapper {
    flex-direction: column;
  }

  .wrapperMain #section11 .mainWrapper .docWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .wrapperMain #section11 .mainWrapper .docWrapper.margin {
    margin: 0;
  }
}

@media (max-width: 580px) {
  .wrapperMain #section11 {
    width: 100%;
  }

  .wrapperMain #section11 .mainWrapper .docWrapper .element {
    margin: 0 0 12px 0;
  }
}

#section11 .sectionInner {
  display: flex;
  flex-direction: column;
}

/* Hide extra documents when collapsed */
#section11 #extra-documents[hidden] {
  display: none;
}

/* Toggle (“pokaż więcej” / “zwiń”) button */
#section11 .docs-toggle {
  margin-top: 30px;
  background: none;
  border: none;
  font: inherit;
  color: #ae0000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  width: max-content;
  align-self: center;
}

/* Chevron icon sizing & rotation */
#section11 .docs-toggle__icon {
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  transition: transform 200ms ease;
  transform: rotate(180deg);
}

#section11 .docs-toggle[aria-expanded="true"] .docs-toggle__icon {
  transform: rotate(0deg);
}

#section12 .disclaimer-wrapper {
  display: flex;
  flex-direction: column;
}

/* Hide the detailed disclaimer when collapsed */
#section12 #section12-details[hidden] {
  display: none;
}

/* Toggle (“pokaż więcej” / “zwiń”) button */
#section12 .disclaimer-toggle {
  margin-top: 30px;
  background: none;
  border: none;
  font: inherit;
  color: #ae0000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  width: max-content;
  align-self: center;
}

/* Chevron icon sizing & rotation */
#section12 .disclaimer-toggle__icon {
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  transition: transform 200ms ease;
  transform: rotate(180deg);
}

#section12 .disclaimer-toggle[aria-expanded="true"] .disclaimer-toggle__icon {
  transform: rotate(0deg);
}

.wrapperMain #section12 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapperMain #section12 .text {
  font-family: Montserrat;
  font-size: 14px;
  line-height: 1.5em;
  font-style: normal;
  font-weight: 600;
}

.wrapperMain #section12 .text * {
  line-height: 1.5em;
}

.wrapperMain #section12 a {
  color: #26221e;
  font-family: Montserrat;
  font-style: normal;
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
}

.wrapperMain #section12 a:hover {
  color: #ae0000;
}



section#phone .ornament {
  position: absolute;
  z-index: -1;
}

section#phone .ornament.ornament-1 {
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 50px;
}

section#phone .ornament.ornament-2 {
  right: 0;
  top: 0;
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
  width: 60px;
}

section#phone .ornament.ornament-3 {
  right: 0;
  top: 0;
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
  width: 70px;
}

@media (min-width: 576px) {
  section#phone .ornament.ornament-1 {
    left: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  section#phone .ornament.ornament-2 {
    right: 0;
    top: 0;
    -webkit-transform: translate(80%, -80%);
    transform: translate(80%, -80%);
  }

  section#phone .ornament.ornament-3 {
    right: 0;
    top: 0;
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
  }
}

@media (min-width: 992px) {
  section#phone .ornament.ornament-1 {
    left: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 78px;
  }

  section#phone .ornament.ornament-2 {
    right: 0;
    top: 0;
    -webkit-transform: translate(80%, -80%);
    transform: translate(80%, -80%);
    width: 96px;
  }

  section#phone .ornament.ornament-3 {
    right: 0;
    top: 0;
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
    width: 143px;
  }
}

section#phone p {
  color: #00f;
  font-family: mBank;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.075px;
  line-height: 120%;
}

section#phone p span {
  font-size: 32px;
  letter-spacing: -0.16px;
  line-height: 18px;
}

@media (min-width: 768px) {
  section#phone p {
    font-size: calc(1.2875rem + 0.45vw);
    letter-spacing: -0.13px;
    line-height: 123.077%;
  }

  section#phone p span {
    font-size: calc(1.425rem + 2.1vw);
    letter-spacing: -0.24px;
    line-height: 32px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  section#phone p span {
    font-size: 3rem;
  }

  section#phone p {
    font-size: 1.625rem;
  }
}

/* Spacing utilities */
#phone {
  padding: 57px 0;
}

@media (min-width: 768px) {
  #phone {
    padding: 122px 0;
  }
}

#phone img {
  width: 100%;
}

#phone .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

#phone .mb-5 {
  margin-bottom: 3rem !important;
}

#phone .mt-3 {
  margin-top: 1rem !important;
}

#phone.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

#phone .position-relative {
  position: relative !important;
}

#phone .d-flex {
  display: flex !important;
}

#phone .flex-row {
  flex-direction: row !important;
}

#phone .justify-content-center {
  justify-content: center !important;
}

#phone .align-items-center {
  align-items: center !important;
}

#phone .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

#phone .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  #phone .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  #phone .mt-sm-3 {
    margin-top: 1rem !important;
  }

  #phone .col-sm-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  #phone .order-sm-last {
    order: 12;
  }

  #phone .col-sm-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}

@media (min-width: 992px) {
  #phone .mt-lg-5 {
    margin-top: 3rem !important;
  }
}

#phone .content {
  width: 100%;
  max-width: 1060px;
}

#faq-2.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

#faq-2 .pt-5 {
  padding-top: 3rem !important;
}

#faq-2 .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

#faq-2 .mb-5 {
  margin-bottom: 3rem !important;
}

#faq-2 .mt-sm-3 {
  margin-top: 1rem !important;
}

#faq-2 .mt-lg-0 {
  margin-top: 0 !important;
}

#faq-2 .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

#faq-2 .py-sm-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

#faq-2 .pb-3 {
  padding-bottom: 1rem !important;
}

#faq-2.container-fluid {
  width: 100%;
  padding-top: 80px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1050px) {
  #faq-2.container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 800px) {
  #faq-2.container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }
}

#faq-2 .position-relative {
  position: relative !important;
}

#faq-2 .d-flex {
  display: flex !important;
}

#faq-2 .flex-row {
  flex-direction: row !important;
}

#faq-2 .align-items-center {
  align-items: center !important;
}

#faq-2 .justify-content-center {
  justify-content: center !important;
}

#faq-2 .justify-content-between {
  justify-content: space-between !important;
}

#faq-2 .faq-question-btn {
  width: 100%;
  cursor: pointer;
  padding: 24px;
}

#faq-2 .faq-question-btn .row {
  flex-wrap: nowrap;
  justify-content: space-between;
}

#faq-2 .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  width: 100%;
}

#faq-2 .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

#faq-2 .col-9 {
  flex: 0 0 auto;
  width: 75%;
  font-size: 16px;
  font-weight: 600;
}

#faq-2 .col-auto {
  flex: 0 0 auto;
  width: auto;
  display: flex;
}

#faq-2 .h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

#faq-2 .text-pink {
  color: #ff0eb2 !important;
  /* Assuming a pink color */
}

@media (min-width: 576px) {
  #faq-2 .mt-sm-3 {
    margin-top: 1rem !important;
  }

  #faq-2 .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (min-width: 992px) {
  #faq-2 .mt-lg-0 {
    margin-top: 0 !important;
  }
}

section#faq,
section#faq-2 {
  color: #000;
  font-size: 16px;
  font-weight: 300;
}

section#faq .heading-img,
section#faq-2 .heading-img {
  margin-bottom: 8px;
  width: 38px;
}

section#faq .h1 span:first-of-type,
section#faq h1 span:first-of-type,
section#faq-2 .h1 span:first-of-type,
section#faq-2 h1 span:first-of-type {
  color: #000;
  display: block !important;
  padding: 0.3em 0 !important;
}

section#faq .chevron-wrapper,
section#faq-2 .chevron-wrapper {
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

section#faq .fb,
section#faq-2 .fb {
  height: 29px;
  width: 28px;
}

section#faq strong,
section#faq-2 strong {
  font-weight: 700;
}

section#faq .single-faq,
section#faq-2 .single-faq {
  position: relative;
}

section#faq .single-faq .chevron,
section#faq-2 .single-faq .chevron {
  width: 24px;
}

@media (min-width: 440px) {

  section#faq .single-faq .chevron,
  section#faq-2 .single-faq .chevron {
    height: 20px;
    width: 40px;
  }
}

section#faq-2 .single-faq {
  background-color: #f6f6f6;
  position: relative;
}

section#faq-2 .single-faq h3 {
  font-size: 20px;
  margin: 0px;
  font-family: "mBank", sans-serif;
  text-align: left;
}

section#faq-2 .single-faq .chevron {
  margin-left: 50px;
  transition: all 0.3s ease;
}

section#faq-2 .single-faq .faq-answer {}

section#faq-2 .single-faq .faq-answer .content {
  padding: 24px;
}

section#faq .single-faq.open,
section#faq-2 .single-faq.open {}

section#faq a:not(.blue),
section#faq a:not(.blue):focus,
section#faq a:not(.blue):hover,
section#faq a:not(.blue):visited,
section#faq-2 a:not(.blue),
section#faq-2 a:not(.blue):focus,
section#faq-2 a:not(.blue):hover,
section#faq-2 a:not(.blue):visited {
  color: #000;
}

section#faq ul,
section#faq-2 ul {
  list-style: disc;
  padding-left: 2em;
}

section#faq ul li,
section#faq-2 ul li {
  margin-bottom: 0.5em;
  position: relative;
}

section#faq ul li:last-of-type,
section#faq-2 ul li:last-of-type {
  margin-bottom: 0;
}

section#faq .h2 span:first-of-type,
section#faq h2 span:first-of-type,
section#faq section#zero ul li span:first-of-type,
section#faq-2 .h2 span:first-of-type,
section#faq-2 h2 span:first-of-type,
section#faq-2 section#zero ul li span:first-of-type,
section#zero ul section#faq li span:first-of-type,
section#zero ul section#faq-2 li span:first-of-type {
  margin-left: 0;
}

section#faq .h2 span:nth-of-type(2),
section#faq h2 span:nth-of-type(2),
section#faq section#zero ul li span:nth-of-type(2),
section#faq-2 .h2 span:nth-of-type(2),
section#faq-2 h2 span:nth-of-type(2),
section#faq-2 section#zero ul li span:nth-of-type(2),
section#zero ul section#faq li span:nth-of-type(2),
section#zero ul section#faq-2 li span:nth-of-type(2) {
  margin-left: 2em;
}

section#faq .h2 span:nth-of-type(3),
section#faq .h2 span:nth-of-type(4),
section#faq h2 span:nth-of-type(3),
section#faq h2 span:nth-of-type(4),
section#faq section#zero ul li span:nth-of-type(3),
section#faq section#zero ul li span:nth-of-type(4),
section#faq-2 .h2 span:nth-of-type(3),
section#faq-2 .h2 span:nth-of-type(4),
section#faq-2 h2 span:nth-of-type(3),
section#faq-2 h2 span:nth-of-type(4),
section#faq-2 section#zero ul li span:nth-of-type(3),
section#faq-2 section#zero ul li span:nth-of-type(4),
section#zero ul section#faq li span:nth-of-type(3),
section#zero ul section#faq li span:nth-of-type(4),
section#zero ul section#faq-2 li span:nth-of-type(3),
section#zero ul section#faq-2 li span:nth-of-type(4) {
  margin-left: 0;
}

section#faq .h2 span:nth-of-type(5),
section#faq h2 span:nth-of-type(5),
section#faq section#zero ul li span:nth-of-type(5),
section#faq-2 .h2 span:nth-of-type(5),
section#faq-2 h2 span:nth-of-type(5),
section#faq-2 section#zero ul li span:nth-of-type(5),
section#zero ul section#faq li span:nth-of-type(5),
section#zero ul section#faq-2 li span:nth-of-type(5) {
  margin-left: 5em;
}

section#faq [data-faq-question],
section#faq-2 [data-faq-question] {
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  padding-bottom: 1.1em;
  padding-top: 1.1em;
}

section#faq [data-faq-question] .col-9,
section#faq-2 [data-faq-question] .col-9 {
  padding-left: 65px;
}

section#faq-2 [data-faq-question] .col-9 h3 {
  font-family: "mBank", sans-serif;
}

@media (max-width: 1000px) {

  section#faq [data-faq-question] .col-9,
  section#faq-2 [data-faq-question] .col-9 {
    padding-left: 30px;
  }
}

@media (max-width: 800px) {

  section#faq [data-faq-question] .col-9,
  section#faq-2 [data-faq-question] .col-9 {
    padding-left: 20px;
  }
}

@media (min-width: 1200px) {

  section#faq [data-faq-question],
  section#faq [data-faq-question].open,
  section#faq-2 [data-faq-question],
  section#faq-2 [data-faq-question].open {
    font-size: 20px;
  }
}

section#faq [data-faq-answer],
section#faq-2 [data-faq-answer] {
  background: #fff;
  display: none;
  line-height: 1.2;
  padding-bottom: 16px;
}

section#faq [data-faq-answer],
section#faq-2 [data-faq-answer] {
  padding: 10px 65px 40px 65px;
}

@media (max-width: 1000px) {

  section#faq [data-faq-answer],
  section#faq-2 [data-faq-answer] {
    padding: 10px 30px 40px 30px;
  }
}

@media (max-width: 800px) {

  section#faq [data-faq-answer],
  section#faq-2 [data-faq-answer] {
    padding: 10px 20px 40px 20px;
  }
}

section#faq [data-faq-answer] img:not(.social-link),
section#faq-2 [data-faq-answer] img:not(.social-link) {
  margin-bottom: 20px;
  width: 78px;
}

@media (min-width: 576px) {

  section#faq .h2 span:first-of-type,
  section#faq h2 span:first-of-type,
  section#faq section#zero ul li span:first-of-type,
  section#faq-2 .h2 span:first-of-type,
  section#faq-2 h2 span:first-of-type,
  section#faq-2 section#zero ul li span:first-of-type,
  section#zero ul section#faq li span:first-of-type,
  section#zero ul section#faq-2 li span:first-of-type {
    padding-right: 0.2em;
  }

  section#faq .h2 span:nth-of-type(2),
  section#faq h2 span:nth-of-type(2),
  section#faq section#zero ul li span:nth-of-type(2),
  section#faq-2 .h2 span:nth-of-type(2),
  section#faq-2 h2 span:nth-of-type(2),
  section#faq-2 section#zero ul li span:nth-of-type(2),
  section#zero ul section#faq li span:nth-of-type(2),
  section#zero ul section#faq-2 li span:nth-of-type(2) {
    margin-left: -0.25em;
    padding-left: 0;
  }

  section#faq .h2 span:nth-of-type(3),
  section#faq h2 span:nth-of-type(3),
  section#faq section#zero ul li span:nth-of-type(3),
  section#faq-2 .h2 span:nth-of-type(3),
  section#faq-2 h2 span:nth-of-type(3),
  section#faq-2 section#zero ul li span:nth-of-type(3),
  section#zero ul section#faq li span:nth-of-type(3),
  section#zero ul section#faq-2 li span:nth-of-type(3) {
    margin-left: 5em;
  }
}

@media (min-width: 768px) {

  section#faq .h2 span:nth-of-type(2),
  section#faq .h2 span:nth-of-type(4),
  section#faq h2 span:nth-of-type(2),
  section#faq h2 span:nth-of-type(4),
  section#faq section#zero ul li span:nth-of-type(2),
  section#faq section#zero ul li span:nth-of-type(4),
  section#faq-2 .h2 span:nth-of-type(2),
  section#faq-2 .h2 span:nth-of-type(4),
  section#faq-2 h2 span:nth-of-type(2),
  section#faq-2 h2 span:nth-of-type(4),
  section#faq-2 section#zero ul li span:nth-of-type(2),
  section#faq-2 section#zero ul li span:nth-of-type(4),
  section#zero ul section#faq li span:nth-of-type(2),
  section#zero ul section#faq li span:nth-of-type(4),
  section#zero ul section#faq-2 li span:nth-of-type(2),
  section#zero ul section#faq-2 li span:nth-of-type(4) {
    padding-right: 0.2em;
  }

  section#faq .h2 span:nth-of-type(3),
  section#faq .h2 span:nth-of-type(5),
  section#faq h2 span:nth-of-type(3),
  section#faq h2 span:nth-of-type(5),
  section#faq section#zero ul li span:nth-of-type(3),
  section#faq section#zero ul li span:nth-of-type(5),
  section#faq-2 .h2 span:nth-of-type(3),
  section#faq-2 .h2 span:nth-of-type(5),
  section#faq-2 h2 span:nth-of-type(3),
  section#faq-2 h2 span:nth-of-type(5),
  section#faq-2 section#zero ul li span:nth-of-type(3),
  section#faq-2 section#zero ul li span:nth-of-type(5),
  section#zero ul section#faq li span:nth-of-type(3),
  section#zero ul section#faq li span:nth-of-type(5),
  section#zero ul section#faq-2 li span:nth-of-type(3),
  section#zero ul section#faq-2 li span:nth-of-type(5) {
    margin-left: -0.25em;
    padding-left: 0;
  }

  section#faq .h2 span:nth-of-type(4),
  section#faq h2 span:nth-of-type(4),
  section#faq section#zero ul li span:nth-of-type(4),
  section#faq-2 .h2 span:nth-of-type(4),
  section#faq-2 h2 span:nth-of-type(4),
  section#faq-2 section#zero ul li span:nth-of-type(4),
  section#zero ul section#faq li span:nth-of-type(4),
  section#zero ul section#faq-2 li span:nth-of-type(4) {
    margin-left: 8em;
  }
}

@media (min-width: 1200px) {

  section#faq .single-faq,
  section#faq-2 .single-faq {
    font-size: 16px;
  }
}

section#faq-2 .single-faq.open {
  position: relative;
}

section#faq-2 [data-faq-answer].open,
section#faq-2 [data-faq-question].open {}

section#faq-2 [data-faq-answer].open {
  border-top-width: 0;
}

section#faq-2 [data-faq-question].open {
  border-bottom-width: 0;
}

section#faq-2 ul {
  font-weight: 400;
  list-style-position: outside;
  list-style-type: square;
}

section#faq-2 ul li:last-of-type::marker {
  color: transparent;
}

section#faq-2 ul li ul {
  list-style-type: none;
}

section#faq-2 ul li ul li {
  position: relative;
}

section#faq-2 ul li ul li::marker {
  display: none;
}

section#faq-2 ul li ul li:before {
  content: "–";
  padding-right: 5px;
}

section#faq-2 .content {
  width: 100%;
  max-width: 1111px;
}

section#faq-2 .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

section#faq-2 .chevron {
  height: 30px;
  width: 60px;
}

section#faq-2 .chevron.blue {
  width: 16px;
}

section#faq-2 .chevron.blue,
section#faq-2 .chevron.blue.open {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

section#faq-2 .chevron.blue.open {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

section#faq-2 .ms-5 {
  margin-left: 20px;
}

@media (min-width: 1080px) {
  .d-lg-none {
    display: none !important;
  }
}

.text-pink {
  color: #ff0eb2 !important;
}

@media (min-width: 551px) {
  .align-self-start {
    align-self: flex-start !important;
  }
}

.flipped {
  transform: rotate(180deg);
}

.text-underline {
  text-decoration: underline;
}

.text-semibold {
  font-weight: 600;
}

.text-dark-red {
  color: #ae0000 !important;
}

.text-red {
  color: #e90a0a !important;
}

.text-dark {
  color: #201c17 !important;
}

.text-orange {
  color: #ff6600 !important;
}

.text-white {
  color: #fff !important;
}

.text-blue {
  color: #0065b1 !important;
}

.bg-blue {
  background-color: #0065b1 !important;
}

.ms-auto {
  margin-left: auto !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.d-flex {
  display: flex !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.align-items-center {
  align-items: center !important;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.d-flex.margin2 {
  margin: 52px 0 0 0;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

@media (min-width: 1080px) {
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
}

/** Age Gate **/

/* lock scroll when modal is up */

.przelotka {
  overflow-x: hidden;
}

.przelotka.no-scroll {
  overflow: hidden;
}

/* backdrop + centering */
.przelotka #age {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
}

.przelotka #age.show {
  display: flex;
  flex-direction: column;
}

.przelotka .ColoStripe {
  min-width: calc(100% + 00px);
  margin-bottom: 50px;
  z-index: 99;
}

/* container for content */
.przelotka .age-screen {
  position: relative;
  max-width: 1210px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px 40px 150px 40px;
}

.przelotka .columns {
  width: 100%;
}

/* mBank logo top-left */
.przelotka .LogoContainer {
  display: flex;
  gap: 85px;
  margin-bottom: 60px;
}

.przelotka .LogoContainer .mbank-logo {
  width: 219px;
}

.przelotka .LogoContainer .festival-logo {
  width: 122px;
}

/* heading text */
.przelotka h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  z-index: 2;

  max-width: 350px;
}

.przelotka .mbankCardWrapper {
  width: 80%;
  margin-left: auto;
}

.przelotka .mbankCardWrapper p {
  font-size: 24px;
  font-weight: 600;
  color: #ff8600;
  font-family: "mBank", sans-serif;
}

.przelotka .mbankCardWrapper .mbank_cardGlow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-54%, -58%);
  z-index: 0;
  width: 170%;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.przelotka .mbankCardWrapper .cards {
  position: relative;
}

.przelotka .mbankCardWrapper .cards:hover .mbank_cardGlow {
  opacity: 1;
}

.przelotka .promoBox {
  padding: 30px 20px 20px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 80%;
  position: relative;
}

.przelotka .promoBox.right {
  margin-left: auto;
}

.przelotka .promoBox .border-left {
  position: absolute;
  left: 10px;
  height: calc(100% - 20px);
  width: 10px;
  top: 10px;
  background: url(../img/border_line_vertical.jpg);
  background-size: 8px;
  background-repeat: repeat-y;
}

.przelotka .promoBox .border-right {
  position: absolute;
  right: 10px;
  height: calc(100% - 20px);
  width: 10px;
  top: 10px;
  background: url(../img/border_line_vertical.jpg);
  background-size: 8px;
  background-repeat: repeat-y;
}

.przelotka .promoBox .border-top {
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
  height: 10px;
  top: 10px;
  background: url(../img/border_line_horizontal.png);
  background-size: 495px;
  background-repeat: repeat-x;
}

.przelotka .promoBox .border-bottom {
  position: absolute;
  left: 10px;
  width: calc(100% - 20px);
  height: 10px;
  bottom: 10px;
  background: url(../img/border_line_horizontal.png);
  background-size: 495px;
  background-repeat: repeat-x;
}

.przelotka .promoBox p {
  font-size: 24px;
  font-weight: 600;
  font-family: "mBank", sans-serif;
  text-align: center;
  color: #000;
  z-index: 1;
}

.przelotka .promoBox.left img {
  width: 130px;
}

.przelotka .promoBox.right img {
  width: 155px;
}

/* footer bar */
.przelotka footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  z-index: 9;
  background-color: #000;
}

.przelotka .age-footer a {
  color: #fff;
  font-size: 24px;
  color: #e90a0a;
}

@media (max-width: 800px) {
  .przelotka .age-screen {
    padding: 0px 20px 70px 20px;
  }

  .przelotka .LogoContainer .mbank-logo {
    width: 83px;
  }

  .przelotka .LogoContainer .festival-logo {
    width: 50px;
  }

  .przelotka .LogoContainer {
    gap: 40px;
    margin-bottom: 20px;
  }

  .przelotka .mbankCardWrapper {
    margin-left: 0;
    margin-bottom: 30px;
  }

  .przelotka .mbankCardWrapper p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .przelotka h1 {
    font-size: 24px;
  }

  .przelotka .promoBox {
    width: 100%;
  }

  .przelotka .promoBox p {
    font-size: 16px;
  }

  .przelotka .age-footer a {
    font-size: 16px;
  }
}

/** Tablet **/

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .sectionContent {
    font-size: 18px;
  }

  .wrapperMain #hero:after {
    width: 120vw;
    height: 120vw;
    top: -56vw;
    right: -44vw;
  }

  #classic-card .classic-card__slides-wrapper {
    width: 250px;
  }

  #classic-card .classic-card__slide {
    width: 250px;
  }

  #classic-card .classic-card__carousel {
    gap: 10px;
  }

  #savings-highlights .savings-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #savings-highlights .savings-highlights__cell {
    margin-top: 30px;
  }

  #savings-highlights .savings-highlights__cell.savings-highlights__panel {
    margin-top: 0;
    margin-bottom: 30px;
  }

  #festival-card-promo .sectionInner {
    padding: 55px 30px;
  }

  #artists-lineup .stage-wrapper h3 {
    font-size: 32px;
  }

  #jazgot-promo .sectionInner {
    padding: 55px 30px 55px 200px;
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: 35px 60px;
  }

  #jazgot-promo .sectionInner h3 {
    font-size: 32px;
  }

  #jazgot-promo .sectionInner p {
    font-size: 18px;
  }


}

/** Mobile **/

@media (max-width: 767px) {
  h1 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 24px;
  }

  section,
  .section {
    padding: 40px 20px;
    position: relative;
  }

  section .columns {
    flex-direction: column;
  }

  .sectionContent {
    font-size: 16px;
  }

  .wrapperMain #header {
    padding: 33px 20px 12px;
  }

  .wrapperMain #hero {
    padding: 110px 20px 30px 20px;
    background-size: cover !important;
    background: url(../img/hero_bg_sm.jpg);
  }

  .wrapperMain #hero:after {
    width: 120vw;
    height: 120vw;
    top: -56vw;
    right: -44vw;
  }






  .wrapperMain .desktop-only {
    display: none;
  }

  .wrapperMain .mobile-only {
    display: flex;
  }

  #savings-highlights {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .wrapperMain #header .headerWrapper .logo {
    width: 85px;
  }

  #header .headerLogoContainer {
    gap: 40px;
    width: fit-content;
    margin: 0;
    order: 0;
  }

  #header .headerLogoContainer .off_festival_logo,
  #header .headerLogoContainer .visa_logo {
    display: none;
  }

  .chat-bubble {
    padding: 18px 25px;
    border-radius: 40px 40px 40px 0px;
  }

  #hero .mobile-logo-container {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 30px;
  }

  #hero .mobile-logo-container .off_festival_logo {
    width: 75px;
  }

  #hero .mobile-logo-container .visa_logo {
    width: 97px;
  }

  .wrapperMain #header .headerWrapper {
    gap: 10px;
  }


  #festival-card-promo .sectionInner {
    border-radius: 40px;
    padding: 30px 20px 40px;
  }

  #festival-card-promo .columns {
    flex-direction: column-reverse;
  }

  #festival-card-promo {
    padding-bottom: 0px;
  }

  #relax-chat {
    padding-top: 40px;
    padding-bottom: 00px;
  }

  #relax-chat .top-bubble {
    border-radius: 40px;
    padding: 30px 20px 40px;
    max-width: calc(100% - 35px);
  }

  #relax-chat .chat-bubble p {
    font-size: 16px;
  }

  #relax-chat .chat-bubble p br {
    display: none;
  }

  #relax-chat .chat-bubbles {
    border-radius: 40px;
  }


  #artists-lineup {
    padding-bottom: 20px;
  }

  #artists-lineup h2 {
    padding: 0 20px;
  }

  #artists-lineup .stage-wrapper h3 {
    font-size: 24px;
    margin-bottom: 35px;
  }

  #artists-lineup .ticker__inner {
    gap: 25px;
  }

  #artists-lineup .ticker__inner span {
    font-size: 16px;
    padding-left: 20px;
  }

  #artists-lineup .ticker__inner span::before {
    width: 10px;
    height: 10px;
  }

  #artists-lineup .stage-wrapper h3 {
    padding: 0px 20px;
  }


  .price-zero {
    font-size: 160px;
    line-height: 125px;
  }

  .price-zl {
    font-size: 80px;
    line-height: 60px;
  }


  ul.square-bullet li {
    font-size: 16px;
    padding-left: 20px;
  }

  ul.square-bullet li::before {
    width: 7px;
    height: 7px;
  }

  #card-benefits .columnLeft {
    padding-bottom: 10px;
  }

  .price-highlight {
    margin-bottom: 35px;
  }

  #card-benefits .columns {
    margin-top: 35px;
  }

  #card-benefits .columnRight .mbank-card-apple-wallet {
    max-width: 70vw;
  }

  #card-benefits .columnRight {
    align-self: center;
  }

  #account-offer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #account-offer .columns {
    flex-direction: column-reverse;
  }

  #account-offer .card-action-box.bottom {
    margin-top: 60px;
  }

  #account-offer .card-action-box h2 {
    margin-bottom: 15px;
  }

  #account-offer .card-action-box .btn.btnCTA {
    margin-top: 30px;
  }

  .wrapperMain #section11 h2 {
    font-size: 18px;
  }


  #festival-card-promo .columnRight {
    max-width: 100%;
  }


  #section12 {
    padding-top: 20px;
  }


  .wrapperMain #section11 .mainWrapper .docWrapper .element .text {
    font-size: 14px;
  }

  .wrapperMain #section12 .text {
    font-size: 14px;
  }

  section#faq-2 .single-faq:last-child {
    margin-bottom: 0px;
  }

  .wrapperMain section#faq-2.container-fluid {
    padding-bottom: 20px !important;
  }

  .wrapperMain #section11 .mainWrapper .docWrapper .element .img {
    width: 25px;
    margin-right: 10px;
  }

  .wrapperMain .btn.btnCTA {
    margin-left: auto;
    margin-right: auto;
  }

  #savings-highlights .savings-highlights__grid {
    grid-template-columns: 1fr;
    gap: 0px 0;
  }

  #savings-highlights .savings-highlights__cell {
    margin-top: 30px;
  }

  #savings-highlights .savings-highlights__cell.savings-highlights__panel {
    margin-top: 0;
  }

  #savings-highlights .savings-highlights__amount {
    font-size: 2rem;
  }

  #savings-highlights .savings-highlights__card-header,
  #savings-highlights .savings-highlights__card-body,
  #savings-highlights .savings-highlights__panel-inner {
    padding: 24px;
  }

  #savings-highlights .savings-highlights__summary {
    font-size: 1.25rem;
  }

  #savings-highlights .sh-panel__offers {
    padding: 20px 10px;
  }

  #savings-highlights .sh-offer__label {
    padding-right: 8px;
  }

  #referral-program,
  #free-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #referral-program .columns,
  #free-services .columns {
    gap: 0px;
  }

  .section-separator img {
    max-width: 300px;
    padding-right: 50px;
    padding-left: 50px;
  }

  .wrapperMain #section7 .info {
    padding: 16px;
  }

  #faq-2 .faq-question-btn {
    padding: 16px;
  }

  section#faq-2 .single-faq h3 {
    font-size: 16px;
  }

  #classic-card .classic-card__content {
    flex-direction: column-reverse;
    gap: 32px;
  }

  #classic-card,
  #faq-2.container-fluid {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #classic-card .classic-card__heading {
    font-size: 1.25rem;
  }

  #classic-card .classic-card__carousel {
    gap: 5px;
  }

  #classic-card .classic-card__tabs {
    margin-bottom: 30px;
  }

  #classic-card .classic-card__heading {
    margin-bottom: 32px;
  }

  #classic-card .classic-card__slide,
  #classic-card .classic-card__slides-wrapper {
    max-width: calc(100vw - 100px);
  }

  #faq-2 .title {
    text-align: left;
  }

  .wrapperMain #section12 .text {
    font-size: 14px;
  }

  section#jazgot-promo {
    padding-bottom: 20px;
  }

  #jazgot-promo .sectionInner {
    padding: 40px 20px 30px 20px;
    background-size: 0px;
    border-radius: 40px;
    overflow: hidden;
  }

  #jazgot-promo .sectionInner h3 {
    font-size: 24px;
  }

  #jazgot-promo .sectionInner p {
    font-size: 16px;
  }

  #jazgot-promo .bottomContent {
    padding-left: 55px;
    position: relative;
  }

  #jazgot-promo .bottomContent:before {
    content: "";
    position: absolute;
    left: -18px;
    top: -30px;
    width: 75px;
    height: calc(100% + 75px);
    background: url(../img/microphone_stand.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
  }

}