/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");

/* 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%);

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

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

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

.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.2rem 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 {
  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: 1;
}

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

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

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

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

.card:before {
  content: "";
  height: 3rem;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 0.2rem 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:hover .card-link span {
  color: var(--orange) !important;
}

.card:hover .card-link 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%;
}

/* =============== 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.2rem 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.2rem 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.2rem 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.2rem 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.2rem 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.2rem 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.2rem 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.2rem 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.2rem 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.2rem solid var(--orange);
}

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

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