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

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

html.menu-open{overflow: hidden;}

html.modal-open,
body.modal-open {
  overflow: hidden !important;
  /* hide scrollbars */
  height: 100% !important;
  /* force full viewport */
}

html {
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 3px solid #008f20;
  outline-offset: 2px;
  border-radius: 0px;
}

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


.skip-link:focus {
  top: 1rem;            /* slide into view when focused */
  outline: 3px solid #008f20; /* 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;
  }
}

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 {
  margin-top: 0;
  margin-block-end: 1em;
  font-family: "mBank", sans-serif;
}

h1 {
  font-size: 70px;
  margin-bottom: 30px;
}

h2 {
  font-size: 40px;
}

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

.wrapperMain .sectionInner {
  width: 100%;
  margin: 0 auto;
  max-width: 1110px;
  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 20px;
  width: 450px;
  max-width: 90vw;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  background-color: #e90a0a;
  z-index: 100;
  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;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 99999;
}

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

/* modal box */
.modal {
  background: #000;
  color: #fff;

  border-radius: 15px;
  max-width: 1200px;
  width: 90%;
  position: relative;
  box-shadow: 0 0px 20px rgba(255, 255, 255, 0.5);
}

.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: 1000;
  padding: 35px 40px;
}

@media (max-width: 1050px) {
}

@media (max-width: 800px) {
  .wrapperMain #header {
    padding: 20px;
  }
}

.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: 1110px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.headerColoStripe {
  width: 100%;
}

#header .headerLogoContainer {
  width: 100%;
  order: 2;
  display: flex;
  gap: 0px;
  align-items: center;
  margin-top: 30px;
  z-index: 9999;
}

header .headerNavContainer {
  margin-left: auto;
}

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

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

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

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

.wrapperMain #header .headerWrapper .logo {
  width: 212px;
  flex-shrink: 0;
}

.wrapperMain #header .headerWrapper .festival-logo {
  width: 122px;
  margin-left: 45px;
}
.wrapperMain #header .headerWrapper .visa-logo {
  width: 150px;
  margin-left: 30px;
}



/** 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;
}

.wcag-compliant .wrapperMain #header nav {
  margin-left: 0;
  display: none;
}

.wcag-compliant header .skip-link {
  display: flex;
  margin-left: auto;
  padding-right: 40px;
}

.wcag-compliant header .hamburger {
  display: none;
}

@media (max-width: 400px) {
  
  .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 {
  display: none;
  position: relative;
  width: 30px;
  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);
}

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

/* Off-canvas using the same nav container */
.headerNavContainer {
  transition: right 0.3s ease;
}

.wrapperMain #header .headerWrapper .headerNavContainer.open {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  background: #000;
  padding: 6rem 1rem 1rem;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  visibility: visible;
}

.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(0, 0, 0, 0.5);
  pointer-events: auto;
  z-index: 999;
}

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

/* Responsive breakpoint */
@media (max-width: 767px) {
  .wrapperMain #header .headerWrapper .headerNavContainer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 4rem 1rem 1rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
visibility: hidden;
    right: -300px;
    background: #000;
  }

  .hamburger {
    display: block;
  }

  .wrapperMain #hero .columnLeft {
    z-index: 1 !important;
  }
}

/** Global **/

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

section .columns {
  display: flex;
  gap: 20px;
  position: relative;
}

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: 80px 40px 50px 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 1050px) {
  .wrapperMain #hero {
  }
}

@media (max-width: 800px) {
  .wrapperMain #hero {
    padding: 20px 20px 50px 20px;
    background-position: 55%;
  }
}

.wrapperMain #hero p.sectionContent {
  font-size: 50px;
  font-family: "mBank", sans-serif;
  font-weight: 400;
  margin-top: 30px;
}


#hero .heroStar_1 {
  position: absolute;
  width: 75px;
  height: auto;
  left: -120px;
  top: 10px;
}

#hero .heroStar_2 {
  position: absolute;
  width: 40px;
  height: auto;
  left: 300px;
  top: -70px;
}

#hero .heroStar_3 {
  position: absolute;
  width: 100%;
  height: auto;
  right: 0;
  top: 0;
}

.wrapperMain #hero .columnLeft {
  min-width: 640px;
  flex-shrink: 0;
  max-width: 100%;
  flex-direction: column;
  z-index: 99999;
}

.wrapperMain #hero .columnRight .heroImageWrapper {
  position: relative;
  margin-left: -6%;
  margin-right: -6%;
  margin-top: -45%;
  z-index: 9;
}

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

.wrapperMain #hero .columnRight .layer_2 {
  position: absolute;
  top: 9%;
  left: 32%;
  width: 37%;
  z-index: 2;
  transition: all 0.3s ease;
  transform-origin: bottom left;
  animation: swing 4s ease-in-out infinite;
}

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

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

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

  45% {
    transform: rotate(6deg);
  }

  60% {
    transform: rotate(-6deg);
  }

  75% {
    transform: rotate(2deg);
  }

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

.wrapperMain #hero .columnRight .layer_3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  transition: all 0.3s ease;
  pointer-events: none;
}

.wrapperMain #hero .columnRight .heroImageWrapper:hover .layer_2 {
  opacity: 1;
}

#hero .colored_stripe {
  margin-top: 70px;
}

path[data-anim-name] {
  opacity: 0;
}

/* 2) Hide all paths in SVGs you marked with .autoAnimateSVG */
svg.autoAnimateSVG path {
  opacity: 0;
}

@keyframes fadeInPath {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.star-path {
  opacity: 0;
}

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

#card-offer h2 {
  text-align: right;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#card-offer .sectionContent{
text-align: center;
font-size: 30px;
font-weight: 400;
max-width: 900px;
margin: 60px auto 60px auto;
}


#card-offer .star_1{width: 135px;
position: absolute;
right: -50px;
top:-30px}

#card-offer .columns.cardContainer {
  margin-top: 50px;
}

#card-offer .cardContainer .sectionContent {
  font-size: 24px;
  font-weight: 600;
  text-align: right;
  max-width: 420px;
  margin-left: auto;
  margin-top: 10px;
}

#card-offer .column.columnRight {
  max-width: 500px;
  padding-left: 20px;
}

#card-offer .btnCTA {
  margin-left: auto;
  margin-top: 50px;
}

#card-offer .imageWrapper {
  position: relative;
}

#card-offer .imageWrapper .mbank_card {
  z-index: 1;
}

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

#card-offer .imageWrapper:hover .mbank_cardGlow {
  opacity: 1;
}

#card-offer .cardAvailability {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
}

#card-offer .colored_stripe {
  width: 615px;
  margin-top: 50px;
  margin-bottom: 60px;
}

#festival-attractions .decorative_line_1 {
  position: absolute;
  width: 200px;
  right: -40px;

}



#festival-attractions .attractions-route .column {
  max-width: 400px;
  display: flex;
  gap: 24px;
}

#festival-attractions .attractions-route img.map-pin {
  width: 45px;
}

#festival-attractions h2 {
  font-size: 60px;
  max-width: 600px;
}

#festival-attractions .sectionContent {
  font-weight: 400;
  font-size: 30px;
  max-width: 460px;
}

#festival-attractions .attractions-route {
  margin-top: 100px;
}

#festival-attractions .attractions-route p {
  font-size: 20px;
  font-family: "mBank", sans-serif;
  z-index: 1;
}

#festival-attractions .attractions-route .columnRight {
  margin-top: 140px;
}

#festival-attractions .attractions-route .column {
  align-items: flex-start;
}

#festival-intro .sectionContent {
  font-size: 30px;
  font-weight: 400;
  max-width: 900px;
}

#festival-attractions .attractions-route .pin-path {
  position: absolute;
  left: 20px;
  position: absolute;
  left: 20px;
  top: -6%;
  width: 106%;
  z-index: 0;
  stroke-dasharray: 4 4;
  stroke-dashoffset: 1000;
}


#festival-attractions h2, #festival-attractions p{z-index: 1;}

#festival-attractions .autoAnimateSVG {
  position: absolute;
  width: 347px;
  height: auto;
  right: 90px;
  top: 0;
  z-index: 0;
}

#festival-attractions .attractions-intro {
  font-size: 24px;
  font-weight: 600;
  max-width: 100%;
  margin-top: 100px;
  margin-bottom: 50px;
}

#festival-attractions .attractions-free {
  font-size: 40;
  font-weight: 600;
  margin-top: 50px;
}

#festival-intro .promoText {
  font-weight: 600;
  font-size: 60px;
  max-width: 1100px;
}

#festival-intro .DashLine_1 {
  position: absolute;
  right: -30px;
  top: 0;
  width: 190px;
}



#main-stage-lineup .autoAnimateSVG{position: absolute;
width: 330px;
left: 0;
top:-145px}

#main-stage-lineup h2{text-align: right;
max-width: 900px;
margin-left: auto;
z-index: 2;}




#main-stage-lineup .sectionContent {
  text-align: right;
  font-size: 60px;
  margin-left: auto;
  z-index: 2;
  position: relative;
}

.artist-wrapper {
  height: 3.6em; /* 3 items x 1.2em */
  overflow: hidden;
  position: relative;
  font-size: 60px;
  font-weight: 600;
  text-align: right;
  max-width: 100%;
  margin-top: 1rem;
}

.artist-track {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.6s ease-in-out;
}

.artist-track div {
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Fade animations */
.artist-track div.fade-in {
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

.artist-track div.fade-out {
  opacity: 1;
  animation: fadeOut 0.4s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .artist-track {
    transition: none !important;
  }
}






#main-stage-lineup .unicorn_sewing{
  margin-left: -30%;
  margin-right: -30%;
  min-width: calc(100% + 30%);
  margin-top: -30%;
  z-index: 0;
  position: relative;
}

#main-stage-lineup .colored_stripe{width: 615px;}


#city-game-info h2 span{font-weight: 400;}


#city-game-info .city-game-description{max-width: 700px;
margin-bottom: 70px;}

#city-game-info  .city-game-highlight{
  font-size: 26px;
  margin-bottom: 40px;
}

