/* External fonts */
@font-face {
  font-family: "Panchang";
  src: url("../fonts/Panchang-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Panchang";
  src: url("../fonts/Panchang-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Panchang";
  src: url("../fonts/Panchang-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Panchang";
  src: url("../fonts/Panchang-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Panchang";
  src: url("../fonts/Panchang-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Panchang";
  src: url("../fonts/Panchang-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Panchang";
  src: url("../fonts/Panchang-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------------- Basic css ------------------ */
:root {
  scroll-behavior: unset;
  --white: #ffffff;
  --black: #000000;
  --body: #656161;

  --orange: #ee7501;
  --white2: #fafafa;
  --tlo: #efeae7;
  --light: #f6f7f2;
  --dark: #262626;
  --grey: #9a9a9a;
  --zielone: #5ea845;
  --rozowy: #dc2272;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);
  --orange_img: brightness(0) saturate(100%) invert(69%) sepia(82%)
    saturate(5864%) hue-rotate(11deg) brightness(104%) contrast(99%);
  --dark_img: brightness(0) saturate(100%) invert(10%) sepia(31%) saturate(7%)
    hue-rotate(4deg) brightness(97%) contrast(89%);
  --rozowy_img: brightness(0) saturate(100%) invert(20%) sepia(47%)
    saturate(6153%) hue-rotate(322deg) brightness(92%) contrast(87%);
  --zielone_img: brightness(0) saturate(100%) invert(54%) sepia(57%)
    saturate(452%) hue-rotate(60deg) brightness(96%) contrast(88%);

  --primaryfont: "Rajdhani", sans-serif;
  --secondaryfont: "Panchang", sans-serif;

  --menuHeight: 10rem;
}

img {
  width: 100%;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--dark);
  overflow-x: hidden;
  font-family: var(--primaryfont);
  background: var(--white);
}

.container {
  padding-left: 0;
  padding-right: 0;
}

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

.main_content > div:first-child,
.main_content > section:first-child {
  padding-top: var(--menuHeight);
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--secondaryfont);
  color: var(--orange);
  margin: 0;
  padding: 0;
  line-height: 1.15;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}

.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* Rajdhani */
.rajdhani {
  font-family: var(--primaryfont);
}

/* Panchang */
.panchang {
  font-family: var(--secondaryfont);
}

/* text colors */
.text-orange {
  color: var(--orange) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-grey {
  color: var(--grey) !important;
}

.text-rozowy {
  color: var(--rozowy) !important;
}

.text-zielone {
  color: var(--zielone) !important;
}

.text-tlo {
  color: var(--tlo) !important;
}

.text-white2 {
  color: var(--white2) !important;
}

/* bg colors */
.bg-orange {
  background: var(--orange) !important;
}

.bg-dark {
  background: var(--dark) !important;
}

.bg-grey {
  background: var(--grey) !important;
}

.bg-rozowy {
  background: var(--rozowy) !important;
}

.bg-zielone {
  background: var(--zielone) !important;
}

.bg-tlo {
  background: var(--tlo) !important;
}

.bg-white2 {
  background: var(--white2) !important;
}

/* mx-auto */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Font Weights */
.f-300 {
  font-weight: 300 !important;
}

.f-400 {
  font-weight: 400 !important;
}

.f-500 {
  font-weight: 500 !important;
}

.f-600 {
  font-weight: 600 !important;
}

.f-700 {
  font-weight: 700 !important;
}

.f-800 {
  font-weight: 800 !important;
}

.f-900 {
  font-weight: 900 !important;
}

/* titles */
/* h1 */
.title_140 {
  font-size: 14rem;
}

/* h2 */
.title_120 {
  font-size: 12rem;
  line-height: 1.2;
}

/* h3 */
.title_74 {
  font-size: 7.4rem;
  text-transform: uppercase;
}

/* h3 */
.title_70 {
  font-size: 7rem;
  line-height: 1.2;
}

/* h4 */
.title_60 {
  font-size: 6rem;
  line-height: 1.2;
}

/* h5 */
.title_48 {
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* h6 */
.title_30 {
  font-size: 3rem;
}

/* texts */
.text_xl,
.testy {
  font-size: 2rem;
  line-height: 1.4;
}

.teksty {
  font-size: 2rem;
  line-height: 1.2;
}

.text_lg {
  font-size: 1.8rem;
}

.text_md,
.uzupelnianie {
  font-size: 1.6rem;
}

.button-text {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

.text_sm {
  font-size: 1.4rem;
}

.text_xsm {
  font-size: 1.2rem;
}

.tytuly-24 {
  font-size: 2.4rem;
  line-height: 1;
}

.tytuly-32 {
  font-size: 3.2rem;
  line-height: 1;
}

.title-28 {
  font-size: 2.8rem;
  line-height: 1;
}

.spacing {
  letter-spacing: 0.05em;
}

.uppercase {
  text-transform: uppercase !important;
}

/* ========================= #Progress ======================= */
.progress-wrap {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  height: 6.5rem;
  width: 6.5rem;
  cursor: pointer;
  display: block;
  border-radius: 5rem;
  box-shadow: inset 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.5rem);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: var(--orange);
}

.progress-wrap:hover {
  background: #8b7409;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.arrow_top {
  width: 3rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  filter: var(--white_img);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--white);
  /* --- Lijn progres kleur --- */
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* ============= Buttons area ============== */
.btn {
  height: 3.6rem;
  min-width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid var(--orange);
  border-radius: 0.8rem;
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.35s ease;
}

.btn-fit {
  min-width: fit-content;
}

.btn:hover {
  background: var(--orange);
  color: var(--white);
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: fixed;
  z-index: 999999;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  height: var(--menuHeight);
  display: flex;
  align-items: center;
  font-family: var(--secondaryfont);
}

.hamburger-btn span {
  display: block;
  width: 4rem;
  height: 0.4rem;
  background: #ee7501;
  transition: 0.35s ease;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 4rem;
}

.hamburger-btn.active span,
.hamburger-btn:hover span {
  width: 2.5rem;
}

.hamburger-btn .span1,
.hamburger-btn .span3 {
  margin-left: auto;
}

.hamburger-btn .span2 {
  margin-right: auto;
}

.logo img {
  width: 34.6rem;
}

.nav-left {
  gap: 11.5rem;
}

.nav-right ul li,
.language-select-dropdown li {
  cursor: pointer;
  color: #262626;
  font-size: 2rem;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.nav-right ul,
.language-select-dropdown {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-right ul li:hover,
.nav-right ul li.active,
.language-select-dropdown li.active,
.language-select-dropdown li:hover {
  color: #ee7501;
  font-weight: 700;
}

.nav-right {
  gap: 3.5rem;
}

.header-btn {
  height: 4rem;
  display: flex;
  align-items: center;
  width: 36rem;
  justify-content: center;
  color: #f6f7f2;
  background: #262626;
  border-radius: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
}

.header-btn.v2 {
  background: #ee7501;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.site_header nav {
  border: 0.1rem solid #262626;
  padding: 0 8.4rem;
  background: #efeae7;
  border-radius: 1.6rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
}

.header-btn:hover {
  background: #000000;
}

.header-btn.v2:hover,
.menutwo-dropdown:hover .header-btn.v2 {
  border-radius: 0;
  background: #ee7501;
}

/* hamburger-btn */
.hamburger-btn span {
  display: block;
  width: 4rem;
  height: 0.4rem;
  background: #ee7501;
  transition: 0.35s ease;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 4rem;
}

.hamburger-btn.active span {
  width: 2.5rem;
}

.hamburger-btn .span1,
.hamburger-btn .span3 {
  margin-left: auto;
}

.hamburger-btn .span2 {
  margin-right: auto;
}

/* ================= Hero area ================ */
.swiper-pagination {
  position: static;
  display: flex;
}

.hero-slide-inner {
  position: absolute;
  left: 12.5rem;
  bottom: 12rem;
  color: var(--white);
  z-index: 3;
}

.hero-slide-inner h6 {
  color: var(--white);
  padding: 1.4rem 0 1.6rem;
}

.hero-slide-inner svg {
  width: 16rem;
  display: block;
  margin-left: -0.35rem;
}

.hero-area .swiper-pagination {
  position: absolute;
  left: 12.5rem;
  bottom: 9rem;
  gap: 1.5rem;
}

.swiper-pagination-bullet {
  width: 1.6rem;
  height: 1.6rem;
  border: 0.3rem solid #f6f7f2;
  opacity: 1;
  background: transparent;
  margin: 0 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ee7501;
  border-color: #ee7501;
}

.hero-img {
  height: 70rem;
  object-fit: cover;
}

.hero-slide {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
}

.bg-30 {
  position: relative;
}

.hero-slide:before,
.bg-30:before {
  content: "";
  width: 100%;
  height: 100%;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0.03%, rgba(0, 0, 0, 0.3) 100.87%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.z-2 {
  z-index: 3;
}

/* ===================== Kino area ====================== */
.kino-title {
  position: relative;
  width: fit-content;
}

.kino-icon {
  position: absolute;
  top: -0.4rem;
  width: 36.2rem;
  z-index: 1;
  right: -8.7rem;
}

.kino-title .title_140 {
  position: relative;
  z-index: 2;
}

.kino-area {
  padding: 13.8rem 0;
}

.kino-area .row {
  display: flex;
  align-items: center;
}

.kino-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

.kino-list .btn {
  min-width: 100%;
}

/* ================= Service area ================== */
.services-area {
  padding-bottom: 13.2rem;
}

.services-area .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 6rem;
}

.gx-20 {
  --bs-gutter-x: 2rem;
}

.gy-60 {
  --bs-gutter-y: 6rem;
}

.card-img {
  height: 25rem;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.icon-28 {
  width: 2.8rem;
}

.icon-right {
  position: absolute;
  right: 2.3rem;
  top: 1.7rem;
}

.card-img-wrap {
  position: relative;
}

.card-btns {
  gap: 1.5rem;
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  opacity: 0;
  transition: 0.35s ease;
  top: auto;
  z-index: 2;
}

.card:hover .card-btns {
  opacity: 1;
  bottom: 1.6rem;
}

.btn.btn-fit {
  min-width: fit-content;
}

.card {
  background: transparent;
  border: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  display: block;
  transition: 0.35s ease;
}

.card-info {
  padding: 1.8rem 1.8rem 2rem 2.5rem;
  position: relative;
  z-index: 4;
}

.card-info .teksty {
  padding: 0.5rem 0 1.2rem;
}

.card:before {
  content: "";
  height: 3rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 0.3rem solid var(--light);
  border-top: 0;
  border-radius: 1.6rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  pointer-events: none;
}

.card-info .button-text {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.card-link {
  display: grid;
  align-items: center;
  white-space: nowrap;
  gap: 2.5rem;
  grid-template-columns: 1fr 6.5rem;
  transition: 0.35s ease;
}

.card-link span {
  transition: 0.35s ease;
}

.card-link img {
  display: block;
  width: 100%;
  transition: 0.35s ease;
}

.card .card-link:hover span {
  color: var(--orange) !important;
}

.card .card-link:hover img {
  filter: invert(54%) sepia(96%) saturate(1012%) hue-rotate(358deg)
    brightness(103%) contrast(98%);
}

/* =============== section-bottom =============== */
.section-bottom-img {
  width: 25.2rem;
  z-index: 1;
  position: absolute;
  transition: 0.35s ease;
}

.section-bottom:hover .section-bottom-img {
  transform: rotate(7.8deg);
}

.section-bottom.v2:hover .section-bottom-img {
  filter: invert(54%) sepia(96%) saturate(1012%) hue-rotate(358deg)
    brightness(103%) contrast(98%);
}

.section-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 13.3rem auto 0 auto;
  width: fit-content;
  height: 13.5rem;
}

.section-bottom .title_30 {
  position: relative;
  z-index: 2;
  font-weight: 600;
  text-align: center;
  transition: 0.35s ease;
}

.section-bottom:hover .title_30 {
  color: var(--orange) !important;
}

.section-bottom.v2:hover .title_30 {
  color: var(--dark) !important;
}

/* =============== program-area ================ */
.program-area {
  display: flex;
  align-items: end;
}

.program-img {
  width: 64.7rem;
  display: block;
  margin-top: -11.9rem;
}

.ellipse-orange {
  width: 13.4rem;
}

.animate-hand {
  width: 20.5rem;
  display: flex;
  margin-left: -10.2rem;
  animation: left-to-right 3s infinite ease-in-out;
}

@keyframes left-to-right {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12.5rem);
  }

  70% {
    transform: translateX(12.5rem);
  }

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

.hand-animate {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 19rem;
  right: -14.5rem;
}

.program-img-wrap {
  position: relative;
}

.program-inner {
  justify-content: space-between;
  padding-right: 7.5rem;
  height: 100%;
}

.program-content .title_74 {
  transition: 0.15s ease;
}

.program-content .title_74:hover {
  color: var(--orange) !important;
  text-decoration: underline;
}

/* =============== Service Area Two =============== */
.service-header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14.5rem;
}

.blog-star {
  position: absolute;
  width: 27.2rem;
  left: -4.4rem;
}

.service-header .title_120 {
  position: relative;
  z-index: 2;
}

.services-area-two {
  padding: 20rem 0 13.3rem;
}

/* ============== vhs area =================== */
.vhs-area {
  position: relative;
  z-index: 1;
  padding-bottom: 23.8rem;
}

.vhs-content {
  max-width: 60.7rem;
}

.face-anim-wrap img {
  width: 28.5rem;
}

.face-anim-wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  top: 10rem;
}

.face-animation {
  position: relative;
  max-width: 85rem;
}

.face-stars-box {
  width: 25rem;
  height: 26rem;
  position: absolute;
  left: calc(50% - 1.5rem);
  transform: translateX(-50%);
  top: 10rem;
  z-index: -1;
}

.face-star-lg {
  width: 23.8rem;
}

.face-star-sm {
  width: 7.6rem;
}

.vacume-img {
  max-width: 43.4rem;
  margin: 8.6rem auto 0;
  display: block;
}

.vhs-content-wrapper {
  padding-right: 11.8rem;
}

.face-animation-img {
  position: absolute;
  animation: up-down 3s infinite ease-in-out;
  animation-delay: 1.5s;
}

@keyframes up-down {
  0%,
  30% {
    transform: translate(0, 0); /* 3s wait */
  }

  50% {
    transform: translate(0, -28.5rem);
  }

  80% {
    transform: translate(0, -28.5rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* STAR ONE */
.face-star-one {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  animation: star-one 3s infinite ease-in-out;
}

@keyframes star-one {
  0%,
  30% {
    transform: translate(0, 0); /* wait */
  }

  50% {
    transform: translate(-15.3rem, -22rem);
  }

  80% {
    transform: translate(-15.3rem, -22rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* STAR TWO */
.face-star-two {
  position: absolute;
  right: 0;
  bottom: 0;
  animation: star-two 3s infinite ease-in-out;
}

@keyframes star-two {
  0%,
  30% {
    transform: translate(0, 0); /* wait */
  }

  50% {
    transform: translate(9rem, -24rem);
  }

  80% {
    transform: translate(9rem, -24rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* =============== zatos-area ================= */
.zatos-content {
  display: flex;
  align-items: center;
  gap: 22rem;
  padding-left: 12.5rem;
}

.rotate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: roll-left 3s infinite ease-in-out;
  position: relative;
  right: 6rem;
}

@keyframes roll-left {
  /* ⏸ START WAIT (1s) */
  0%,
  25% {
    transform: translateX(0) rotate(120deg);
  }

  /* ▶ MOVE FORWARD (1s) */
  50% {
    transform: translateX(-15rem) rotate(0deg);
  }

  /* ⏸ END WAIT (1s) */
  75% {
    transform: translateX(-15rem) rotate(0deg);
  }

  /* 🔁 MOVE BACK (1s) */
  100% {
    transform: translateX(0) rotate(120deg);
  }
}

.zatos-img {
  width: 59rem;
  height: 59rem;
  border-radius: 1000rem;
  margin-top: -24.5rem;
  background: var(--dark);
}

.zatos-left {
  padding: 16rem 0;
}

.zatos-left p {
  color: #fafafa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 3.6rem;
}

/* =============== Nasze-area ================= */
.nasze-area {
  background: #fafafa;
  padding-bottom: 20.5rem;
}

.nasze-title-box {
  max-width: 75.3rem;
  padding: 18.5rem 5.2rem 4.8rem 5.2rem;
  background: #fafafa;
  margin-left: auto;
  position: sticky;
  top: -4rem;
  right: 0;
}

.nasze-content {
  max-width: 75.3rem;
  padding: 18.5rem 5.2rem 4.8rem 5.2rem;
  margin-left: auto;
}

.nasze-img {
  max-width: 82.6rem;
}

.nasze-img1 {
  max-width: 72.3rem;
}

.nasze-img2 {
  max-width: 77.7rem;
}

.nasze-row2 {
  padding: 26.4rem 0 35.6rem;
}

.nasze-row1 .nasze-content {
  padding: 18.5rem 5.2rem 12.4rem 5.2rem;
}

.nasze-row2 .nasze-content {
  padding: 18.5rem 5.2rem 11.6rem 5.2rem;
}

.nasze-row3 .nasze-content {
  padding: 18.5rem 5.2rem 8.7rem 5.2rem;
}

.nasze-content .title_48 {
  display: block;
}

/* ================= newsletter-area ================= */
.newsletter-left {
  padding-left: 12.5rem;
}

.newsletter-left .title_30 {
  max-width: 74.5rem;
  margin-bottom: 2.5rem;
}

.newsletter-input input {
  height: 4.8rem;
  width: 48rem;
  background: var(--dark);
  border: 0.3rem solid var(--orange);
  padding: 0 2rem;
  border-radius: 0.8rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  color: #fafafa;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.newsletter-input input::placeholder {
  color: #9a9a9a;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.newsletter-btn {
  height: 4.8rem;
  display: flex;
  align-items: center;
  width: 10rem;
  background: #ee7501;
  color: var(--white);
  justify-content: center;
  border-radius: 0.8rem;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  transition: 0.35s ease;
}

.newsletter-input {
  display: flex;
}

/* ============= newsletter-animation ============ */
.newsletter-animation {
  position: relative;
}

.newsletter-img {
  width: 100%;
  z-index: 2;
  position: relative;
}

.newsletter-content-wrap {
  display: flex;
  align-items: center;
}

.newsletter-rocket-down,
.newsletter-rocket-up {
  width: 8.2rem;
  position: absolute;
  z-index: 1;
}

.newsletter-circle {
  width: 8.3rem;
  position: absolute;
  z-index: 3;
  top: 18.9rem;
  left: 16.9rem;
}

.newsletter-dot-lg {
  width: 4rem;
  position: absolute;
  z-index: 3;
}

.newsletter-rocket-up {
  top: 15.5rem;
  left: 13.7rem;
}

.newsletter-dot-lg.v1 {
  top: 28.2rem;
  left: 11.2rem;
}

.newsletter-dot-lg.v2 {
  bottom: 21.6rem;
  left: 17.9rem;
}

.newsletter-rocket-down {
  bottom: 15.6rem;
  left: 13.2rem;
}

/* ============== Keyframe animation and waits 3s ============ */
/* APPLY ANIMATION */
.newsletter-rocket-up,
.newsletter-rocket-down,
.newsletter-circle,
.newsletter-dot-lg {
  animation: newsletter-move 3s infinite ease-in-out;
}

/* KEYFRAMES */
@keyframes newsletter-move {
  /* ⏸ START WAIT */
  0%,
  30% {
    transform: translate(0, 0);
  }

  /* ▶ MOVE TO FINAL STATE */
  50%,
  80% {
    transform: var(--move);
  }

  /* 🔁 BACK TO ORIGINAL */
  100% {
    transform: translate(0, 0);
  }
}

.newsletter-rocket-up {
  --move: translate(-11.5rem, -13rem);
}

.newsletter-circle {
  --move: translate(-15rem, -4.5rem);
}

.newsletter-dot-lg.v1 {
  --move: translate(-9.8rem, 10.4rem);
}

.newsletter-dot-lg.v2 {
  --move: translate(-12.2rem, -5.4rem);
}

.newsletter-rocket-down {
  --move: translate(-10.6rem, 12.5rem);
}

/* ================= Footer-area ================= */
.footer-content {
  display: grid;
  grid-template-columns: 25rem 1fr 24.5rem;
  gap: 8.5rem;
  padding: 6.3rem 12.5rem;
  background: var(--orange);
  border-top-left-radius: 1.6rem;
  border-top-right-radius: 1.6rem;
}

.footer-title {
  padding-bottom: 1.8rem;
  border-bottom: 0.3rem solid #f6f7f2;
  margin-bottom: 7rem;
}

.footer-title h4 {
  color: #f6f7f2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.footer-logo1 {
  width: 11.9rem;
}

.footer-logo2 {
  width: 10.6rem;
}

.footer-logo3 {
  width: 15.5rem;
}

.footer-logo4 {
  width: 17.5rem;
}

.footer-logo5 {
  width: 10rem;
  position: relative;
}

.footer-logo5-v2 {
  transition: 0.15s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.footer-logo5:hover .footer-logo5-v2,
.footer-logo5:hover {
  opacity: 1;
  filter: none;
}

.footer-logo5:hover .footer-logo5-v1 {
  opacity: 0;
}

.footer-logos {
  padding-bottom: 1.8rem;
  margin-bottom: 4rem;
  border-bottom: 0.1rem solid #262626;
}

.footer-main-content ul {
  gap: 1rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-main-content ul li a:hover {
  color: #fafafa;
}

.tiktok {
  width: 2.2rem;
}

.facebook {
  width: 2.1rem;
}

.instagram {
  width: 2.2rem;
}

.footer-col3 ul li a,
.social-icons li a {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: 10rem;
}

.footer-col3 ul li a img,
.social-icons li a img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(1209%)
    hue-rotate(3deg) brightness(97%) contrast(99%);
}

.footer-col3 ul li a:hover,
.social-icons li a:hover {
  background: var(--white);
}

.footer-logos a:hover img,
.social-icons li a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(48%) saturate(0%)
    hue-rotate(17deg) brightness(108%) contrast(101%);
}

.footer-logo {
  transition: 0.25s ease;
}

.footer-col2 .footer-title {
  margin-bottom: 5.5rem;
}

/* ================= Menu Overlay ================= */
.menu-overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background: var(--orange);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
  overflow: auto;
}

.menu-overlay::-webkit-scrollbar {
  scrollbar-width: 0;
  display: none;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.menu-nav-top {
  height: var(--menuHeight);
  padding: 0 9rem;
  gap: 12rem;
  border-bottom: 0.3rem solid var(--white2);
}

.hamburger-btn.cross span {
  background: var(--white);
}

.hamburger-btn.cross.active span,
.hamburger-btn.cross:hover span {
  width: 4rem;
}

.hamburger-btn.cross {
  gap: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 4rem;
  width: 4rem;
}

/* ======================= Menu Overlay ======================== */
.menu-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 11.5rem;
  padding-bottom: 6rem;
}

.nav-col h4,
.search-section h4,
.media-section h4,
.language-section h4,
.menu-overlay h4 {
  color: var(--dark);
  text-align: center;
  padding-bottom: 0.4rem;
  margin-bottom: 3.8rem;
  border-bottom: 0.3rem solid var(--dark);
  font-size: 2.4rem;
}

.nav-col ul li a,
.language-section li button {
  color: #fafafa;
  font-size: 1.6rem;
  line-height: 2;
  font-family: var(--primaryfont);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-col ul li a:hover,
.language-section li button:hover {
  color: var(--dark);
}

.nav-col address {
  font-size: 1.6rem;
  font-family: var(--primaryfont);
  color: var(--white2);
  font-weight: 500;
}

.nav-col address br {
  display: none;
}

.search-tags .btn {
  border: 0.1rem solid var(--white);
  color: #fafafa !important;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--primaryfont);
}

.search-section {
  max-width: 114rem;
}

.search-tags {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1.6rem 3.5rem;
  margin-bottom: 7.6rem;
}

.menu-bottom {
  display: grid;
  grid-template-columns: 1fr 27rem;
  gap: 2rem;
}

.search-section h4 {
  width: 27rem;
}

.media-section .social-icons {
  gap: 1.8rem;
  justify-content: center;
}

.media-section .social-icons li a {
  background: #fff;
}

.media-section .social-icons li a:hover {
  background: var(--dark);
}

.social-icons li a:hover img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(97%) saturate(1209%)
    hue-rotate(3deg) brightness(97%) contrast(99%);
}

.social-icons .tiktok {
  width: 2.6rem;
}

.social-icons .facebook {
  width: 2.6rem;
}

.social-icons .instagram {
  width: 2.5rem;
}

.language-section {
  margin-top: 10.4rem;
}

.search-tags .btn:hover {
  background: #fafafa;
  color: var(--orange) !important;
}

.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  background: transparent;
  border: 0;
  color: #f6f7f2;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-family: var(--primaryfont);
  padding-bottom: 1.4rem;
  border-bottom: 0.1rem solid #f6f7f2;
  padding-right: 22rem;
}

.search-form input::placeholder {
  color: #f6f7f2;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-family: var(--primaryfont);
}

.search-form button {
  filter: var(--white_img);
  width: 20rem;
  position: absolute;
  right: 0;
  top: 0;
}

.search-form button svg {
  width: 20rem;
  height: 1.5rem;
  filter: brightness(0) saturate(100%) invert(94%) sepia(10%) saturate(374%)
    hue-rotate(358deg) brightness(113%) contrast(93%);
}

.cross-btn {
  width: 3rem;
  height: 3rem;
  transition: 0.35s ease;
}

.cross-btn:hover {
  transform: rotate(45deg);
  filter: brightness(0) saturate(100%) invert(9%) sepia(10%) saturate(5%)
    hue-rotate(341deg) brightness(102%) contrast(85%);
}

.menu-overlay hr {
  border-top: 0.3rem solid var(--white2);
  opacity: 1;
  margin: 5rem 0 10rem;
}

/* =================== dark-overlay ================== */
.dark-overlay .nav-col h4 {
  color: #f6f7f2;
  border-color: #f6f7f2;
}

.dark-overlay {
  background: var(--dark);
  opacity: 0;
  pointer-events: none;
}

.dark-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.calender-icon {
  width: 2.2rem;
}

.megamenu-two-inner {
  display: grid;
  grid-template-columns: 29rem 60rem 58rem;
  gap: 12.5rem;
}

.dark-overlay .search-tags {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem 3.5rem;
  margin-bottom: 13.5rem;
}

.dropdown-input input {
  background: transparent;
  border: none;
  color: #f6f7f2;
  font-size: 1.6rem;
  font-family: var(--primaryfont);
  padding-bottom: 0.5rem;
  border-bottom: 0.3rem solid #f6f7f2;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 0;
}

.dropdown-input input::placeholder {
  color: #f6f7f2;
  font-size: 1.6rem;
  font-family: var(--primaryfont);
}

.dropdown-input {
  position: relative;
}

.dropdown-input span {
  color: #f6f7f2;
  font-size: 1.6rem;
  font-family: var(--primaryfont);
  position: absolute;
  right: 0;
  top: 0;
}

.dropdown-list {
  display: grid;
  gap: 2.7rem;
}

.menu-arrow-block {
  display: flex;
  align-items: center;
  color: #f6f7f2;
  font-size: 1.6rem;
  font-family: var(--primaryfont);
  text-transform: uppercase;
  white-space: nowrap;
  gap: 1rem;
}

.menu-arrow-blocks-list {
  display: grid;
  gap: 2rem;
  margin-top: 12.5rem;
}

.megamenu-info {
  margin-bottom: 5rem;
}

.termin-block.v3 svg {
  width: 23rem;
  height: 1.5rem;
}

.termin-block.v2 svg {
  width: 12rem;
  height: 1.7rem;
}

.menu-arrow-blocks-list .menu-arrow-block {
  justify-content: space-between;
}

.dark-overlay h4 {
  color: #f6f7f2;
  border-color: #f6f7f2;
  padding-bottom: 1.2rem;
  text-transform: uppercase;
}

.dark-overlay .megamenu-two-inner {
  margin-top: 11.5rem;
}

.dark-overlay .search-section h4 {
  width: 100%;
}

.dark-overlay .search-tags .btn {
  border: 0.1rem solid var(--orange);
  color: var(--orange) !important;
  min-width: 100%;
}

.dark-overlay .search-tags .btn:hover {
  background: var(--orange);
  color: #f6f7f2 !important;
}

.szukaj-block h4 {
  margin-bottom: 1.6rem;
}

.dark-overlay .search-tags a:nth-child(12) {
  grid-row: 5;
  grid-column: 1;
}

.dark-overlay .search-tags a:nth-child(13) {
  grid-row: 5;
  grid-column: 2;
}

.szukaj-block .search-form button svg {
  width: 10rem;
}

.szukaj-block .search-form button {
  width: 10rem;
}

.card.v3 .card-img {
  width: 24rem;
  height: 20rem;
}

.card.v3 .card-info {
  padding: 1rem 1.8rem 0 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-bar {
  display: grid;
  align-items: center;
  width: 9.2rem;
  height: 2.4rem;
  color: #f6f7f2;
  grid-template-columns: 3.2rem 1fr;
  text-align: center;
  font-size: 1.6rem;
  border: 0.3rem solid #f6f7f2;
  border-radius: 0.4rem;
  font-family: var(--primaryfont);
  text-transform: uppercase;
  font-weight: 600;
}

.icon-bar img {
  width: 2.6rem;
  padding-left: 0.6rem;
  filter: var(--white_img);
}

.menu-card-inner-top ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-24 {
  width: 2.4rem;
}

.menu-card-inner-top {
  padding-bottom: 1.6rem;
  border-bottom: 0.3rem solid #f6f7f2;
  width: 100%;
}

.card.v3 .card-info h4 {
  color: #f6f7f2;
  font-size: 2rem;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.select_buttons {
  display: flex;
  gap: 1.6rem;
  padding-top: 1.2rem;
  border-top: 0.3rem solid #f6f7f2;
  max-width: 100rem;
}

.card.v3 {
  display: grid;
  grid-template-columns: 0fr 1fr;
  min-height: 20rem;
}

.select_btn {
  width: 8rem;
  height: 3.6rem;
  background: #f6f7f2;
  font-size: 1.6rem;
  color: var(--orange);
  font-family: var(--primaryfont);
  font-weight: 700;
  border-radius: 0.8rem;
  border: 0.3rem solid var(--orange);
}

.select_btn.active {
  background: var(--orange);
  color: #f6f7f2;
}

.card-three-list {
  display: grid;
  gap: 4rem;
  height: 62rem;
  overflow: auto;
  padding-top: 3.8rem;
}

.card-three-list::-webkit-scrollbar {
  width: 0;
  scrollbar-width: 0;
  display: none;
}

.megamenu-two-inner .menu-bottom {
  grid-template-columns: 1fr;
}

.dark-overlay .menu-two-box1 h4 {
  margin-bottom: 0;
}

.dark-overlay hr {
  margin-top: 0;
}

/* ================= menutwo-dropdown ================== */
.menutwo-dropdown {
  position: relative;
}

.menutwo-dropdown-list {
  position: absolute;
  background: var(--orange);
  width: 100%;
  border-radius: 0.8rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 3rem 3.8rem 3rem;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.menutwo-dropdown-list-inner {
  padding: 4.8rem 0 0 0;
  border-top: 0.1rem solid #f6f7f2;
}

.menutwo-dropdown:hover .menutwo-dropdown-list {
  height: 38rem;
  opacity: 1;
  pointer-events: all;
}

.dark-overlay .menutwo-toggle:hover {
  filter: brightness(0) saturate(100%) invert(64%) sepia(47%) saturate(7058%)
    hue-rotate(6deg) brightness(99%) contrast(99%) !important;
}

.dark-overlay .menu-nav-top {
  padding: 0;
}

.dark-overlay .menu-nav-top > .menu-nav-top {
  padding-left: 27rem;
}

.grid-icon {
  filter: brightness(0) saturate(100%) invert(40%) sepia(92%) saturate(1073%)
    hue-rotate(7deg) brightness(101%) contrast(99%);
  width: 3.2rem;
}

.grid-icon img {
  width: 100%;
}

.menu-arrow-block.termin-block.v1:hover {
  filter: brightness(0) saturate(100%) invert(9%) sepia(4%) saturate(7%)
    hue-rotate(345deg) brightness(106%) contrast(86%);
}

.card-link-zielone {
  filter: brightness(0) saturate(100%) invert(54%) sepia(43%) saturate(555%)
    hue-rotate(60deg) brightness(98%) contrast(93%);
}

.megamenu-two-box1 .menu-arrow-block:hover {
  filter: brightness(0) saturate(100%) invert(47%) sepia(64%) saturate(3715%)
    hue-rotate(12deg) brightness(104%) contrast(104%) !important;
}

.auto-slider .swiper-slide {
  max-width: 70.5rem;
}

.auto-slide .hero-img {
  height: 38.3rem;
}

.auto-slide .hero-slide-inner {
  left: 4.2rem;
  bottom: 3.4rem;
}

.hero-area-inner .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* =============== repertuar-title-section ================= */
.repertuar-title-section {
  padding: 12.6rem 0 11.6rem;
}

.four-way-stars {
  width: 15.3rem;
  position: absolute;
  z-index: 1;
}

.title-content {
  display: flex;
  align-items: end;
  gap: 4rem;
}

.title-content .title_70 {
  margin-bottom: 1.75rem;
  display: block;
}

.four-way-stars-one {
  left: -9rem;
  top: -6.2rem;
}

.title-content h3,
.title-content h2 {
  position: relative;
  z-index: 2;
}

.four-way-stars-two {
  right: -4.5rem;
  bottom: -0.8rem;
}

.repertuar-title-section {
  padding: 12.6rem 0 11.6rem;
}

/* =================== repertuar-section ================ */
.repertuar-section {
  padding-bottom: 21.4rem;
}

/* =============== legends-wrap ================= */
.icon-bar-list {
  gap: 2rem;
}

.icon-bar.v2 {
  width: fit-content;
  min-width: 12rem;
  filter: brightness(0) saturate(100%) invert(16%) sepia(0%) saturate(0%)
    hue-rotate(152deg) brightness(94%) contrast(100%);
  height: 2.8rem;
  overflow: hidden;
  padding: 0 1rem 0 0;
  gap: 1rem;
  white-space: nowrap;
}

.icon-bar.v2 img {
  width: 3.2rem;
}

.legends-wrap {
  margin-bottom: 4.5rem;
}

.icon-bar.v2 .mobile-icon {
  width: 2.3rem;
}

.icon-bar.v2 .men-sitting-icon {
  width: 2.6rem;
}

.icon-bar.v2 .pause-icon {
  width: 3.6rem;
}

.icon-bar.v2 .mid-stars-icon {
  width: 3.4rem;
}

.card.v4 .card-img-wrap > .tytuly-24 {
  position: absolute;
  left: 1.6rem;
  bottom: 4.7rem;
  z-index: 3;
  width: 60%;
}

.card.v4 .card-info {
  display: flex;
  align-items: center;
  padding: 1.6rem;
  justify-content: space-between;
}

.card.v4 .menu-card-inner-bottom {
  padding-top: 0;
  border-top: 0;
}

.card-v3-icons {
  height: 4rem;
  padding: 0 1.2rem;
  margin: 0 1rem 0 1.6rem;
  gap: 1.6rem;
  border-left: 0.1rem solid #f6f7f2;
  border-right: 0.1rem solid #f6f7f2;
}

.mid-stars-icon,
.user-icon {
  filter: brightness(0) saturate(100%) invert(91%) sepia(1%) saturate(0%)
    hue-rotate(169deg) brightness(103%) contrast(104%);
}

.play-scuare,
.dark-icon,
.mid-stars-icon:hover,
.user-icon:hover {
  filter: brightness(0) saturate(100%) invert(9%) sepia(10%) saturate(18%)
    hue-rotate(353deg) brightness(94%) contrast(85%);
}

.card.v4 .card-img {
  height: 36rem;
}

.card.v4 .card-link {
  gap: 1.2rem;
}

/* ================ card-over ================ */
.card-over {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  height: 100%;
  padding: 3.5rem 2.5rem 5rem 1.6rem;
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.card-over hr {
  border-top: 0.3rem solid #f6f7f2;
  margin: 3.25rem 0 2rem;
  opacity: 1;
}

.card-over > p {
  font-weight: 500;
}

.card.v4:hover .card-over {
  opacity: 1;
  pointer-events: all;
}

.card-over .button-text > span {
  display: inline-block;
  margin: 0 0.6rem;
}

.rozowy-card-link {
  filter: brightness(0) saturate(100%) invert(26%) sepia(86%) saturate(4357%)
    hue-rotate(320deg) brightness(89%) contrast(92%);
}

.card.v4 .card-link img {
  width: 10rem;
}

.repertuar-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

.repertuar-link {
  border-bottom: 0.3rem solid var(--dark);
  text-align: center;
}

.repertuar-link.active,
.repertuar-link:hover {
  border-bottom: 0.3rem solid var(--orange);
  color: var(--orange) !important;
}

.repertuar-col {
  display: grid;
  grid-template-columns: 55.7rem 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.repertuar-inner-tr .menu-card-inner-bottom {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
}

.repertuar-head .repertuar-col {
  height: auto;
  white-space: nowrap;
  margin: 0;
}

.repertuar-info .card-v3-icons {
  padding: 0;
  margin: 0;
  border: 0;
}

.repertuar-info span.text_md > span {
  padding: 0 0.6rem;
}

.repertuar-inner-tr {
  height: 19.3rem;
  display: flex;
  align-items: center;
  border-bottom: 0.3rem solid var(--dark);
}

.repertuar-inner-tr:not(:first-child) {
  justify-content: center;
}

.repertuar-head .repertuar-link {
  font-size: 1.6rem;
}

/* ============ title-section-two =============== */
.title-section-two .four-way-stars-one {
  top: -5.4rem;
  right: 39.6rem;
  left: auto;
}

.title-section-two .four-way-stars-two {
  right: -7.3rem;
  bottom: -7.6rem;
}

/* ================== Film area ================== */
.video-play {
  width: 20rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.film-hero .swiper-pagination {
  bottom: 3.7rem;
}

/* =================== Bez Section =================== */
.bez-section {
  padding: 3.7rem 0 18.5rem;
}

.bez-content-left {
  width: 74.7rem;
  flex: 0 0 auto;
}

.bez-content-right {
  width: 80.5rem;
  flex: 0 0 auto;
}

.bez-content {
  gap: 14.3rem;
  margin-left: 12rem;
}

.bez-content-left .title_70 {
  padding: 1.9rem 0;
}

.bez-content-left hr {
  border-color: #f6f7f2;
  opacity: 11;
}

.bez-content-left .hr-1 {
  margin: 4.4rem 0 3.7rem;
}

ul.data-text {
  display: grid;
  grid-template-columns: 14.5rem 1fr;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  line-height: 1.8;
}

.data-text li:first-child {
  text-transform: uppercase;
}

.bez-content-left .hr-2 {
  margin: 2.7rem 0 3.7rem;
}

.bez-content-left .hr-3 {
  margin: 3.7rem 0 6.3rem;
}

.dropdown-input .select_buttons {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0.2rem;
  border: 0;
}

.bez-form-data .dropdown-input input {
  height: 4.6rem;
  padding: 0;
}

.dropdown-input .select_buttons button {
  background: #efeae7;
}

.bez-form-data {
  padding: 4rem 10.2rem 6rem 12.5rem;
  background: var(--orange);
  border-bottom-left-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
}

.bez-right-bottom {
  max-width: 70.5rem;
}

.dropdown-input .select_buttons button.active {
  background: var(--dark);
  color: var(--orange);
  border-color: var(--dark);
}

.bez-form-data h4 {
  color: #f6f7f2;
  text-align: center;
  font-size: 2.4rem;
  padding-bottom: 0.4rem;
  text-transform: uppercase;
}

.qoute-icon {
  width: 12rem;
  position: absolute;
  left: -2.8rem;
  top: -2rem;
  z-index: 1;
}

/* ==================== Rowniez area ================== */
.rowniez-area {
  padding: 13.5rem 0;
}

.rowniez-img {
  position: absolute;
  width: 53.5rem;
  top: -21.8rem;
  left: 54.5rem;
  z-index: 1;
}

.hero-slide.v3 .hero-img {
  height: 28.2rem;
}

.hero-slide.v3 .hero-slide-inner {
  left: 2.2rem;
  bottom: 3.5rem;
}

/* ======== moon-animation ======== */
.news_content_left {
  width: 60.7rem;
  flex: 0 0 auto;
}

.moon-animation {
  width: 100.3rem;
  position: relative;
}

.moon-img {
  width: 32.1rem;
  position: absolute;
  right: 2rem;
  bottom: 23rem;
  z-index: 1;
  animation: roll 3s infinite ease-in-out;
}

@keyframes roll {
  /* ⏸ START WAIT (1s) */
  0%,
  25% {
    transform: rotate(180deg);
  }

  /* ▶ MOVE FORWARD (1s) */
  50% {
    transform: rotate(0deg);
  }

  /* ⏸ END WAIT (1s) */
  75% {
    transform: rotate(0deg);
  }

  /* 🔁 MOVE BACK (1s) */
  100% {
    transform: rotate(180deg);
  }
}

.moon-anim-img {
  position: relative;
  z-index: 2;
}

.moon-dots-anim {
  width: 19.7rem;
  height: 23.4rem;
  position: absolute;
  left: 7.5rem;
  top: 13.5rem;
  z-index: 3;
}

.moon-dot {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  border-radius: 10rem;
  position: absolute;
}

.moon-dot.bg-white2.v1 {
  left: 0;
  top: 0;
  animation: blow-down 3s infinite ease-in-out;
}

.moon-dot.bg-orange.v1 {
  right: 0;
  bottom: 0;
  animation: blow-down 3s infinite ease-in-out;
}

.moon-dot.bg-white2.v2 {
  top: 11.8rem;
  left: 4.3rem;
  animation: blow-up-1 3s infinite ease-in-out;
}

.moon-dot.bg-white2.v3 {
  right: 5.2rem;
  bottom: 9.5rem;
  animation: blow-down 3s infinite ease-in-out;
}

.moon-dot.bg-orange.v2 {
  bottom: 1.9rem;
  right: 8.8rem;
  animation: blow-up-3 3s infinite ease-in-out;
}

.moon-dot.bg-orange.v3 {
  left: 7.5rem;
  top: 5.3rem;
  animation: blow-up-1 3s infinite ease-in-out;
}

@keyframes blow-down {
  /* ⏸ START WAIT (1s) */
  0%,
  25% {
    transform: scale(0.25);
  }

  /* ▶ MOVE FORWARD (1s) */
  50% {
    transform: scale(1);
  }

  /* ⏸ END WAIT (1s) */
  75% {
    transform: scale(1);
  }

  /* 🔁 MOVE BACK (1s) */
  100% {
    transform: scale(0.25);
  }
}

@keyframes blow-up-1 {
  /* ⏸ START WAIT (1s) */
  0%,
  25% {
    transform: scale(1);
  }

  /* ▶ MOVE FORWARD (1s) */
  50% {
    transform: scale(0.3);
  }

  /* ⏸ END WAIT (1s) */
  75% {
    transform: scale(0.3);
  }

  /* 🔁 MOVE BACK (1s) */
  100% {
    transform: scale(1);
  }
}

@keyframes blow-up-2 {
  /* ⏸ START WAIT (1s) */
  0%,
  25% {
    transform: scale(1);
  }

  /* ▶ MOVE FORWARD (1s) */
  50% {
    transform: scale(0.3);
  }

  /* ⏸ END WAIT (1s) */
  75% {
    transform: scale(0.3);
  }

  /* 🔁 MOVE BACK (1s) */
  100% {
    transform: scale(1);
  }
}

@keyframes blow-up-3 {
  /* ⏸ START WAIT (1s) */
  0%,
  25% {
    transform: scale(1);
  }

  /* ▶ MOVE FORWARD (1s) */
  50% {
    transform: scale(0.15);
  }

  /* ⏸ END WAIT (1s) */
  75% {
    transform: scale(0.15);
  }

  /* 🔁 MOVE BACK (1s) */
  100% {
    transform: scale(1);
  }
}

.news_content {
  padding: 0 5.7rem 0 12.4rem;
  margin-top: -4.5rem;
}

.news_content_right {
  margin-left: -7rem;
  margin-top: -5rem;
}

/* ========== blog-section ========== */
.card.v5.card-flex .card-link img {
  width: 20rem;
}

.card.v5.card-flex .card-link {
  grid-template-columns: 1fr 10.5rem;
}

.card.v5.card-flex .teksty {
  padding-bottom: 0;
}

.card.v5.card-flex .card-info {
  padding: 7rem 2.5rem 3rem 4.7rem;
  gap: 2rem;
}

.card.v5 {
  min-height: 30rem;
}

.card.v5 .card-info .testy-20 {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-list {
  width: 70.4rem;
  height: 69.9rem;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
  scrollbar-width: 0;
}

.dark-card-link {
  filter: brightness(0) saturate(100%) invert(0%) sepia(11%) saturate(0%)
    hue-rotate(178deg) brightness(73%) contrast(70%);
}

.blog-section .card-flex .dark-card-link:hover,
.blog-section .card-link.white2-card-link:hover,
.newsy-section .card-flex .dark-card-link:hover {
  filter: brightness(0) saturate(100%) invert(85%) sepia(20%) saturate(4972%)
    hue-rotate(50deg) brightness(80%) contrast(56%) !important;
}

.white2-card-link {
  filter: brightness(0) saturate(100%) invert(100%) sepia(93%) saturate(0%)
    hue-rotate(181deg) brightness(104%) contrast(96%);
}

/* =============== card-bg ================= */
.card-bg {
  overflow: hidden;
  border-radius: 1.6rem;
}

.card-bg .card-link {
  max-width: 35.5rem;
  grid-template-columns: 1fr 9.8rem;
}

.card-bg .card-img {
  height: 70rem;
  border-radius: 1.6rem;
}

.card-bg .card-info {
  position: absolute;
  bottom: 3.2rem;
  left: 4rem;
  max-width: 43rem;
  padding: 0;
}

.card-bg {
  position: relative;
  display: flex;
}

.card-bg .card-info .text_md {
  width: 35.7rem;
}

.card-bg .card-info .teksty {
  padding-bottom: 0;
}

/* =============== blog-section ================ */
.blog-section {
  padding-bottom: 10rem;
}

.blog-section .row:nth-child(1) {
  margin-bottom: 38.3rem;
}

/* ================ newsy-section  ================ */
.newsy-section {
  padding: 18rem 0 23.2rem;
}

.newsy-list {
  display: grid;
  gap: 5.4rem;
}

.newsy-content {
  max-width: 147.1rem;
  margin: 0 auto;
}

.newsy-list .card-flex .card-img {
  width: 60.1rem;
}

.newsy-list .card.v5,
.newsy-list .card-flex .card-img {
  height: 24.8rem;
  min-height: auto;
}

.newsy-list .card.v5.card-flex .card-info {
  padding: 5.5rem 3rem 3rem 12.5rem;
}

.newsy-list .dark-card-link {
  max-width: 35.5rem;
}

.newsy-list .card-flex:before {
  border-color: var(--dark);
}

/* ============= Sort Select ============= */
.sort-select {
  position: relative;
  min-width: 20rem;
}
.sort-trigger {
  width: 100%;
  height: 3.6rem;
  border: 0.1rem solid var(--orange);
  border-radius: 0.8rem;
  background: #fff;
  color: var(--orange);
  padding: 0 1.3rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.sort-select.active .sort-trigger {
  border: 0.1rem solid var(--orange);
  background: var(--orange);
  color: var(--white2);
}
.sort-select.active .sort-arrow {
  filter: brightness(0) saturate(100%) invert(86%) sepia(50%) saturate(13%)
    hue-rotate(29deg) brightness(110%) contrast(96%);
}
.sort-arrow {
  transition: 0.25s;
}
.sort-arrow svg {
  width: 1.6rem;
  height: 1.7rem;
}
.sort-select.active .sort-arrow {
  transform: rotate(180deg);
}
.sort-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  width: 100%;
  background: #fff;
  border: 0.1rem solid var(--tlo);
  border-radius: 1rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
  padding: 0.6rem;
  display: none;
  z-index: 10;
}
.sort-option {
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
  cursor: pointer;
}
.sort-option:hover,
.sort-option.active {
  background: var(--white2);
  color: var(--orange);
}

.sort-label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.newsy-list .card.v5.card-flex .card-info {
  padding: 3.5rem 4rem 3rem 4.5rem;
}

.newsy-section .section-bottom-img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(67%) saturate(332%)
    hue-rotate(293deg) brightness(104%) contrast(87%) !important;
}

/* ================== Contact area ================== */
.info-list {
  display: flex;
  align-items: center;
  gap: 10.8rem;
  color: #000000;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 4.2rem 0 11.2rem;
  font-weight: 600;
}

.poke-hand {
  width: 5.8rem;
  margin-top: 0.6rem;
}

.poke-list li {
  display: flex;
  align-items: start;
  gap: 2rem;
}

.poke-list {
  display: grid;
  gap: 3.5rem;
  margin-bottom: 14rem;
  max-width: 58.1rem;
}

.contact-form h3 {
  color: #000000;
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-bottom: 1.2rem;
}

.poke-hand {
  width: 5.8rem;
  margin-top: 0.6rem;
}

.poke-list li {
  display: flex;
  align-items: start;
  gap: 2rem;
}

.poke-list {
  display: grid;
  gap: 3.5rem;
  margin-bottom: 14rem;
  max-width: 58.1rem;
}

.contact-form h3 {
  color: #000000;
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-bottom: 1.2rem;
}

.contact-form {
  max-width: 58rem;
}

.from-group {
  display: grid;
  grid-template-columns: 16.6rem 1fr;
  align-items: center;
  height: 3.6rem;
  border: 0.1rem solid #ee7501;
  padding: 0 2rem;
  border-radius: 0.8rem;
}

.from-group input,
.from-group textarea {
  border: transparent;
  color: #9a9a9a;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  outline: none;
  padding: 0;
  background: transparent;
}

.from-group input::placeholder,
.from-group textarea::placeholder {
  color: #9a9a9a;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.from-group textarea {
  height: 13rem;
  padding: 0;
  line-height: 1;
  resize: none;
}

.from-group-message {
  align-items: flex-start;
  padding-top: 1rem;
  height: auto;
}

.from-group input:focus,
.from-group textarea:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

.from-group-list {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-form .card-link {
  gap: 1.6rem;
  cursor: pointer;
  filter: var(--dark_img);
}

.contact-form .card-link:hover {
  filter: var(--orange_img) !important;
}

.contact_content {
  padding: 4rem 0 14.3rem;
}

.contact_area {
  background: #efeae7;
}

.from-group input:focus,
.from-group textarea:focus {
  background: transparent;
}

/* ============== map-img =============== */
.map-icon {
  width: 6rem;
  position: absolute;
  top: 13.7rem;
  left: 88.9rem;
}

.map-img {
  height: 56.2rem;
  object-fit: cover;
}

/* asib khan */
.as-pl-130 {
  padding-left: 12.5rem;
}

.as-pr-120 {
  padding-right: 12rem;
}

.title_100 {
  font-size: 10rem;
}

.as-news-wrapper .gy-6 {
  --bs-gutter-y: 4rem;
}

.as-hero .swiper-pagination {
  bottom: 4rem;
}

.as-news-wrapper-1 {
  margin-right: -0.5rem;
}

.as-news-wrapper-2 {
  margin-left: -0.5rem;
}

.as-news-top h3 {
  color: var(--zielone);
  padding: 5rem 0 17.7rem;
}

.as-news-content span {
  display: inline-block;
  padding-bottom: 1.3rem;
}

.as-news-content p {
  padding-right: 1rem;
}

.as-news-content h3 {
  font-weight: 500;
  color: var(--dark);
  padding-bottom: 18rem;
  padding-top: 5rem;
}

.as-news-img-right {
  margin-right: -0.5rem;
}

.as-news-img-left {
  margin-left: -0.5rem;
}

.as-news-content.as-new-right-content h3 {
  padding-bottom: 0;
  padding-top: 7.5rem;
}

.as-news-content.as-new-right-content p {
  padding-top: 3.4rem;
}

.as-news-area {
  padding-bottom: 30rem;
}

/* second page  */

.galeria-content {
  padding-left: 12.5rem;
}

.as-galeria-hero {
  padding: 14.5rem 0 12.5rem;
}

.galeria-content h3 {
  color: var(--dark);
  padding-bottom: 2.3rem;
}

.galeria-content h2 {
  padding-bottom: 6rem;
}

.galeria-content p {
  width: 60.7rem;
}

.galeria-slide-top {
  display: flex;
  gap: 1rem;
}

.galeria-slide .hero-slide-inner {
  left: 5rem;
  bottom: 8rem;
}

.galeria-slide .hero-slide-inner h6 {
  padding: 1.2rem 0 2rem;
}

.galeria-area .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
}

.galeria-area .swiper-pagination {
  position: absolute;
  left: 5rem;
  bottom: 3rem;
  gap: 1.5rem;
}

.galeria-glarry-img {
  position: relative;
}

.galeria-glarry-inner {
  position: absolute;
  top: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  height: 100%;
  padding: 3rem;
  width: 100%;
  border-radius: 1.6rem;
  visibility: hidden;
  opacity: 0;
  transition: 0.35s ease;
}

.galeria-glarry-img:hover .galeria-glarry-inner {
  visibility: visible;
  opacity: 1;
}

.galeria-glarry-overlay {
  position: absolute;
  width: 100%;
  bottom: 3rem;
}

.galeria-glarry-inner {
  color: var(--white);
}

.galeria-glarry-inner h6 {
  color: var(--white);
  padding: 1.2rem 0 1.2rem;
}

.galeria-slide .hero-img {
  height: 78rem;
  object-fit: cover;
}

.galeria-area .row {
  --bs-gutter-y: 2rem;
  --bs-gutter-x: 2rem;
}

.galeria-glarry-img img {
  height: 38rem;
  border-radius: 1.6rem;
  object-fit: cover;
}

.galeria-area {
  padding: 15rem 0;
  background: var(--white);
}

.td {
  text-decoration: underline;
}

.wydarzenia-wrapper h2 {
  padding: 2rem 0 8rem;
}

.ticket-items .ticket-label {
  font-weight: 600;
  color: var(--black);
  width: 8rem;
  line-height: 1.8;
  font-size: 1.6rem;
}

.ticket-items .ticket-value {
  font-weight: 600;
  color: var(--black);
  line-height: 1.8;
  font-size: 1.6rem;
}

.event-content {
  padding-top: 9rem;
}

.ticket-items {
  display: flex;
  gap: 8rem;
}

.wydarzenia-area .gx-6 {
  --bs-gutter-x: 4.4rem;
}

.wydarzenia-wrapper {
  padding-top: 4rem;
  padding-bottom: 20rem;
}

.fotorelacja-slider {
  padding-bottom: 21rem;
}

.wydarzenia-area .title_50 {
  padding-bottom: 2.3rem;
  color: var(--dark);
  font-size: 5rem;
}

/* 
.fotorelacja-slider .swiper-slide {
	width: 41.5rem !important;
}
.fotorelacja-slider-content img {
	height: 38rem !important;
	width: 41.5rem;
} 
 */

.minione-arrow {
  position: absolute;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}

.minione-button-prev {
  left: 12.5rem;
}

.minione-button-next {
  right: 12.5rem;
}

.as-onas {
  padding: 12rem 0 14rem;
}

.as-onas-content {
  padding: 0 12.5rem;
}

.as-onas-content h3 {
  color: var(--dark);
  padding-bottom: 1rem;
}

.as-onas-content .title_40 {
  font-size: 4rem;
  color: var(--orange);
  padding-bottom: 8rem;
}

.as-onas-content p {
  padding-bottom: 6rem;
}

.as-onas-content p span {
  color: var(--orange);
}

.as-onas-content p:last-child {
  padding-bottom: 0;
}

.as-our-team-items {
  display: flex;
  align-items: center;
  gap: 8rem;
  padding-bottom: 6rem;
}

.as-our-team-img img {
  width: 14.8rem;
}

.as-our-team-box {
  max-height: 66rem;
  border-top: 0.3rem solid var(--orange);
  border-bottom: 0.3rem solid var(--orange);
  padding: 4.5rem;
  padding-right: 0;
  overflow-y: scroll;
  margin-left: 12.5rem;
  /* scroll smooth */
  scroll-behavior: smooth;

  /* scrollbar hide */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.as-our-team-items:last-child {
  padding-bottom: 0;
}

.as-our-team-box::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.as-our-content h4 {
  padding-bottom: 2rem;
}

.as-our-team-title h2 {
  font-size: 8rem;
}

.as-our-team {
  padding: 12rem 0;
  background: var(--white);
}

.as-doiacz-content {
  padding-left: 12.5rem;
  padding-bottom: 20rem;
  padding-top: 21rem;
}

.as-doiacz-pos-img {
  position: absolute;
  top: -4.2rem;
  right: 0;
  z-index: 0;
  width: 109.6rem;
}

.as-change {
  overflow: initial !important;
}

.as-change-v2 {
  position: relative;
}

.as-doiacz-pos-img img {
  width: 109.6rem;
  height: 73.9rem;
}

.as-change .footer-content {
  z-index: 999;
  position: relative;
}

.as-galeria-hero.v2 {
  padding: 14rem 0 20rem;
}

.as-galeria-hero.v2 h2 {
  padding-bottom: 5rem;
  line-height: 1.1;
}

.as-galeria-hero.v2 .galeria-content p {
  width: 72.5rem;
}

.as-cinema-group {
  background: var(--dark);
}

.cinema-group-1 img {
  width: 72.5rem;
}

.cinema-group-2 img {
  width: 71.8rem;
}

.as-cinema-group {
  padding: 22rem 0 4rem;
}

.as-cinema-group-text {
  padding-bottom: 18rem;
}

.as-cinema-group-img {
  padding-bottom: 18rem;
}

.as-cinema-group-text p {
  width: 60rem;
}

.as-fotorelacja-slider {
  overflow: visible;
}

.as-follower-text-box {
  padding-left: 10rem;
  padding-bottom: 8rem;
}

.title_40 {
  font-size: 4rem;
}

.as-follower-text-box h4 {
  padding-bottom: 2rem;
}

.as-follower-text-box p {
  width: 60rem;
}

.as-programm-informationen h2 {
  padding-bottom: 1.8rem;
}

.as-programm-informationen span {
  color: var(--dark);
}

.as-programm-informationen .newsletter-input input {
  background: var(--orange);
  border: 0.3rem solid var(--dark);
  color: var(--white2);
}

.as-programm-informationen .newsletter-btn.button-text {
  background: var(--dark);
  color: var(--white2);
}

.as-programm-informationen .newsletter-input input::placeholder {
  color: var(--white2);
}

.as-programm-informationen .title_30 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 3.6rem;
  max-width: 100%;
}

.as-programm-informationen {
  padding: 15rem 0 12.7rem;
}

.download-button-box {
  gap: 2rem;
}

.download-button-box .btn {
  gap: 0.6rem;
}

.download-button-box .btn:hover svg {
  filter: var(--white_img);
}

.download-content p {
  text-transform: uppercase;
}

.download-area {
  padding: 22rem 0 2rem;
}

.as-follower-area {
  padding: 22rem 0 19rem;
}

.as-footer-top-img {
  margin-top: -16rem;
  z-index: 999;
  position: relative;
}

.as-footer-top-content {
  margin-top: 0.6rem;
}

.as-footer-top-img img {
  width: 80.3rem;
}

.as-history-area {
  padding: 8.8rem 0 28rem;
}

.as-w-600 {
  width: 60rem;
}

.as-history-content span {
  padding-bottom: 1.5rem;
  display: block;
}

.as-history-content h2 {
  font-size: 8rem;
  padding-bottom: 1.5rem;
  line-height: 1.1;
}

.as-history-content h4 {
  padding-bottom: 8rem;
}

.as-history-bottom-content p {
  padding-bottom: 3rem;
}

.as-history-bottom-content p:last-child {
  padding-bottom: 0;
}

.as-history-bottom-content {
  padding-bottom: 29rem;
}

.as-history-last h4 {
  font-size: 3.16rem;
  padding-bottom: 0;
  z-index: 9;
  position: relative;
}

.as-history-last svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -14.7rem;
  z-index: 0;
  margin-top: -1.5rem;
  width: 31rem;
  height: 31rem;
}

.as-history-content {
  padding-top: 3rem;
}

.as-right-history-img img {
  width: 72.6rem;
}

.as-right-history-img {
  padding-bottom: 15rem;
}

.as-history-right-bottom-content {
  padding-left: 11rem;
}

.as-history-right-bottom-content p {
  padding-bottom: 3.5rem;
}

.as-fotorelacja-slider2 {
  overflow: visible;
}

.cs-container {
  width: 114rem;
  margin: 0 auto;
}

.as-history-arrow {
  position: absolute;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}

.as-history-button-prev {
  left: -16rem;
}

.as-history-button-next {
  right: -16rem;
}

.history-slider-content img {
  height: 30rem;
  object-fit: cover;
}

.as-profile-content h2 {
  font-size: 8rem;
}

.as-profile-right-content {
  padding-top: 11rem;
  position: relative;
}

.as-profile-right-content svg {
  position: absolute;
  top: 5.5rem;
  left: -2.2rem;
  width: 31rem;
  height: 31rem;
}

.as-profile-right-content h3 {
  padding-left: 11rem;
  position: relative;
  z-index: 9;
}

.as-news-profile-area {
  padding: 25rem 0 26rem;
}

.as-history-slider {
  position: absolute;
  width: 100%;
  margin-top: -21rem;
}

.as-history-slider.v2 {
  margin-top: -16rem;
}

.green-cinema {
  padding: 30rem 0 16rem;
}

.green-cinema-content svg {
  display: block;
  margin-left: -2rem;
  width: 31rem;
  margin-bottom: 11rem;
  height: 31rem;
}

.green-cinema-content svg:last-child {
  margin-bottom: 0;
}

.green-cinema-content h4 {
  bottom: 3.5rem;
  position: absolute;
}

.as-green-cinema-right-content {
  padding: 3.5rem 0 0 11rem;
}

.as-green-cinema-right-content .title_80 {
  font-size: 8rem;
  padding-bottom: 8rem;
}

.as-accessible {
  padding-top: 17rem;
}

.as-history-right-bottom-content p:last-child {
  padding-bottom: 8rem;
}

.as-accessible-icon {
  width: 5.2rem;
  height: 5.2rem;
  background: var(--orange);
  position: relative;
  border-radius: 50%;
  margin-left: 1.1rem;
}

.as-accessible-icon svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 7.6rem;
}

.as-accessible-icon img {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 7.6rem;
}

.as-accessible-content .title_80 {
  font-size: 8rem;
  padding-bottom: 1.6rem;
}

.as-accessible-img img {
  width: 62rem;
}

.as-accessible-img {
  padding-left: 8rem;
}

.as-accessible-right-content {
  padding-left: 11rem;
  padding-top: 3.2rem;
}

.as-accessible-right-content .tytuly-24 {
  padding: 4.5rem 0 1.8rem;
}

.as-accessible-right-d {
  gap: 5.8rem;
  padding-bottom: 1.1rem;
}

.as-history-slider {
  overflow: hidden;
}

.as-history-arrow svg {
  width: 12rem;
}

.as-ticket-content h1 {
  padding-bottom: 1.1rem;
}

.as-ticket-content {
  padding-top: 9rem;
  padding-bottom: 14rem;
}

.as-ticket-img {
  padding-top: 5.5rem;
}

.as-ticket-img > img {
  max-width: 43.4rem;
  margin-right: 12.5rem;
}

.as-price-box {
  max-height: 66rem;
  border-top: 0.3rem solid var(--orange);
  border-bottom: 0.3rem solid var(--orange);
  padding: 3.5rem 0;
  padding-right: 0;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.as-price-items:last-child {
  padding-bottom: 0;
}

.as-price-items {
  padding-bottom: 4.5rem;
}

.as-price-items {
  justify-content: space-between;
}

.as-price-list {
  position: relative;
}

.as-price-list-img {
  position: absolute;
  bottom: -20.5rem;
}

.as-price-list-img img {
  width: 107.2rem;
}

.as-ticket-reservation-right-content {
  padding-right: 12.5rem;
}

.as-ticket-reservation {
  padding: 20rem 0 19rem;
  position: relative;
  z-index: 999;
}

.as-ticket-reservation-content {
  padding-top: 5.5rem;
}

.as-tic-res-items {
  gap: 3rem;
}

.as-price-list-content {
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-right: 12.5rem;
}

.as-nonstop-r-content {
  padding-right: 12.5rem;
}

.as-nonstop-area {
  padding: 24.2rem 0 30.5rem;
}

.as-ti-res-icon svg {
  width: 5.8rem;
}

.download-button-box svg {
  width: 8rem;
}
.galeria-glarry-overlay svg {
  width: 16rem;
}

.as-news-area .as-news-wrapper .row {
  --bs-gutter-x: 2.1rem;
}

/* ======== Hand Animation ======== */
.hand-img {
  width: 90rem;
  z-index: 2;
  position: relative;
  animation: rotate-x 3s infinite ease-in-out;
}

@keyframes rotate-x {
  0%,
  30% {
    transform: rotate(30deg); /* 3s wait */
  }

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

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

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

.sun-dot {
  display: block;
  width: 16rem;
  height: 16rem;
  background: #fafafa;
  border-radius: 10rem;
  position: absolute;
  bottom: 24rem;
  left: 24rem;
  z-index: 1;
  animation: up-down-2 3s infinite ease-in-out;
  animation-delay: 0.25s;
}

.hand-animation {
  position: absolute;
  left: -52rem;
  top: -35rem;
}

@keyframes up-down-2 {
  0%,
  30% {
    transform: translate(0, 0); /* 3s wait */
  }

  50% {
    transform: translate(0, 25rem);
  }

  80% {
    transform: translate(0, 25rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* =============== Hand card animation =============== */
.hand-card-animation {
  position: absolute;
  right: 54.5rem;
  top: -11rem;
  width: fit-content;
}

.card-anime-img {
  position: relative;
  width: 50.4rem;
  animation: card-rotate-x 3s infinite ease-in-out;
  z-index: 2;
}

@keyframes card-rotate-x {
  0%,
  30% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(44deg);
  }

  80% {
    transform: rotate(44deg);
  }

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

.card-anim-stars {
  width: 19.8rem;
  height: 22.1rem;
  position: absolute;
  top: 14.3rem;
  left: 15.6rem;
  z-index: 1;
}

.card-anim-star.v1 {
  width: 15.4rem;
  position: absolute;
  left: 0;
  top: 0;
  animation: card-star1 3s infinite ease-in-out;
}

@keyframes card-star1 {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-8rem, -4.2rem);
  }

  80% {
    transform: translate(-8rem, -4.2rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.card-anim-star.v2,
.card-anim-star.v3 {
  width: 8.8rem;
  position: absolute;
}

.card-anim-star.v2 {
  right: 0;
  top: 6.6rem;
  position: absolute;
  animation: card-star2 3s infinite ease-in-out;
}

@keyframes card-star2 {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5.5rem, -15.5rem);
  }

  80% {
    transform: translate(5.5rem, -15.5rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.card-anim-star.v3 {
  right: 0;
  bottom: 0;
  position: absolute;
  animation: card-star3 3s infinite ease-in-out;
}

@keyframes card-star3 {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(12.5rem, -10.5rem);
  }

  80% {
    transform: translate(12.5rem, -10.5rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ==================== camera-video ====================== */
.camera-img {
  width: 74.2rem;
}

.camera-video {
  position: absolute;
}

.camera-wrap {
  width: fit-content;
  position: absolute;
  top: calc(50% - 2.2rem);
  transform: translateY(-50%);
  right: -9.1rem;
}

.camera-video.v2 {
  width: 5.8rem;
  height: 5.8rem;
  object-fit: cover;
  left: 33.85rem;
  top: 17.5rem;
  border-radius: 100rem;
}

.camera-video.v1 {
  width: 7.2rem;
  height: 7.2rem;
  object-fit: cover;
  left: 32.95rem;
  top: 26.7rem;
  border-radius: 100rem;
}

.as-galeria-hero .title_100 {
  line-height: 1.15;
}

.finger-img {
  width: 31.7rem;
  position: absolute;
  right: 8.5rem;
  bottom: 3.8rem;
  animation: finger-animation 3s infinite ease-in-out;
}

@keyframes finger-animation {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18rem, -18.5rem);
  }

  80% {
    transform: translate(18rem, -18.5rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.two-fingers {
  width: 59.2rem;
  display: block;
  margin-left: auto;
  margin-top: -10rem;
  margin-right: -1.5rem;
  animation: finger-animation-2 3s infinite ease-in-out;
}

@keyframes finger-animation-2 {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(58deg);
  }

  80% {
    transform: rotate(58deg);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* flower-img */
.flower-img {
  width: 40rem;
  position: absolute;
  left: 13.8rem;
  top: 9rem;
  animation: flower-anim 3s infinite ease-in-out;
}

@keyframes flower-anim {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(39deg) translate(-2rem, 10.5rem);
  }

  80% {
    transform: rotate(39deg) translate(-2rem, 10.5rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ============== Contact animation ============= */
.CT-anim-main-img {
  position: relative;
  z-index: 2;
}

.contact-anim {
  width: 84rem;
  position: absolute;
  right: 0;
  top: 0;
}

.CT-anim-phone {
  width: 60.3rem;
  position: absolute;
  right: -2rem;
  top: 3.5rem;
  z-index: 2;
  animation: phone-rotate 3s infinite ease-in-out;
}

@keyframes phone-rotate {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(30deg) translate(10rem, 4rem);
  }

  80% {
    transform: rotate(30deg) translate(10rem, 4rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.CT-anim-flower-right {
  width: 25.4rem;
  position: absolute;
  right: 4.2rem;
  bottom: 32rem;
  z-index: 1;
  animation: contact-flower-right 3s infinite ease-in-out;
}

@keyframes contact-flower-right {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(20deg) translate(5rem, 4rem);
  }

  80% {
    transform: rotate(20deg) translate(5rem, 4rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.CT-anim-flower-left {
  width: 25.4rem;
  position: absolute;
  bottom: 29.4rem;
  left: 3rem;
  z-index: 1;
  animation: contact-flower-left 3s infinite ease-in-out;
}

@keyframes contact-flower-left {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(-30deg) translate(-1rem, 0rem);
  }

  80% {
    transform: rotate(-30deg) translate(-1rem, 0rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.CT-anim-sunflower {
  width: 26.9rem;
  position: absolute;
  left: 4.1rem;
  top: 30rem;
  z-index: 2;
  animation: sunflower-y 3s infinite ease-in-out;
}

@keyframes sunflower-y {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: translateY(41rem);
  }

  80% {
    transform: translateY(41rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.CT-sm-flower {
  width: 15rem;
  position: absolute;
  top: 34rem;
  right: 31rem;
  z-index: 3;
}

/* ============== Onas-anim ============== */
.nas-anim {
  width: 69.71rem;
  margin-left: 11.4rem;
  margin-top: -9rem;
}

.nas-stars {
  width: 22.9rem;
  height: 49.1rem;
  position: absolute;
  right: -7.5rem;
  top: 23.2rem;
}

.nas-star {
  position: absolute;
  display: block;
}

.nas-star1 {
  right: 0;
  top: -1rem;
  width: 7.76rem;
  animation: nas-star1 3s infinite ease-in-out;
}

@keyframes nas-star1 {
  0%,
  30% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.nas-star2,
.nas-star4 {
  width: 6.6rem;
}

.nas-star2 {
  right: 6.7rem;
  top: 13.1rem;
  animation: nas-star2 3s infinite ease-in-out;
}

@keyframes nas-star2 {
  0%,
  30% {
    transform: scale(1);
  }

  50% {
    transform: scale(2.3);
  }

  80% {
    transform: scale(2.3);
  }

  100% {
    transform: scale(1);
  }
}

.nas-star3 {
  left: -1.4rem;
  width: 8.6rem;
  top: 18.3rem;
  animation: nas-star3 3s infinite ease-in-out;
}

@keyframes nas-star3 {
  0%,
  30% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.16);
  }

  80% {
    transform: scale(1.16);
  }

  100% {
    transform: scale(1);
  }
}

.nas-star4 {
  bottom: 7.3rem;
  left: 5.7rem;
  animation: nas-star4 3s infinite ease-in-out;
}

@keyframes nas-star4 {
  0%,
  30% {
    transform: scale(1);
  }

  50% {
    transform: scale(3);
  }

  80% {
    transform: scale(3);
  }

  100% {
    transform: scale(1);
  }
}

.nas-star5 {
  width: 8.3rem;
  bottom: -1.2rem;
  right: -1.2rem;
  animation: nas-star5 3s infinite ease-in-out;
}

@keyframes nas-star5 {
  0%,
  30% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.25);
  }

  80% {
    transform: scale(0.25);
  }

  100% {
    transform: scale(1);
  }
}

/* =================== nasi-anim ================== */
.nasi-anim {
  width: 87.2rem;
  position: absolute;
  right: -4.7rem;
  top: 2.2rem;
  margin-top: -3.5rem;
}

.nasi-main-img {
  position: relative;
  z-index: 3;
}

.nasi-star {
  position: absolute;
}

.nasi-star1 {
  width: 27.7rem;
  z-index: 2;
  right: 15.879rem;
  top: 16rem;
  animation: nasi-star1 3s infinite ease-in-out;
}

@keyframes nasi-star1 {
  0%,
  30% {
    right: 15.879rem;
    top: 16rem;
  }

  50% {
    right: 26.3rem;
    top: -2.3rem;
  }

  80% {
    right: 26.3rem;
    top: -2.3rem;
  }

  100% {
    right: 15.879rem;
    top: 16rem;
  }
}

.nasi-flower {
  width: 42.3rem;
  top: 19.2rem;
  position: absolute;
  left: -11.2rem;
  animation: nasi-flower 3s infinite ease-in-out;
}

@keyframes nasi-flower {
  0%,
  30% {
    transform: rotate(0) translate(0, 0);
  }

  50% {
    transform: rotate(-15deg) translate(-6rem, 0);
  }

  80% {
    transform: rotate(-15deg) translate(-6rem, 0);
  }

  100% {
    transform: rotate(0) translate(0, 0);
  }
}

.nasi-white-bg {
  width: 42.6rem;
  position: absolute;
  z-index: 1;
  animation: nasi-white-bg 3s infinite ease-in-out;
  right: 8.3rem;
}

@keyframes nasi-white-bg {
  0%,
  30% {
    top: 18.4rem;
    transform: rotate(0);
  }

  50% {
    top: 0;
    transform: rotate(-25deg);
  }

  80% {
    top: 0;
    transform: rotate(-25deg);
  }

  100% {
    top: 18.4rem;
    transform: rotate(0);
  }
}

.nasi-star2,
.nasi-star3 {
  width: 8.8rem;
  z-index: 3;
}

.nasi-star2 {
  top: 18.4rem;
  right: 14.3rem;
  animation: nasi-star2 3s infinite ease-in-out;
}

@keyframes nasi-star2 {
  0%,
  30% {
    top: 18.4rem;
  }

  50% {
    top: 7.1rem;
  }

  80% {
    top: 7.1rem;
  }

  100% {
    top: 18.4rem;
  }
}

.nasi-star3 {
  right: 14.3rem;
  bottom: 19.4rem;
  animation: nasi-star3 3s infinite ease-in-out;
}

@keyframes nasi-star3 {
  0%,
  30% {
    bottom: 19.4rem;
  }

  50% {
    bottom: 4.5rem;
  }

  80% {
    bottom: 4.5rem;
  }

  100% {
    bottom: 19.4rem;
  }
}

.nasi-left {
  position: relative;
  z-index: 5;
}

/* ================== dla area ==================== */

.dla-anim {
  width: 94.5rem;
  position: absolute;
  right: -10rem;
  top: -14rem;
}

.dla-dots {
  display: flex;
  gap: 2.9rem;
  width: fit-content;
  position: absolute;
  left: 4.2rem;
  top: 19rem;
  z-index: 1;
}

.dla-dot {
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 50%;
  background: var(--orange);
}

.dla-dot1 {
  background: #262626;
  opacity: 0;
  animation: dot1Flow 3.5s infinite linear;
}

.dla-dot2 {
  opacity: 0;
  animation: dot2Flow 3.5s infinite linear;
}

.dla-dot3 {
  opacity: 1; /* always visible */
}

/* reveals later, hides together with dot2 */
@keyframes dot1Flow {
  0%,
  38% {
    opacity: 0;
  }

  45%,
  68% {
    opacity: 1;
  }

  69%,
  100% {
    opacity: 0;
  }
}

/* reveals first, hides exact same moment as dot1 */
@keyframes dot2Flow {
  0%,
  12% {
    opacity: 0;
  }

  18%,
  68% {
    opacity: 1;
  }

  69%,
  100% {
    opacity: 0;
  }
}

.dla-white-star {
  position: absolute;
  width: 3.5rem;
  top: 14rem;
  right: 16.5rem;
  animation: dla-white-star 3s infinite ease-in-out;
}

@keyframes dla-white-star {
  0%,
  30% {
    width: 3.5rem;
    top: 14rem;
    right: 16.5rem;
  }

  50% {
    width: 7.9rem;
    top: 15rem;
    right: 11.5rem;
  }

  80% {
    width: 7.9rem;
    top: 15rem;
    right: 11.5rem;
  }

  100% {
    width: 3.5rem;
    top: 14rem;
    right: 16.5rem;
  }
}

/* ================== download-area ================= */
.keyboard-anim {
  position: relative;
  width: 49.1rem;
  margin-top: 11rem;
}

.keyboard-anim-wrap {
  display: flex;
  justify-content: flex-end;
}

.download-area .row {
  --bs-gutter-x: 10.9rem;
}

.keyboard-dot {
  width: 4.8rem;
  height: 4.8rem;
  background: transparent;
  border-radius: 100rem;
  border: 0.5rem solid var(--orange);
}

.keyboard-dots {
  display: grid;
  gap: 2.7rem;
  position: absolute;
  right: 15rem;
  top: -29rem;
}
.keyboard-dot1 {
  animation: keyboard-dot1 5s infinite linear;
}
.keyboard-dot2 {
  animation: keyboard-dot2 5s infinite linear;
}
.keyboard-typing {
  animation: keyboardTyping 5s infinite linear; /* was 5.5s ease-in-out */
  transform-origin: center;
}

/* reveals later, hides together with dot2 */
@keyframes keyboard-dot1 {
  0%,
  38% {
    opacity: 0;
  }
  45%,
  68% {
    opacity: 1;
  }
  69%,
  100% {
    opacity: 0;
  }
}

/* reveals first, hides exact same moment as dot1 */
@keyframes keyboard-dot2 {
  0%,
  12% {
    opacity: 0;
  }
  18%,
  68% {
    opacity: 1;
  }
  69%,
  100% {
    opacity: 0;
  }
}

@keyframes keyboardTyping {
  /* idle */
  0%,
  12% {
    transform: rotate(0deg);
  }

  /* stage 1→2: matches dot2 reveal (12%→18%, 6% span) */
  18%,
  38% {
    transform: rotate(18deg);
  }

  /* stage 2→3: matches dot1 reveal (38%→45%, 7% span) */
  45%,
  68% {
    transform: rotate(-18deg);
  }

  /* reset: same 7% span as the reveals (69%→76%) then hold */
  76%,
  100% {
    transform: rotate(0deg);
  }
}

/* ============== Shake Animation =============== */
.shake-anim {
  width: 53.4rem;
  position: absolute;
  bottom: -17rem;
  right: 4rem;
  height: 38.8rem;
}

.shake-anim-circle {
  width: 3.5rem;
  position: absolute;
  top: 21.9rem;
  right: 17.4rem;
  animation: shake-anim-circle 3s infinite ease-in-out;
}

@keyframes shake-anim-circle {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(8rem, -12rem);
  }

  80% {
    transform: translate(8rem, -12rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.shake-anim-dot {
  left: 18rem;
  bottom: 9.8rem;
  width: 2.3rem;
  position: absolute;
  animation: shake-anim-dot 3s infinite ease-in-out;
}

@keyframes shake-anim-dot {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-7rem, 8.5rem);
  }

  80% {
    transform: translate(-7rem, 8.5rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.shake-arrow {
  position: absolute;
}

.shake-arrow1 {
  width: 28.2rem;
  left: 6.2rem;
  top: 9.1rem;
  animation: shake-arrow1 3s infinite ease-in-out;
}

@keyframes shake-arrow1 {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(40deg) translate(-10rem, -17rem);
  }

  80% {
    transform: rotate(40deg) translate(-10rem, -17rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.shake-arrow2 {
  width: 29.6rem;
  right: 3.4rem;
  bottom: 6.6rem;
  animation: shake-arrow2 3s infinite ease-in-out;
}

@keyframes shake-arrow2 {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(53deg) translate(24rem, 3.5rem);
  }

  80% {
    transform: rotate(53deg) translate(24rem, 3.5rem);
  }

  100% {
    transform: translate(0, 0);
  }
}

.shake-anim-img {
  position: relative;
  z-index: 5;
  animation: shake-anim-img 3s infinite ease-in-out;
}

@keyframes shake-anim-img {
  0%,
  30% {
    transform: translate(0, 0);
  }

  50% {
    transform: rotate(-21.2deg);
  }

  80% {
    transform: rotate(-21.2deg);
  }

  100% {
    transform: translate(0, 0);
  }
}

.shake-content {
  position: relative;
  z-index: 5;
}

.mega-menu-two .dropdown-input:first-child span,
.mega-menu-two .dropdown-input:hover span {
  color: var(--orange);
}

.mega-menu-two .dropdown-input:first-child input::placeholder,
.mega-menu-two .dropdown-input:hover input::placeholder {
  color: var(--orange);
}


.services-area .bg-30:before {
    z-index: 1;
}