body {
  font-family: "transat-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #232323;
  color: #d1a75a;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 9999;
}

.ticker {
  white-space: nowrap;
  width: 100%;
}

.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 190s linear infinite;
  font-size: 16px;
}

@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.trip-card {
  transform: translateY(0px) rotate(1deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.trip-card:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.trip-card2 {
  transform: translateY(0px) rotate(-1deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.trip-card2:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.trip-card3 {
  transform: translateY(0px) rotate(1deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.trip-card3:hover {
  transform: translateY(-12px) rotate(3deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.trip-section {
  position: relative;
}

.trip-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 40px 20px 0;
}

.trip-wrapper::-webkit-scrollbar {
  display: none;
}

.trip-card {
  flex: 0 0 300px;
  height: 300px;
  background: #d8a345;
  border-radius: 17px;
  text-align: center;
}

/* przycisk */

.scroll-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  background: #000;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.price-card {
  transform: translateY(0px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.vimeo-wrapper iframe {
  /*width: 100vw;*/
  height: 56.25vw;
  min-height: 100vh;
  min-width: 220.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vimeo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-color: #2a2827;
}

.logo-fixed {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  transition: all 0.35s ease;
  margin-top: 15px;
}

/* obrazek */

.logo-fixed img {
  height: 160px;
  width: auto;
  transition: all 0.35s ease;
  display: block;
}

/* stan po scrollu */

.logo-fixed.shrink img {
  height: 90px;
  width: auto;
}

.logo-fixed.shrink {
  padding: 8px 18px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient( rgba(0,0,0,0.19) 0%, rgba(0,0,0,0.19) 100% );
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.logo-fixed.shrink img {
  height: 70px;
}

.scroll-cards {
  height: 600vh;
  position: relative;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cards {
  position: relative;
  width: min(90vw, 650px);
  height: 350px;
}

/* wszystkie kartki */

.card-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #eee9df;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: transform .6s ease;
  border: 9px solid rgb(216,163,69);
  background: url("../../assets/img//bg-light.webp") top / contain repeat;
  text-align: center !important;
}

/* początkowy stos */

.card-item:nth-child(1) {
  transform: rotate(-2deg) translate(0,0);
  z-index: 6;
}

.card-item:nth-child(2) {
  transform: rotate(2deg) translate(10px,10px);
  z-index: 5;
}

.card-item:nth-child(3) {
  transform: rotate(-1deg) translate(-20px,20px);
  z-index: 4;
}

.card-item:nth-child(4) {
  transform: rotate(1deg) translate(10px,30px);
  z-index: 3;
}

.card-item:nth-child(5) {
  transform: rotate(-1deg) translate(20px,40px);
  z-index: 2;
}

.card-item:nth-child(6) {
  transform: rotate(1deg) translate(-10px,20px);
  z-index: 1;
}

/* kartka która się przewija */

.card-item.out {
  transform: translateY(-120vh) rotate(-6deg);
}

@media (min-width: 300px) {
  #proces-txt {
    font-family: Oswald, sans-serif;
    font-size: clamp(28px, 6vw, 57px);
  }
}

@media (min-width: 768px) {
  #proces-txt {
    font-family: Oswald, sans-serif;
    font-size: 87px;
    margin-bottom: 0px;
  }
}