#city-game-info  ul.circle-bullet.city-game-list li::before{background: #FF8600;}

#city-game-info  .city-game-footer-note{font-size: 40px;
margin-top: 80px;}

#city-game-info  .autoAnimateSVG{position: absolute;
width: 347px;
right: 90px;
top:-200px}

#benefits-bubbles .benefits-bubble {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #0065b1;
  border-radius: 50%;
  width: 610px;
  height: 610px;
  position: relative;
  z-index: 1;
  font-family: "mBank", sans-serif;
}

#benefits-bubbles .benefits-bubble .benefit-bubble-icon {
  width: 110px;
}

#benefits-bubbles .benefits-bubble .numberWrapper {
  width: fit-content;
}

#benefits-bubbles .benefits-bubble .number-prefix {
  font-size: 50px;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: -20px;
  line-height: 1em;
  text-align: left;
}

#benefits-bubbles .benefits-bubble .benefit-bubble-number {
  font-size: 140px;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  margin: 0px;
  line-height: 1em;
  width: fit-content;
}

#benefits-bubbles .benefits-bubble .benefit-bubble-description {
  font-size: 30px;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  max-width: 500px;
  text-align: center;
  margin: 0;
}

#benefits-bubbles .benefits-bubble .btnCTA {
  font-size: 16px;
  width: fit-content;
  min-width: 255px;
}

#benefits-bubbles .benefit-bubble-container:nth-child(1) .benefits-bubble,
#benefits-bubbles .benefit-bubble-container:nth-child(3) .benefits-bubble {
  margin-left: auto;
}

.benefit-bubble-container:nth-child(2) .benefits-bubble,
.benefit-bubble-container:nth-child(3) .benefits-bubble {
  margin-bottom: -10%;
  margin-top: -10%;
}

#benefits-bubbles .benefit-bubble-container {
  position: relative;
}

#benefits-bubbles .buble-link {
  position: absolute;
  z-index: 0;
  width: 190px;
}

#benefits-bubbles .benefit-bubble-container:nth-child(1) .buble-link {
  transform: rotate(98deg);
  right: -330px;
  top: -150px;
}

#benefits-bubbles .benefit-bubble-container:nth-child(2) .buble-link {
  transform: rotate(51deg);
  left: 250px;
  top: -450px;
}

#benefits-bubbles .benefit-bubble-container:nth-child(3) .buble-link {
  transform: rotate(151deg);
  left: 637px;
  top: -300px;
}

#benefits-bubbles .benefit-bubble-container:nth-child(4) .buble-link {
  transform: rotate(-141deg);
  left: 600px;
  top: -300px;
}

#benefits-bubbles .starsOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/** Hero Animation **/

#zero-zloty .columnLeft {
  width: 650px;
  text-align: right;
  margin-right: -280px;
}

#zero-zloty .columnLeft img {
  max-width: 650px;
}

.zero-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 480px;
  margin-left: 140px;
}

.zero-block .label {
  font-size: 55px;
  font-weight: 600;
  align-self: flex-start;
}

.zero-block .zero {
  position: relative;
  width: 210px;
  height: 300px;
  transform-style: preserve-3d;
  transform-origin: center center;
  animation: spin3D 3s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent;
  line-height: 180px;
}

.zero-block .zero span {
  position: absolute;
  font-size: 400px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.zero-block .zero span:nth-child(1) {
  transform: translateZ(0px);
}

.zero-block .zero span:nth-child(2) {
  transform: translateZ(-1px);
  opacity: 0.9;
}

.zero-block .zero span:nth-child(3) {
  transform: translateZ(-2px);
  opacity: 0.8;
}

.zero-block .zero span:nth-child(4) {
  transform: translateZ(-3px);
  opacity: 0.7;
}

.zero-block .zero span:nth-child(5) {
  transform: translateZ(-4px);
  opacity: 0.6;
}

@keyframes spin3D {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.zero-block .suffix {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: end;
  margin-bottom: -40px;
}

.zero-block .zloty {
  font-size: 150px;
  font-weight: 700;
  font-family: "mBank", sans-serif;
}

.zero-block .subtext {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 800px) {
}

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 #section4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px 60px 40px;
}

.wrapperMain #section4 .row {
  max-width: 1106px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto 70px;
}

.wrapperMain #section4 .title {
  color: #201c17;
  text-align: center;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0 auto;
  max-width: 800px;
}

.wrapperMain #section4 .subtitleTop {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 50px;
}

.wrapperMain #section4 .btnCTA {
  margin: 0 auto;
}

.wrapperMain #section4 .boxElementContainer {
  width: 100%;
  border: 3px solid #fff;
  border-radius: 77px;
  position: relative;
  transition: 0.3s all ease-in-out;
  margin: 20px 0 0 0;
}

.wrapperMain #section4 .boxElementContainer .boxElement {
  width: 100%;
  display: flex;
  background-color: #0000ff;
  border-radius: 77px;
  padding: 12px 11px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wrapperMain #section4 .boxElementContainer .boxElement.boxElement1 {
  height: 146px;
}

.wrapperMain #section4 .boxElementContainer .boxElement.boxElement2 {
  height: 146px;
}

.wrapperMain #section4 .boxElementContainer .coverContainer {
  height: 146px;
  width: 130px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.wrapperMain #section4 .boxElementContainer .boxElementCover {
  height: 146px;
  width: 146px;
  display: flex;
  background-color: #ff0eb2;
  border-radius: 77px;
  padding: 12px 11px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.wrapperMain #section4 .boxElementContainer .circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  color: #00f;
  text-align: center;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  z-index: 10;
  position: absolute;
  top: 12px;
  left: 11px;
}

.wrapperMain #section4 .boxElementContainer .circle.circle1 {
  width: 124px;
  height: 124px;
}

@media (max-width: 340px) {
  .wrapperMain #section4 .boxElementContainer .circle.circle1 {
    width: 100px;
    height: 100px;
    top: 25px;
  }
}

.wrapperMain #section4 .boxElementContainer .circle.circle2 {
  width: 124px;
  height: 124px;
}

.wrapperMain #section4 .boxElementContainer .circle .textSmall {
  font-size: 20px;
}

.wrapperMain #section4 .boxElementContainer .text {
  color: #fff;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.08px;
  position: absolute;
  white-space: nowrap;
  transition: 0.3s all ease-in-out;
}

.wrapperMain #section4 .boxElementContainer .text.text1 {
  top: 24px;
  right: 13px;
}

.wrapperMain #section4 .boxElementContainer .text.text2 {
  top: 24px;
  right: 18px;
}

.wrapperMain #section4 .boxElementContainer .text.text3 {
  top: 54px;
  right: 18px;
}

.wrapperMain #section4 .boxElementContainer .btnMore1 {
  z-index: 5;
  position: absolute;
  bottom: -18px;
  right: -24px;
}

.wrapperMain #section4 .boxElementContainer .btnMore2 {
  z-index: 5;
  position: absolute;
  bottom: -18px;
  right: -24px;
}

.wrapperMain #section4 .boxElementContainer.boxElementContainer1 {
  min-width: 152px;
  max-width: 152px;
}

.wrapperMain #section4 .boxElementContainer.boxElementContainer2 {
  min-width: 152px;
  max-width: 152px;
}

.wrapperMain #section4 .boxElementContainer.active1.boxElementContainer1 {
  max-width: 285px;
}

.wrapperMain #section4 .boxElementContainer.active1 .text.text1 {
  right: 28px;
}

.wrapperMain #section4 .boxElementContainer.active1 .btnMore1 {
  right: 25px;
}

.wrapperMain #section4 .boxElementContainer.active1 .imgStar1 {
  bottom: -20px;
  left: 8px;
}

.wrapperMain #section4 .boxElementContainer.active1 .imgStar2 {
  top: -30px;
  left: 145px;
}

.wrapperMain #section4 .boxElementContainer.active1 .imgStar3 {
  top: -30px;
  right: 10px;
}

.wrapperMain #section4 .boxElementContainer.active2.boxElementContainer1 {
  max-width: 310px;
}

.wrapperMain #section4 .boxElementContainer.active2 .text.text2 {
  right: 32px;
}

.wrapperMain #section4 .boxElementContainer.active2 .btnMore1 {
  right: 25px;
}

.wrapperMain #section4 .boxElementContainer.active2 .imgStar4 {
  bottom: -25px;
  left: 27px;
}

.wrapperMain #section4 .boxElementContainer.active2 .imgStar5 {
  top: -43px;
  left: 100px;
}

.wrapperMain #section4 .boxElementContainer.active2 .imgStar6 {
  bottom: -41px;
  right: 3px;
}

.wrapperMain #section4 .boxElementContainer.active3.boxElementContainer2 {
  max-width: 314px;
}

.wrapperMain #section4 .boxElementContainer.active3 .text.text3 {
  right: 18px;
}

.wrapperMain #section4 .boxElementContainer.active3 .btnMore2 {
  right: 25px;
}

.wrapperMain #section4 .boxElementContainer.active3 .imgStar7 {
  top: -35px;
  left: 16px;
}

.wrapperMain #section4 .boxElementContainer.active3 .imgStar8 {
  top: -45px;
  left: 111px;
}

.wrapperMain #section4 .boxElementContainer.active3 .imgStar9 {
  bottom: -50px;
  right: 12px;
}

.wrapperMain #section4 .boxElementContainer .imgStar {
  transition: 0.3s all ease-in-out;
  position: absolute;
  z-index: -1;
}

.wrapperMain #section4 .boxElementContainer .imgStar1 {
  width: 23px;
  height: 21px;
  background-image: url("../img/section4-1.svg");
  bottom: 17px;
  left: 22px;
}

.wrapperMain #section4 .boxElementContainer .imgStar2 {
  width: 23px;
  height: 21px;
  background-image: url("../img/section4-2.svg");
  top: 1px;
  left: 80px;
}

.wrapperMain #section4 .boxElementContainer .imgStar3 {
  width: 33px;
  height: 30px;
  background-image: url("../img/section4-3.svg");
  top: 15px;
  right: 15px;
}

.wrapperMain #section4 .boxElementContainer .imgStar4 {
  width: 24px;
  height: 23px;
  background-image: url("../img/section4-5.svg");
  bottom: 18px;
  left: 20px;
  z-index: 1;
}

.wrapperMain #section4 .boxElementContainer .imgStar5 {
  width: 35px;
  height: 32px;
  background-image: url("../img/section4-6.svg");
  top: 15px;
  left: 15px;
  z-index: 1;
}

.wrapperMain #section4 .boxElementContainer .imgStar6 {
  width: 24px;
  height: 23px;
  background-image: url("../img/section4-7.svg");
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

.wrapperMain #section4 .boxElementContainer .imgStar7 {
  width: 35px;
  height: 33px;
  background-image: url("../img/section4-8.svg");
  top: 15px;
  left: 15px;
}

.wrapperMain #section4 .boxElementContainer .imgStar8 {
  width: 25px;
  height: 23px;
  background-image: url("../img/section4-9.svg");
  top: 15px;
  right: 15px;
}

.wrapperMain #section4 .boxElementContainer .imgStar9 {
  width: 24px;
  height: 23px;
  background-image: url("../img/section4-10.svg");
  bottom: 15px;
  right: 15px;
}

.wrapperMain #section4 .modal .modalWrapper .modalContainer {
  max-width: 960px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .title {
  color: #201c17;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
  margin: 0;
  padding: 0 15px 0 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .subTitle {
  width: 100%;
  text-align: center;
  color: #ff0eb2;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.075px;
  margin: 0 10px 0 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text {
  width: 100%;
  color: #201c17;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.08px;
  margin: 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text
  strong {
  font-family: mBank;
  font-weight: 1000;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.margin1 {
  margin: 14px 0 32px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.margin1.mbNone {
  margin-bottom: 0px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.ultraSmall1 {
  max-width: 317px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.ultraSmall2 {
  max-width: 317px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.small {
  max-width: 390px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text:not(.small):not(.ultraSmall1):not(.ultraSmall2) {
  max-width: 570px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.wider {
  max-width: 800px !important;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.mobile {
  display: none;
  visibility: hidden;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .nowrap {
  white-space: nowrap;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .blue {
  color: #00f;
  font-weight: 700;
  font-family: mBank;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .list {
  max-width: 570px;
  width: 100%;
  list-style-type: square;
  padding: 0 0 0 15px;
  margin: 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .list.margin
  li {
  margin: 0 0 15px 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .pink {
  color: #ff0eb2;
  font-family: mBank;
  font-weight: 700;
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .pink:hover {
  color: #00f;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .cloud {
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff0eb2;
  border-radius: 36px;
  color: #fff;
  text-align: center;
  font-family: mBank;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.11px;
  margin: 0;
  flex-shrink: 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .cloud.big {
  width: 130px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .cloud.small {
  width: 110px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow {
  width: 315px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #000;
  border-radius: 36px;
  padding: 10px 10px 10px 30px;
  position: relative;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow.margin1 {
  margin: 52px 0 17px 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow.margin2 {
  margin: 52px 0 15px 0;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow.margin3 {
  margin: 52px 0 0 0;
}

.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .btn {
  margin: 50px 0 0 0;
}

@media (max-width: 1050px) {
  .wrapperMain #section4 {
    padding: 35px 30px 60px 30px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .title {
    font-size: 32px;
  }
}

@media (max-width: 950px) {
  .wrapperMain #section4 .row {
    flex-direction: column;
  }

  .wrapperMain #section4 .boxElementContainer .boxElement.boxElement2 {
    height: 105px;
  }

  .wrapperMain #section4 .boxElementContainer .text.text3 {
    font-size: 15.5px;
    top: 32px;
  }

  .wrapperMain #section4 .boxElementContainer .circle.circle2 {
    width: 85px;
    height: 85px;
    top: 10px;
    left: 10px;
  }

  .wrapperMain #section4 .boxElementContainer .circle .textSmall {
    font-size: 18px;
  }

  .wrapperMain #section4 .boxElementContainer .coverContainer {
    width: 85px;
    height: 95px;
  }

  .wrapperMain #section4 .boxElementContainer .boxElementCover {
    width: 105px;
    height: 105px;
  }

  .wrapperMain #section4 .boxElementContainer .btnMore2 {
    right: -50px;
  }

  .wrapperMain #section4 .boxElementContainer .imgStar7 {
    top: unset;
    bottom: 15px;
    left: 50px;
  }

  .wrapperMain #section4 .boxElementContainer.boxElementContainer2 {
    min-width: 110px;
    max-width: 110px;
  }

  .wrapperMain #section4 .boxElementContainer.active3.boxElementContainer2 {
    max-width: 310px;
  }

  .wrapperMain #section4 .boxElementContainer.active3 .text.text3 {
    right: 18px;
    top: 54px;
  }

  .wrapperMain #section4 .boxElementContainer.active3 .imgStar7 {
    top: unset;
    bottom: -47px;
    left: 60px;
  }

  .wrapperMain #section4 .boxElementContainer:nth-child(2) {
    margin: 80px 0;
  }
}

@media (max-width: 900px) {
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .title {
    text-align: left;
  }
}

@media (max-width: 800px) {
  .wrapperMain #section4 {
    padding: 35px 20px 60px 20px;
  }
}

@media (max-width: 700px) {
  .wrapperMain #section4 .modal .modalWrapper .modalContainer {
    transform: translate(20px, 0);
  }

  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent {
    width: calc(100% - 40px);
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .title {
    font-size: 28px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text
    br {
    display: none;
  }
}

@media (max-width: 600px) {
  .wrapperMain #section4 {
    padding: 10px 20px 60px 20px;
  }

  .wrapperMain #section4 .title {
    font-size: 36px;
  }
}

@media (max-width: 550px) {
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .modalRow {
    width: calc(100% + 30px);
    display: flex;
    align-items: center;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: unset;
    border-radius: 0 36px 36px 0;
    padding: 10px 10px 10px 30px;
    position: relative;
    left: -15px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .modalRow.moreOffset {
    left: -38px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .modalRow.margin1 {
    margin: 52px 0 39px 0;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.mobile {
    display: flex;
    visibility: visible;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall1 {
    max-width: 225px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall2 {
    max-width: 350px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .subTitle
    .desktop {
    display: none;
    visibility: hidden;
  }
}

@media (max-width: 500px) {
  .wrapperMain #section4 .boxElementContainer .blueBox {
    padding: 115px 26px 72px 40px;
    top: 50%;
  }

  .wrapperMain #section4 .boxElementContainer .blueBox .imgBlueBox {
    bottom: -72px;
    right: 20px;
  }

  .wrapperMain #section4 .title {
    font-size: 34px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .title {
    font-size: 24px;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .subTitle {
    text-align: left;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall1 {
    max-width: unset;
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall2 {
    max-width: unset;
  }
}

@media (max-width: 450px) {
  .wrapperMain #section4 .boxElementContainer .blueBox {
    width: 350px;
    padding: 105px 26px 72px 26px;
    top: calc(50% + 10px);
  }
}

@media (max-width: 400px) {
  .wrapperMain #section4 .title {
    font-size: 28px;
  }

  .wrapperMain #section4 .boxElementContainer .blueBox {
    width: 280px;
    padding: 75px 26px 72px 26px;
    top: calc(50% + 40px);
  }
}

@media (max-width: 385px) {
  .wrapperMain #section4 .modal .modalWrapper .modalContainer {
    transform: translate(5px, 0);
  }

  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent {
    width: calc(100% - 10px);
  }

  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .wrapperMain #section4 .title {
    font-size: 24px;
  }

  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent {
    padding: 45px 20px 60px 20px;
  }
}

.wrapperMain #section5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #d1d3d4;
  padding: 10px 40px 60px 40px;
}

@media (max-width: 1050px) {
  .wrapperMain #section5 {
    padding: 0 30px 40px 30px;
  }
}

@media (max-width: 800px) {
  .wrapperMain #section5 {
    padding: 0 20px 40px 20px;
  }
}

.wrapperMain #section5 .sparkContainerTop {
  width: 100%;
  overflow: hidden;
  position: relative;
  top: 1px;
}

.wrapperMain #section5 .sparkContainerTop .imgSpark {
  width: 1440px;
  height: 27px;
  background-image: url("../img/section5-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapperMain #section5 .sparkContainerBottom {
  width: 100%;
  overflow: hidden;
  position: relative;
  bottom: 1px;
}

.wrapperMain #section5 .sparkContainerBottom .imgSpark {
  width: 1440px;
  height: 22px;
  background-image: url("../img/section5-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.wrapperMain #section5 .cloudContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ff0eb2;
  overflow: hidden;
}

.wrapperMain #section5 .cloudContainer .cloudContent {
  max-width: 1150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 80px 80px 0 90px;
}

.wrapperMain #section5 .title {
  text-align: center;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 62px 0 54px 0;
}

.wrapperMain #section5 .cloudElement {
  width: 100%;
  border-radius: 40px;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  z-index: 10;
}

.wrapperMain #section5 .relative {
  position: relative;
}

.wrapperMain #section5 .cloudWhite {
  text-align: right;
  background-color: #fff;
  color: #00f;
  padding: 15px 30px 15px 15px;
  margin: 0 0 25px auto;
}

.wrapperMain #section5 .cloudWhite .br1 {
  display: none;
}

.wrapperMain #section5 .cloudWhite .br2 {
  display: none;
}

.wrapperMain #section5 .cloudWhite1 {
  max-width: 380px;
}

.wrapperMain #section5 .cloudWhite2 {
  max-width: 475px;
}

.wrapperMain #section5 .cloudWhite3 {
  max-width: 220px;
}

.wrapperMain #section5 .cloudWhite4 {
  max-width: 220px;
}

.wrapperMain #section5 .cloudWhite5 {
  max-width: 442px;
}

.wrapperMain #section5 .cloudBlue {
  background-color: #00f;
  color: #fff;
  padding: 15px 25px 15px 30px;
  margin: 0 0 25px 0;
}

.wrapperMain #section5 .cloudBlue span {
  color: red;
}

.wrapperMain #section5 .cloudBlue .br1 {
  display: none;
}

.wrapperMain #section5 .cloudBlue1 {
  max-width: 635px;
}

.wrapperMain #section5 .cloudBlue2 {
  max-width: 348px;
}

.wrapperMain #section5 .cloudBlue3 {
  max-width: 635px;
}

.wrapperMain #section5 .cloudBlue4 {
  max-width: 635px;
}

.wrapperMain #section5 .cloudBlue5 {
  max-width: 348px;
}

.wrapperMain #section5 .arrowContainer {
  display: flex;
  position: absolute;
  top: calc(50% - 12.5px);
  right: 570px;
  transform: translateY(-50%);
  animation-duration: 3s;
  animation-name: leftRightMoveArrow;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 1;
}

.wrapperMain #section5 .imgArrow {
  width: 29px;
  height: 52px;
  background-image: url("../img/section5-4.svg");
  margin: 0 10px 0 0;
}

.wrapperMain #section5 .imgStar1 {
  width: 120px;
  height: 114px;
  background-image: url("../img/section5-3.svg");
  position: absolute;
  top: -68px;
  left: -59px;
  animation-duration: 9s;
  animation-name: rotateStar;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.wrapperMain #section5 .imgStar2 {
  width: 241px;
  height: 239px;
  background-image: url("../img/section5-5.svg");
  position: absolute;
  top: -143px;
  right: -70px;
  z-index: -1;
}

.wrapperMain #section5 .imgStar3 {
  width: 116px;
  height: 90px;
  background-image: url("../img/section5-6.svg");
  position: absolute;
  top: -74px;
  left: -74px;
}

.wrapperMain #section5 .imgStar4 {
  width: 137px;
  height: 135px;
  background-image: url("../img/section5-7.svg");
  position: absolute;
  top: -108px;
  right: -215px;
}

.wrapperMain #section5 .imgStar5 {
  width: 342px;
  height: 335px;
  background-image: url("../img/section5-8.svg");
  position: absolute;
  bottom: -241px;
  left: -52px;
  z-index: -1;
}

.wrapperMain #section5 .imgStar6 {
  width: 121px;
  height: 119px;
  background-image: url("../img/section5-9.svg");
  position: absolute;
  top: -60px;
  right: 383px;
  z-index: -1;
}

.wrapperMain #section5 .imgStar7 {
  display: none;
  width: 97px;
  height: 75px;
  background-image: url("../img/section5-10.svg");
  position: absolute;
  top: -5px;
  right: -85px;
}

.wrapperMain #section5 .imgStar8 {
  display: none;
  width: 110px;
  height: 215px;
  background-image: url("../img/section5-11.svg");
  position: absolute;
  top: 600px;
  right: 0px;
}

.wrapperMain #section5 .imgStar9 {
  display: none;
  width: 104px;
  height: 103px;
  background-image: url("../img/section5-12.svg");
  position: absolute;
  bottom: -44px;
  left: -11px;
  z-index: -1;
}

.wrapperMain #section5 .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.wrapperMain #section5 .row {
  display: flex;
  margin: 0 0 43px 0;
  gap: 24px;
  width: 100%;
}

@media (max-width: 800px) {
  .wrapperMain #section5 .row {
    flex-direction: column;
    margin: 0 0 35px 0;
  }
}

.wrapperMain #section5 .visa-card {
  max-width: 80vw;
  width: 345px;
}

.wrapperMain #section5 .img {
  text-align: center;
  margin: 10px 0 0;
}

.wrapperMain #section5 .btn {
  margin: 60px auto 0;
  max-width: 100%;
}

.wrapperMain #section5 .text {
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0 0 20px 0;
}

@media (max-width: 1000px) {
  .wrapperMain #section5 .text {
    font-size: 20px;
    line-height: 27px;
    margin: 0 0 18px 0;
  }
}

@media (max-width: 500px) {
  .wrapperMain #section5 .text {
    font-size: 18px;
    margin: 0 0 16px 0;
  }
}

.wrapperMain #section5 .textWhite {
  color: #fff;
}

@media (max-width: 500px) {
  .wrapperMain #section5 .title {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  .wrapperMain #section5 .blueList {
    padding: 0 0 0 20px;
  }
}

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

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

@keyframes leftRightMoveArrow {
  0% {
    transform: translate(0px, -50%);
  }

  100% {
    transform: translate(117px, -50%);
  }
}

@media (max-width: 1050px) {
  .wrapperMain #section5 .arrowContainer {
    right: 400px;
  }

  .wrapperMain #section5 .cloudWhite1 {
    max-width: 360px;
  }

  .wrapperMain #section5 .cloudWhite2 {
    max-width: 415px;
  }

  .wrapperMain #section5 .cloudWhite5 {
    max-width: 310px;
  }

  .wrapperMain #section5 .cloudBlue1 {
    max-width: 490px;
  }

  .wrapperMain #section5 .cloudBlue2 {
    max-width: 320px;
  }

  .wrapperMain #section5 .cloudBlue3 {
    max-width: 490px;
  }

  .wrapperMain #section5 .cloudBlue4 {
    max-width: 490px;
  }

  .wrapperMain #section5 .cloudBlue5 {
    max-width: 320px;
  }

  .wrapperMain #section5 .imgStar5 {
    width: 274px;
    height: 268px;
    bottom: -170px;
    left: -60px;
  }

  .wrapperMain #section5 .imgStar6 {
    right: 250px;
  }
}

@media (max-width: 850px) {
  .wrapperMain #section5 .arrowContainer {
    right: unset;
    left: 230px;
  }

  .wrapperMain #section5 .cloudContainer .cloudContent {
    max-width: 720px;
    padding: 80px 20px 0 20px;
  }

  .wrapperMain #section5 .cloudWhite .br2 {
    display: flex;
  }

  .wrapperMain #section5 .cloudWhite1 {
    max-width: 290px;
  }

  .wrapperMain #section5 .cloudWhite2 {
    max-width: 360px;
  }

  .wrapperMain #section5 .cloudBlue1 {
    max-width: 390px;
  }

  .wrapperMain #section5 .cloudBlue3 {
    max-width: 390px;
  }

  .wrapperMain #section5 .cloudBlue4 {
    max-width: 390px;
  }

  .wrapperMain #section5 .imgStar1 {
    top: -60px;
    left: -45px;
  }

  .wrapperMain #section5 .imgStar2 {
    display: none;
  }

  .wrapperMain #section5 .imgStar3 {
    display: none;
  }

  .wrapperMain #section5 .imgStar4 {
    display: none;
  }

  .wrapperMain #section5 .imgStar5 {
    display: none;
  }

  .wrapperMain #section5 .imgStar6 {
    top: unset;
    bottom: -28px;
    right: 247px;
  }

  .wrapperMain #section5 .imgStar7 {
    display: flex;
  }

  .wrapperMain #section5 .imgStar8 {
    display: flex;
  }

  .wrapperMain #section5 .imgStar9 {
    display: flex;
  }
}

@media (max-width: 600px) {
  .wrapperMain #section5 .sparkContainerTop .imgSpark {
    width: 687px;
    height: 13px;
    background-image: url("../img/section5-11.png");
  }

  .wrapperMain #section5 .sparkContainerBottom .imgSpark {
    width: 621px;
    height: 18px;
    background-image: url("../img/section5-12.png");
  }

  .wrapperMain #section5 .arrowContainer {
    left: 130px;
  }

  .wrapperMain #section5 .cloudElement {
    font-size: 18px;
  }

  .wrapperMain #section5 .cloudWhite {
    margin: 0 0 20px auto;
  }

  .wrapperMain #section5 .cloudWhite1 {
    max-width: 240px;
  }

  .wrapperMain #section5 .cloudWhite2 {
    max-width: 290px;
  }

  .wrapperMain #section5 .cloudWhite3 {
    max-width: 200px;
  }

  .wrapperMain #section5 .cloudWhite4 {
    max-width: 200px;
  }

  .wrapperMain #section5 .cloudWhite5 {
    max-width: 270px;
  }

  .wrapperMain #section5 .cloudBlue {
    margin: 0 0 20px 0;
  }

  .wrapperMain #section5 .cloudBlue1 {
    max-width: 245px;
  }

  .wrapperMain #section5 .cloudBlue2 {
    max-width: 270px;
  }

  .wrapperMain #section5 .cloudBlue3 {
    max-width: 270px;
  }

  .wrapperMain #section5 .cloudBlue4 {
    max-width: 282px;
  }

  .wrapperMain #section5 .cloudBlue5 {
    max-width: 282px;
  }

  .wrapperMain #section5 .imgStar1 {
    width: 96px;
    height: 91px;
    top: -40px;
  }

  .wrapperMain #section5 .imgStar6 {
    right: 217px;
  }
}

@media (max-width: 450px) {
  .wrapperMain #section5 .arrowContainer {
    left: 50px;
  }

  .wrapperMain #section5 .cloudElement {
    font-size: 16px;
  }

  .wrapperMain #section5 .cloudWhite {
    margin: 0 0 15px auto;
    padding: 15px 20px 15px 15px;
  }

  .wrapperMain #section5 .cloudWhite1 {
    max-width: 190px;
  }

  .wrapperMain #section5 .cloudWhite2 {
    max-width: 230px;
  }

  .wrapperMain #section5 .cloudWhite3 {
    max-width: 175px;
  }

  .wrapperMain #section5 .cloudWhite4 {
    max-width: 170px;
  }

  .wrapperMain #section5 .cloudWhite5 {
    max-width: 225px;
  }

  .wrapperMain #section5 .cloudBlue {
    margin: 0 0 15px 0;
    padding: 15px 15px 15px 20px;
  }

  .wrapperMain #section5 .cloudBlue1 {
    max-width: 200px;
  }

  .wrapperMain #section5 .cloudBlue2 {
    max-width: 230px;
  }

  .wrapperMain #section5 .cloudBlue3 {
    max-width: 230px;
  }

  .wrapperMain #section5 .cloudBlue4 {
    max-width: 240px;
  }

  .wrapperMain #section5 .cloudBlue5 {
    max-width: 240px;
  }

  .wrapperMain #section5 .imgStar6 {
    width: 97px;
    height: 95px;
    right: 187px;
  }
}

@media (max-width: 350px) {
  .wrapperMain #section5 .cloudElement {
    font-size: 15px;
  }

  .wrapperMain #section5 .cloudWhite1 {
    max-width: 182px;
  }

  .wrapperMain #section5 .cloudWhite2 {
    max-width: 200px;
  }

  .wrapperMain #section5 .cloudWhite3 {
    max-width: 160px;
  }

  .wrapperMain #section5 .cloudWhite4 {
    max-width: 157px;
  }

  .wrapperMain #section5 .cloudWhite5 {
    max-width: 210px;
  }

  .wrapperMain #section5 .cloudBlue1 {
    max-width: 178px;
  }

  .wrapperMain #section5 .cloudBlue2 {
    max-width: 208px;
  }

  .wrapperMain #section5 .cloudBlue3 {
    max-width: 208px;
  }

  .wrapperMain #section5 .cloudBlue4 {
    max-width: 221px;
  }

  .wrapperMain #section5 .cloudBlue5 {
    max-width: 221px;
  }

  .wrapperMain #section5 .imgStar1 {
    left: -50px;
  }

  .wrapperMain #section5 .imgStar6 {
    right: 172px;
  }
}

.wrapperMain #section6 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 40px 57px 40px;
}

.wrapperMain #section6 .content {
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.wrapperMain #section6 .row {
  display: flex;
  margin: 0 0 43px 0;
}

.wrapperMain #section6 .column {
  display: flex;
  flex-direction: column;
}

.wrapperMain #section6 .column.margin1 {
  margin: 0px 0 0 0;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.wrapperMain #section6 .column.margin2 {
  margin: 0 0 0 45px;
}

@media (max-width: 800px) {
  .wrapperMain #section6 .column.margin2 {
    margin: 0 0 0 20px;
  }
}

.wrapperMain #section6 .title {
  height: 64px;
  display: flex;
  align-items: center;
  color: #ff0eb2;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0 0 5px 0;
}

.wrapperMain #section6 .title::after {
  content: "";
  width: 131px;
  height: 129px;
  background-image: url("../img/section6-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 50px 15px;
}

.wrapperMain #section6 .nowrap {
  white-space: nowrap;
}

.wrapperMain #section6 ul.suqare-bullet {
  list-style: none;
  padding-left: 0;
}

.wrapperMain #section6 ul.suqare-bullet li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.wrapperMain #section6 ul.suqare-bullet li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  background-color: #000;
}

.wrapperMain #section6 .text {
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0 0 20px 0;
}

.wrapperMain #section6 .text strong {
  font-family: mBank;
  font-weight: 700;
}

.wrapperMain #section6 .blueList li::marker {
  color: #00f;
}

.wrapperMain #section6 .zero-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wrapperMain #section6 .label {
  font-size: 55px;
  font-weight: 600;
  align-self: flex-start;
}

.wrapperMain #section6 .zero {
  position: relative;
  width: 130px;
  height: 270px;
  transform-style: preserve-3d;
  transform-origin: center center;
  animation: spin3D 3s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  color: transparent;
  line-height: 180px;
}

.wrapperMain #section6 .zero span {
  position: absolute;
  font-size: 270px;
  font-weight: bold;
  -webkit-text-stroke: 10px blue;
  color: transparent;
  text-align: center;
  line-height: 1;
}

.wrapperMain #section6 .zero span:nth-child(1) {
  transform: translateZ(0px);
}

.wrapperMain #section6 .zero span:nth-child(2) {
  transform: translateZ(-1px);
  opacity: 0.9;
}

.wrapperMain #section6 .zero span:nth-child(3) {
  transform: translateZ(-2px);
  opacity: 0.8;
}

.wrapperMain #section6 .zero span:nth-child(4) {
  transform: translateZ(-3px);
  opacity: 0.7;
}

.wrapperMain #section6 .zero span:nth-child(5) {
  transform: translateZ(-4px);
  opacity: 0.6;
}

@keyframes spin3D {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.wrapperMain #section6 .suffix {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: end;
  margin-bottom: -40px;
}

.wrapperMain #section6 .zloty {
  font-size: 55px;
  font-weight: 600;
}

.wrapperMain #section6 .subtext {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 800px) {
  .wrapperMain #section6 .zloty,
  .wrapperMain #section6 .label {
    font-size: 32px;
  }

  .wrapperMain #section6 .zero {
    width: 100px;
    height: 220px;
  }

  .wrapperMain #section6 .zero span {
    font-size: 220px;
    -webkit-text-stroke: 8px blue;
  }

  .wrapperMain #section6 .subtext {
    font-size: 20px;
  }

  .wrapperMain #section6 .zero-block {
    gap: 10px;
    padding-bottom: 70px;
  }
}

.wrapperMain #section6 .imgStar2 {
  width: 35px;
  height: 32px;
  background-image: url("../img/section6-4.svg");
  position: absolute;
  top: 46px;
  left: 8px;
}

.wrapperMain #section6 .imgStar3 {
  width: 50px;
  height: 48px;
  background-image: url("../img/section6-5.svg");
  position: absolute;
  bottom: 93px;
  right: -71px;
}

.wrapperMain #section6 .imgTitle {
  width: 517px;
  height: 92px;
  background-image: url("../img/section6-2.svg");
  margin: 0 0 0 59px;
}

.wrapperMain #section6 .imgCards {
  width: 416px;
  height: 350px;
  background-image: url("../img/section6-3.png");
  margin: 23px 0 0 73px;
  position: relative;
}

.wrapperMain #section6 .imgCardsMobile {
  display: none;
  visibility: hidden;
}

@media (max-width: 1150px) {
  .wrapperMain #section6 .text br {
    display: none;
  }
}

@media (max-width: 1100px) {
  .wrapperMain #section6 .title {
    font-size: 36px;
  }

  .wrapperMain #section6 .title::after {
    width: 105px;
    height: 103px;
  }

  .wrapperMain #section6 .text {
    font-size: 22px;
    line-height: 28px;
  }

  .wrapperMain #section6 .imgTitle {
    width: 414px;
    height: 74px;
  }

  .wrapperMain #section6 .imgCards {
    width: 333px;
    height: 280px;
  }
}

@media (max-width: 1000px) {
  .wrapperMain #section6 {
    padding: 80px 30px 57px 30px;
  }

  .wrapperMain #section6 .column.margin {
    margin: 0 0 0 30px;
  }

  .wrapperMain #section6 .title {
    font-size: 34px;
  }

  .wrapperMain #section6 .title::after {
    width: 105px;
    height: 103px;
  }

  .wrapperMain #section6 .text {
    font-size: 20px;
    line-height: 27px;
    margin: 0 0 18px 0;
  }

  .wrapperMain #section6 .imgTitle {
    width: 310px;
    height: 55px;
    margin: 0 0 0 50px;
  }

  .wrapperMain #section6 .imgCards {
    width: 250px;
    height: 210px;
    margin: 40px 0 0 70px;
  }
}

@media (max-width: 800px) {
  .wrapperMain #section6 {
    padding: 50px 20px 50px 20px;
  }

  .wrapperMain #section6 .row {
    flex-direction: column;
    margin: 0 0 35px 0;
  }

  .wrapperMain #section6 .column.margin {
    margin: 30px 0 0 0;
  }

  .wrapperMain #section6 .imgCardsMobile {
    display: flex;
    visibility: visible;
  }

  .wrapperMain #section6 .imgCardsDesktop {
    display: none;
    visibility: hidden;
  }

  .wrapperMain #section6 .imgCards {
    width: 416px;
    height: 350px;
    margin: 0 auto 30px;
  }
}

@media (max-width: 500px) {
  .wrapperMain #section6 {
    padding: 40px 20px 50px 20px;
  }

  .wrapperMain #section6 .column.margin {
    margin: 25px 0 0 0;
  }

  .wrapperMain #section6 .text {
    font-size: 18px;
    margin: 0 0 16px 0;
  }

  .wrapperMain #section6 .imgTitle {
    margin: 0 0 0 35px;
  }

  .wrapperMain #section6 .imgCards {
    width: 333px;
    height: 280px;
  }

  .wrapperMain #section6 .blueList {
    padding: 0 0 0 20px;
  }
}

@media (max-width: 380px) {
  .wrapperMain #section6 {
    padding: 30px 20px 60px 20px;
  }

  .wrapperMain #section6 .row {
    margin: 0 0 10px 0;
  }

  .wrapperMain #section6 .column.margin {
    margin: 20px 0 0 0;
  }

  .wrapperMain #section6 .title {
    height: 55px;
  }

  .wrapperMain #section6 .text {
    font-size: 16px;
  }

  .wrapperMain #section6 .imgTitle {
    width: 259px;
    height: 55px;
  }

  .wrapperMain #section6 .imgCards {
    width: 250px;
    height: 210px;
    margin: 0 auto 40px;
  }
}

.wrapperMain #section7 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
}

@media (max-width: 1050px) {
  .wrapperMain #section7 {
    padding: 60px 30px 70px 30px;
  }
}

@media (max-width: 800px) {
  .wrapperMain #section7 {
    padding: 30px 20px 20px 20px;
  }
}

.wrapperMain #section7 .container {
  max-width: 1111px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wrapperMain #section7 .title {
  text-align: left;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: #ff8600;
  margin-left: auto;
  margin-bottom: -190px;
}

#section7 .colored_stripe {
  max-width: 615px;
  margin-left: auto;
  margin-bottom: 90px;
}

.wrapperMain #section7 .title.mobile {
  display: none;
  visibility: hidden;
}

#section7 .embroidered-button {
  width: 315px;
}

.wrapperMain #section7 .rowArrow {
  max-width: 150px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 25px 0 10px 0;
}

.wrapperMain #section7 .rowArrow.mobile {
  display: none;
  visibility: hidden;
}

.wrapperMain #section7 .imgArrowPink {
  width: 29px;
  height: 61px;
  background-image: url("../img/section7-19.svg");
}

.wrapperMain #section7 .imgArrowGreen {
  width: 29px;
  height: 61px;
  background-image: url("../img/section7-20.svg");
}

.wrapperMain #section7 .cloudContainer {
  width: 100%;
  position: relative;
  margin: 40px 0 24px 0;
}

.wrapperMain #section7 .cloudContainer.desktop {
  display: flex;
}

.wrapperMain #section7 .cloudContainer.mobile {
  display: none;
  cursor: pointer;
}

.wrapperMain #section7 .cloudContainer.margin1 {
  margin: 20px 0 24px 0;
}

.wrapperMain #section7 .cloudContainer.margin2 {
  margin: 40px 0 24px 0;
}

.wrapperMain #section7 .cloudLeft {
  width: 545px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wrapperMain #section7 .cloudLeft .cludText {
  text-align: left;
  color: #fff;
  font-family: "mBank", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 15px 0 0;
}

.wrapperMain #section7 .cloudLeft .img1 img {
  width: 60px;
}

.wrapperMain #section7 .cloudLeft .img2 img {
  width: 60px;
}

.wrapperMain #section7 .cloudRight {
  width: 545px;
  display: flex;
  align-items: center;
  border-width: 6px;
  border-top-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-radius: 80px 0 0 80px;
  background-color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  right: 0px;
  top: 0;
}

.wrapperMain #section7 .cloudRight .cludText {
  color: #201c17;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 0 15px;
}

.wrapperMain #section7 .cloudRight .img1 {
  width: 36px;
  height: 56px;
  background-image: url("../img/section7-3.svg");
  flex-shrink: 0;
}

.wrapperMain #section7 .cloudRight .img2 {
  width: 59px;
  height: 55px;
  background-image: url("../img/section7-4.svg");
  flex-shrink: 0;
}

.wrapperMain #section7 .cloudRight.pink {
  border-color: #ff0eb2;
  padding: 9px 43px 9px 20px;
}

.wrapperMain #section7 .cloudRight.green {
  border-color: #00ff00;
  padding: 9px 20px 9px 31px;
}

.wrapperMain #section7 .infoScroll {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.5s all ease-in-out;
}

.wrapperMain #section7 .info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px 22px 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
}

@media (max-width: 1000px) {
  .wrapperMain #section7 .info {
    padding: 22px 25px 22px 30px;
  }
}

@media (max-width: 800px) {
  .wrapperMain #section7 .info {
    padding: 22px 25px 22px 20px;
  }
}

.wrapperMain #section7 .single-faq,
section#faq-2 .single-faq {
  margin: 0 0 30px 0;
  width: 100%;
  border-radius: 10px;
  background: #fff;
}

.wrapperMain #section7 .single-faq.active .infoCloudArrow {
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wrapperMain #section7 .single-faq .infoCloudArrow {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wrapperMain #section7 .info .infoCloudText {
  font-family: "mBank", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  color: #26221e;
}

.wrapperMain #section7 .info .infoCloudArrow img {
  width: 24px;
  transition: 0.3s all ease-in-out;
}

.wrapperMain #section7 .info.pink {
  background-color: #ff0eb2;
}

.wrapperMain #section7 .info.pink .infoCloudText {
  color: #fff;
}

.wrapperMain #section7 .info.green {
  background-color: #00ff00;
}

.wrapperMain #section7 .info.green .infoCloudText {
  color: #201c17;
}

.wrapperMain #section7 .info.active .infoCloudArrowWhite {
  transform: rotate(180deg);
}

.wrapperMain #section7 .info.active .infoCloudArrowBlack {
  transform: rotate(180deg);
}

.wrapperMain #section7 .infoContainer {
  max-width: 1111px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease-in-out;
  z-index: 0;
}

.wrapperMain #section7 .infoContainer .infoContent {
  display: flex;
  flex-direction: column;
  border-radius: 0 0 10px 10px;
  padding: 40px 65px 40px 30px;
}

.wrapperMain #section7 .infoContainer .infoContent img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  margin: 0 0 40px 0px;
}

.wrapperMain #section7 .infoContainer .infoContent .infoText {
  color: #26221e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .infoText strong {
  font-weight: 600;
}

.wrapperMain #section7 .infoContainer .infoContent .infoText.margin1 {
  margin: 37px 0 30px 0;
}

.wrapperMain #section7 .infoContainer .infoContent .infoText.margin2 {
  margin: 0px 0 26px 0;
}

.wrapperMain #section7 .infoContainer .infoContent .infoText.margin3 {
  margin: 41px 0 0 0;
}

.wrapperMain #section7 .infoContainer .infoContent .infoText.small {
  font-size: 16px;
}

.wrapperMain #section7 .infoContainer .infoContent .infoText.center {
  align-items: center;
}

.wrapperMain #section7 .infoContainer .infoContent .pink {
  color: #ff0eb2;
  font-family: mBank;
  font-size: 20px;
  font-weight: 700;
}

.wrapperMain #section7 .infoContainer .infoContent .black {
  color: #000;
  font-family: mBank;
  font-size: 20px;
  font-weight: 700;
}

.wrapperMain #section7 .infoContainer .infoContent .pinkBig {
  color: #ff0eb2;
  font-family: mBank;
  font-size: 24px;
  font-weight: 700;
}

.wrapperMain #section7 .infoContainer .infoContent .greenBig {
  color: #0f0;
  font-family: mBank;
  font-size: 24px;
  font-weight: 700;
}

.wrapperMain #section7 .infoContainer .infoContent .big {
  font-family: mBank;
  font-size: 20px;
  font-weight: 700;
}

.wrapperMain #section7 .infoContainer .infoContent .list {
  margin: 5px 0;
}

.wrapperMain #section7 .infoContainer .infoContent .list li {
  margin: 0 0 5px 0;
}

.wrapperMain #section7 .infoContainer .infoContent .column {
  display: flex;
  gap: 20px;
}

.wrapperMain #section7 .infoContainer .infoContent .column .row {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.wrapperMain
  #section7
  .infoContainer
  .infoContent
  .column
  .row:not(.row1)
  > .img {
  width: 50px;
  height: 50px;
}

.wrapperMain #section7 .infoContainer .infoContent .column.margin1 {
}

.wrapperMain #section7 .infoContainer .infoContent .column.column1 {
}

.wrapperMain #section7 .infoContainer .infoContent .column.column2 {
  width: 50%;
}

.wrapperMain #section7 .infoContainer .infoContent .column.column3 {
  width: 51%;
}

.wrapperMain #section7 .infoContainer .infoContent .column.column4 {
  width: 46%;
}

.wrapperMain #section7 .infoContainer .infoContent .row {
  width: 100%;
  display: flex;
}

.wrapperMain #section7 .infoContainer .infoContent .row.margin1 {
  margin: 0 0 55px 0;
}

.wrapperMain #section7 .infoContainer .infoContent .row.margin2 {
  margin: 0 0 66px 0;
}

.wrapperMain #section7 .infoContainer .infoContent .row.margin3 {
  margin: 0px 0 26px 0;
}

.wrapperMain #section7 .infoContainer .infoContent .row.sb {
  justify-content: space-between;
  gap: 20px;
}

.wrapperMain #section7 .infoContainer .infoContent .img1 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-8.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .img2 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-9.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .img3 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-10.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .img4 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-11.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .img5 {
  width: 162px;
  height: 53px;
  background-image: url("../img/section7-12.png");
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .img6 {
  width: 164px;
  height: 53px;
  background-image: url("../img/section7-13.png");
  margin: 0 40px 0 0;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .img7 {
  width: 163px;
  height: 53px;
  background-image: url("../img/section7-14.png");
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .imgDownloadPink {
  width: 49px;
  height: 40px;
  background-image: url("../img/section7-17.svg");
  margin: 0 0 0 30px;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .imgDownloadPink.mobile {
  display: none;
  visibility: hidden;
}

.wrapperMain #section7 .infoContainer .infoContent .imgDownloadGreen {
  width: 49px;
  height: 40px;
  background-image: url("../img/section7-18.svg");
  margin: 0 0 0 30px;
  flex-shrink: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .imgDownloadGreen.mobile {
  display: none;
  visibility: hidden;
}

.wrapperMain #section7 .infoContainer .infoContent .btnDarkRed {
  width: -moz-fit-content;
  width: fit-content;
  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: 12px 24px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #fff;
  font-size: 11.556px;
  font-weight: 600;
  background-color: #ae0000;
  border: 1px solid #ae0000;
}

.wrapperMain #section7 .infoContainer .infoContent .btnDarkRed:hover {
  color: #fff;
  background-color: #ae0000;
}

.wrapperMain #section7 .infoContainer .infoContent .btnDarkRed.margin1 {
  margin: 38px auto 0;
}

.wrapperMain #section7 .infoContainer .infoContent .btnDarkRed.margin2 {
  margin: 20px auto 0;
}

.wrapperMain #section7 .infoContainer .infoContent .slider {
  flex-direction: column;
  visibility: hidden;
  max-width: 500px;
  width: 100%;
  max-height: fit-content !important;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 30px 0;
  transition: 0.2s all ease-in-out;
}

.wrapperMain #section7 .infoContainer .infoContent .arrows {
  width: 100%;
  display: flex;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 10;
}

.wrapperMain #section7 .infoContainer .infoContent .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.wrapperMain #section7 .infoContainer .infoContent .arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.wrapperMain #section7 .infoContainer .infoContent .arrowLeftBlack {
  background-image: url("../img/section7-16.svg");
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .arrowRightBlack {
  background-image: url("../img/section7-16.svg");
  position: absolute;
  top: 0;
  right: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .arrowLeftGreen {
  background-image: url("../img/section7-21.svg");
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .arrowRightGreen {
  background-image: url("../img/section7-21.svg");
  position: absolute;
  top: 0;
  right: 0;
}

.wrapperMain #section7 .infoContainer .infoContent .sliderItem {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s all ease-in-out;
}

.wrapperMain #section7 .infoContainer .infoContent .sliderItem .itemRow {
  display: flex;
}

.wrapperMain #section7 .infoContainer .infoContent .sliderItem .number {
  text-align: right;
  font-family: mBank;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  margin: 0 0 0 30px;
}

.wrapperMain
  #section7
  .infoContainer
  .infoContent
  .sliderItem
  .number.numberPink {
  color: #ff0eb2;
}

.wrapperMain
  #section7
  .infoContainer
  .infoContent
  .sliderItem
  .number.numberGreen {
  color: #0f0;
}

.wrapperMain #section7 .infoContainer .infoContent .sliderItem.active {
  max-height: 300px;
}

.wrapperMain #section7 .infoContainer.active {
  margin: 0;
  visibility: visible;
}

@media (max-width: 1200px) {
  .wrapperMain #section7 .infoContainer.active {
  }
}

@media (max-width: 1000px) {
  .wrapperMain #section7 .infoContainer .infoContent {
    padding: 55px 30px 40px 30px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .infoText br {
    display: none;
  }

  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 15px;
  }

  .wrapperMain #section7 .infoContainer.active {
  }
}

@media (max-width: 800px) {
  .wrapperMain #section7 .container {
  }

  .wrapperMain #section7 .rowArrow.mobile {
    display: flex;
    visibility: visible;
  }

  .wrapperMain #section7 .title {
    font-size: 38px;
  }

  .wrapperMain #section7 .title.mobile {
    display: flex;
    visibility: visible;
  }

  .wrapperMain #section7 .infoScroll.infoScroll1 {
    align-items: flex-start;
  }

  .wrapperMain #section7 .infoScroll.infoScroll2 {
    align-items: flex-end;
  }

  .wrapperMain #section7 .cloudContainer.desktop {
    display: none;
  }

  .wrapperMain #section7 .cloudContainer.mobile {
    display: flex;
  }

  .wrapperMain #section7 .cloudLeft {
    max-width: 545px;
    width: calc(100% - 20px);
    left: 0px;
  }

  .wrapperMain #section7 .cloudRight {
    max-width: 545px;
    width: calc(100% - 20px);
  }

  .wrapperMain #section7 .info.pink {
    border-radius: 0 30px 30px 0;
    padding: 20px 8vw 20px 8vw;
  }

  .wrapperMain #section7 .info.green {
    border-radius: 30px 0 0 30px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 20px 8vw 20px 8vw;
  }

  .wrapperMain #section7 .info.green .infoCloudText1 {
    margin: 0 0 0 auto;
  }

  .wrapperMain #section7 .info.green .infoCloudText2 {
    margin: 0 90px 0 auto;
  }

  .wrapperMain #section7 .infoContainer {
  }

  .wrapperMain #section7 .infoContainer .infoContent {
    padding: 30px 20px 38px 20px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 14px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .desktop {
    display: none;
    visibility: hidden;
  }

  .wrapperMain #section7 .infoContainer .infoContent .slider {
    display: none !important;
    visibility: visible !important;
  }

  .wrapperMain #section7 .infoContainer .infoContent .column.column1 {
    flex-wrap: wrap;
    gap: 40px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .column .row {
    width: calc(100%);
  }

  .wrapperMain #section7 .infoContainer .infoContent img {
    margin-bottom: 10px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .row.sb {
    margin-top: 10px !important;
  }

  .wrapperMain #section7 .infoContainer .infoContent .list {
    padding: 0 0 0 20px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .imgDownloadPink.mobile {
    display: flex;
    visibility: visible;
  }

  .wrapperMain #section7 .infoContainer .infoContent .imgDownloadGreen.mobile {
    display: flex;
    visibility: visible;
  }

  .wrapperMain #section7 .infoContainer .infoContent .row1 {
    flex-wrap: wrap;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img1 {
    margin: 20px 0;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img2 {
    margin: 20px 0;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img3 {
    margin: 20px 0;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img4 {
    margin: 20px 0;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img5 {
    margin: 0 20px 0 0;
  }

  .wrapperMain #section7 .infoContainer .infoContent.infoContent1 {
    border-radius: 0 0 30px 0;
  }

  .wrapperMain #section7 .infoContainer .infoContent.infoContent2 {
    border-radius: 0 0 0 30px;
  }
}

@media (max-width: 600px) {
  .wrapperMain #section7 .sparkContainerTop .imgSpark {
    width: 619px;
    height: 29px;
    background-image: url("../img/section7-5.png");
    transform: rotate(0deg);
  }

  .wrapperMain #section7 .sparkContainerBottom .imgSpark {
    width: 600px;
    height: 20px;
    background-image: url("../img/section7-6.png");
  }

  .wrapperMain #section7 .title {
    font-size: 32px;
    line-height: 46px;
  }

  .wrapperMain #section7 .rowArrow {
    max-width: 125px;
  }
}

@media (max-width: 500px) {
  .wrapperMain #section7 .infoContainer.active {
  }
}

@media (max-width: 450px) {
  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 13px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .infoText.marign3 {
    margin: 35px 0 0 0;
  }
}

@media (max-width: 425px) {
  .wrapperMain #section7 .title {
    font-size: 28px;
    line-height: 42px;
  }

  .wrapperMain #section7 .rowArrow {
    max-width: 100px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img5 {
    width: 122px;
    height: 40px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img6 {
    width: 123px;
    height: 40px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img7 {
    width: 122px;
    height: 40px;
  }
}

@media (max-width: 370px) {
  .wrapperMain #section7 .infoContainer.active {
  }

  .wrapperMain #section7 .title {
    font-size: 24px;
    line-height: 36px;
  }

  .wrapperMain #section7 .title.margin1 {
    margin: 10px 0 0 0;
  }

  .wrapperMain #section7 .rowArrow {
    max-width: 80px;
    margin: 20px 0 10px 0;
  }
}

@media (max-width: 350px) {
  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 12px;
  }

  .wrapperMain #section7 .infoContainer .infoContent .img5 {
    margin: 0;
  }

  .wrapperMain #section7 .infoContainer.active {
  }
}

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

.wrapperMain #section11 .colored_stripe {
  max-width: 615px;
}

.wrapperMain #section11 .colored_stripe.top {
  margin-bottom: 55px;
}

.wrapperMain #section11 .colored_stripe.bottom {
  margin-top: 55px;
  margin-left: auto;
  float: right;
}

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

#faq-2 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 50px 0;
}

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

.wrapperMain #section11 .mainWrapper .docWrapper .element #Ustawienia_cookies {
  padding-left: 50px;
}

.wrapperMain #section11 .mainWrapper {
  display: flex;
  margin-top: 50px;
}

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

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

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

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

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

@media (max-width: 1000px) {
  .wrapperMain #section11 .mainWrapper .docWrapper {
    width: 49%;
    margin-right: 20px;
  }
}

@media (max-width: 800px) {
  .wrapperMain #section11 {
    padding: 0 20px;
  }
}

@media (max-width: 750px) {
  .wrapperMain #section11 {
    margin: 00px 0 40px 0;
  }

  .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;
  }
}



.wrapperMain #section12 {
  max-width: 1180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 0 40px;
  margin: 0 auto 100px auto;
}

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

.wrapperMain #section12 a {
  color: #fff;
  font-family: Montserrat;
  font-style: normal;
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
}

.wrapperMain #section12 a:hover {
  color: #0000ee;
}

@media (max-width: 800px) {
  .wrapperMain #section12 {
    padding: 40px 20px 0px 20px;
  }
}

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-right: 40px;
  padding-left: 40px;
  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;
}

#faq-2 .faq-question-btn .row {
  flex-wrap: nowrap;
}

#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 h2,
section#faq-2 h2 {
  color: #fff;
}

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;
  margin-right: 25px;
}

@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: #0065b1;
  padding: 5px 20px;
  position: relative;
}

section#faq-2 .single-faq.active {
  background-color: #008520;
}

section#faq-2 .single-faq:after {
  content: "";
  position: absolute;
  width: 3px;
  border-right: 3px solid #fff;
  height: calc(100% - 40px);
  left: 60px;
  top: 20px;
}

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

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

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

section#faq-2 .single-faq .faq-answer .content {
  padding: 0px 30px 30px 70px;
  color: #fff;
}

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: 24px;
}

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;
  }
}

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

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

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

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

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

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

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

.text-blue {
  color: #00f !important;
}

.bg-blue {
  background-color: #00f !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;
  }
}

footer .sectionInner{text-align:center}
footer .cookie-policy{font-size: 24px;
text-align: center;}

/** Age Gate **/

/* lock scroll when modal is up */
.przelotka.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* backdrop + centering */
.przelotka #age {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.przelotka #age.show {
  display: flex;
}

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

/* mBank logo top-left */
.przelotka .age-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 8rem;
}

/* heading text */
.przelotka .age-heading {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  z-index: 2;
  margin: 0 0 100px;
}

/* buttons row */
.przelotka .age-options {
  display: flex;
  gap: 30px;
  column-gap: 200px;
  margin-bottom: 100px;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.przelotka .age-options button {
  width: 340px;
  max-width: 80vw;
}

.przelotka .age-options:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/bo-moge.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* footer bar */
.przelotka .age-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #201c17;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  z-index: 2;
}

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

@media (max-width: 800px) {
  .przelotka .age-heading {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .przelotka .age-options:after {
    height: 180px;
    transform: translate(-50%, -5%);
  }

  .przelotka .age-options {
    margin-bottom: 40px;
  }

  .przelotka .age-options {
    display: flex;
    gap: 15px;
  }
}

.wcag-compliant .wrapperMain #hero .columnRight .layer_2 {
  animation: none;
}


.wcag-compliant #main-stage-lineup .artist-static-list{font-size: 30px;
max-width: 500px;}

/** Tablet **/

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

  h2 {
    font-size: 35px;
  }

  #festival-attractions h2 {
    font-size: 40px;
  }

  .sectionContent {
    font-size: 18px;
  }

  .wrapperMain #hero p.sectionContent {
    font-size: 40px;
  }

  .wrapperMain #hero .columnLeft {
    min-width: 0px;
  }

  .wrapperMain .btnCTA {
    font-size: 16px;
    width: fit-content;
  }

  #card-offer .cardContainer .sectionContent {
    font-size: 20px;
  }

  #card-offer .cardAvailability {
    font-size: 35px;
  }

  #festival-intro .sectionContent {
    font-size: 20px;
    max-width: 630px;
  }

  #festival-intro .promoText {
    font-size: 45px;
    max-width: 800px;
  }

  #main-stage-lineup .sectionContent{font-size: 40px;}

  #benefits-bubbles .benefits-bubble {
    width: 500px;
    height: 500px;
  }

  #benefits-bubbles .benefits-bubble .benefit-bubble-number {
    font-size: 100px;
  }

  #benefits-bubbles .benefits-bubble .number-prefix {
    font-size: 40px;
    margin-bottom: -10px;
  }

  #benefits-bubbles .benefits-bubble .benefit-bubble-description {
    font-size: 24px;
    max-width: 350px;
  }

  #benefits-bubbles .benefits-bubble .benefit-bubble-icon {
    width: 80px;
  }

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

  .wrapperMain .btnCTA {
    font-size: 14px;
    width: fit-content;
  }

  .benefit-bubble-container:nth-child(2) .benefits-bubble,
  .benefit-bubble-container:nth-child(3) .benefits-bubble {
    margin-top: -2%;
    margin-bottom: -2%;
  }

  #festival-attractions .autoAnimateSVG, #city-game-info .autoAnimateSVG{right: -30px;}


}

@media (max-width: 800px) {
  section,
  .section {
    padding: 50px 20px;
    position: relative;
  }
}

/** Mobile **/

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

  h2 {
    font-size: 20px;
  }

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

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

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

  .wrapperMain #header .headerWrapper .festival-logo {
    width: 48px;
    margin-left: 18px;
  }

  .wrapperMain #header .headerWrapper .visa-logo {
    width: 58px;
    margin-left: 11px;
  }

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

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

  section .columns {
    flex-direction: column;
  }

  .wrapperMain #hero p.sectionContent {
    font-size: 16px;
    margin-top: 10px;
  }

 

  #hero .heroDashLine_2,
  #hero .heroDashLine_1 {
    display: none;
  }

  .hero_unicorn_mobile {
    margin-top: -10%;
  }

  .wrapperMain #hero .columnRight .heroImageWrapper {
    margin: 0;
  }

  #card-offer .column.columnRight {
    padding: 0;
  }

  #card-offer .colored_stripe {
    margin-left: -20px;
    min-width: calc(100% + 40px);
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
  }

  

  #card-offer .sectionContent.peselNumber {
    font-size: 12px;
  }

  #card-offer {
    padding-top: 30px;
  }

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

  #card-offer .cardAvailability {
    font-size: 18px;
  }

  #festival-intro {
    padding-top: 10px;
  }

  #festival-intro .promoText {
    font-size: 20px;
  }

  .benefit-bubble-container:nth-child(2) .benefits-bubble,
  .benefit-bubble-container:nth-child(3) .benefits-bubble {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .benefit-bubble-container .benefits-bubble,
  .benefit-bubble-container {
    margin-left: auto;
    margin-right: auto;
  }

  #benefits-bubbles .benefits-bubble .benefit-bubble-number {
    font-size: 60px;
  }

  #benefits-bubbles .benefits-bubble .number-prefix {
    font-size: 20px;
    margin-bottom: -5px;
  }

  #benefits-bubbles .benefits-bubble .benefit-bubble-description {
    font-size: 16px;
    max-width: 200px;
  }

  #benefits-bubbles .benefits-bubble .benefit-bubble-icon {
    width: 45px;
  }

  #benefits-bubbles .benefits-bubble {
    width: 280px;
    height: 280px;
    gap: 10px;
    margin-bottom: 130px;
  }

  #benefits-bubbles .benefits-bubble .btnCTA {
    position: absolute;
    bottom: -70px;
  }

  #benefits-bubbles {
    padding-bottom: 10px;
  }

  #zero-zloty .columnLeft {
    margin: 0px;
    width: 100%;
  }

  .zero-block {
    margin: 0;
    justify-content: center;
    gap: 10px;
    margin-top: -70px;
    margin-right: -25%;
  }

  #zero-zloty .columnLeft {
    text-align: left;
  }

  #zero-zloty .columnLeft img {
    max-width: 70%;
  }

  .zero-block .suffix {
    margin: 0;
  }

  .zero-block .zloty,
  .zero-block .label {
    font-size: 85px;
  }

  .zero-block .zero {
    width: 100px;
    height: 200px;
  }

  .zero-block .zero span {
    font-size: 220px;
  }

  .zero-block .subtext {
    font-size: 20px;
  }

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

  #zero-zloty .list-container li {
    font-size: 16px;
    padding-left: 20px;
  }

  ul.circle-bullet li::before {
    width: 10px;
    height: 10px;
    top: 5px;
  }

  #zero-zloty .list-container .colored_stripe_small {
    margin-left: -20px;
    min-width: calc(100% + 40px);
    float: none;
  }

  #zero-zloty {
    padding-bottom: 10px;
  }

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

  .wcag-toggle {
    margin-left: auto;
    width: 100%;
    justify-content: flex-end;
  }

  .toggle-switch {
    width: 100px;
    height: 34px;
    margin: 0;
  }

  /* Shrink the pill background */
  .toggle-switch .pill-background {
    width: 100px;
    height: 34px;
    border-radius: 24px;
  }

  /* Shrink the knob */
  .toggle-switch .toggle-slider {
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
  }

  /* Recalculate knob translation when checked */
  .toggle-switch input:checked ~ .toggle-slider {
    transform: translateX(66px);
  }

  /* Smaller label text and reposition */
  .toggle-switch .toggle-label {
    font-size: 14px;
    right: 12px;
  }

  .toggle-switch input:checked ~ .toggle-label {
    left: 10px;
  }

  .modal .promo-grid {
    flex-wrap: wrap;
  }

  .modal-content {
    padding: 25px;
  }

  #festival-attractions {
    padding-bottom: 10px;
  }

  #festival-attractions h2 {
    font-size: 20px;
    max-width: 300px;
  }

  #festival-attractions .sectionContent {
    font-size: 16px;
  }

  #festival-attractions .decorative_line_1 {
    margin-top: -11vw;
    width: 226vw;
    margin-left: -143vw;
    margin-bottom: -29vw;
  }

  #festival-attractions .attractions-route {
    margin-top: 50px;
  }

  #festival-attractions .attractions-route img.map-pin {
    width: 25px;
  }

  #festival-attractions .attractions-route p {
    font-size: 14px;
  }

  #festival-attractions .attractions-route p b {
    font-size: 16px;
  }

  #festival-attractions .attractions-route .column {
    gap: 10px;
    max-width: 288px;
  }

  #festival-attractions .attractions-route .columnRight {
    margin-top: 0px;
    flex-direction: row-reverse;
    text-align: right;
  }

  #festival-attractions .attractions-route .pin-path {
    width: 92%;
    left: 10px;
    top: -66%;
  }

  ul.circle-bullet li {
    font-size: 14px;
  }

  #festival-attractions .attractions-intro {
    margin: 50px 0px 20px 0px;
  }

  .wrapperMain #section7 .title {
    margin-bottom: 40px;
    font-size: 18px;
    margin-left: 0;
  }

  #section7 .embroidered-button {
    width: 115px;
    margin-left: 30px;
  }

  #section7 .colored_stripe {
    margin-bottom: 30px;
    margin-left: -20px;
    min-width: calc(100% + 40px);
  }

  .wrapperMain #section11 .colored_stripe {
    min-width: calc(100% + 40px);
    margin-left: -20px !important;
    float: none !important;
  }

  .wrapperMain #section7 .infoContainer .infoContent img {
    width: 50px;
    height: 50px;
  }

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

  .wrapperMain
    #section11
    .mainWrapper
    .docWrapper
    .element
    #Ustawienia_cookies {
    padding-left: 35px;
  }

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

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

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

  #card-offer .columns.cardContainer {
    margin-top: 30px;
  }

  .wcag-compliant header .skip-link {
    padding-right: 0px;
    width: 100%;
    order: 0;
  }

  .wcag-compliant #header .headerLogoContainer {
    order: 1;
  }

  .wcag-compliant .wcag-toggle {
    order: 2;
  }

  #card-offer .sectionContent{font-size: 16px;
  margin-top: 30px;
margin-bottom: 30px;}

  #main-stage-lineup .sectionContent{font-size: 24px;}

  .wcag-compliant #main-stage-lineup .artist-static-list{font-size: 24px;}


  #main-stage-lineup .colored_stripe{        margin-left: -20px;
    min-width: calc(100% + 40px);
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;}


    #main-stage-lineup .unicorn_sewing{margin-top: 0;
    margin-right: -10%;
    min-width: calc(100% + 50%);
  margin-bottom: -18%;}


  #hero .heroStar_1{width: 40px;
    left: 22px;
    top: 125px;
  }

  #hero .heroStar_2{
    width: 20px;
    left: 160px;
    top: -64px;
  }


  #main-stage-lineup{padding-bottom: 10px;}
  #main-stage-lineup .colored_stripe{margin-bottom: 0px;}

  #city-game-info .city-game-description{font-size: 16px;
  margin-bottom: 40px;}

  #city-game-info .city-game-highlight{font-size: 16px;
  margin-bottom: 15px;}

  #city-game-info .city-game-footer-note{font-size: 16px;
  margin-top: 30px;}

  footer .cookie-policy{font-size: 16px;}

}
