@charset "UTF-8";
/**
 * Panel: Offer
 * Multi-step scrub: titles activate → video fullscreen → video shrinks → desc appears
 */
@media print {
  * { /* Keyword values */
    -webkit-print-color-adjust: economy;
    -webkit-print-color-adjust: exact !important;
    /* Global values */
    -webkit-print-color-adjust: inherit;
    -webkit-print-color-adjust: initial;
    -webkit-print-color-adjust: unset;
  }
}
.panel--offer {
  display: flex;
  position: relative;
  margin-bottom: 3rem;
}
.panel--offer .container {
  display: none;
}
@media (min-width: 1024px) {
  .panel--offer .container {
    display: block;
  }
}
@media (min-width: 1024px) {
  .panel--offer {
    padding-inline: 3rem;
    padding-bottom: clamp(5rem, 15vh, 14.1rem);
    min-height: 100vh;
    align-items: flex-end;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .horizontal .panel--offer {
    align-items: flex-end;
  }
  .horizontal .panel--offer .container {
    position: relative;
    z-index: 2;
  }
}

.offer__aside {
  display: none;
}
.offer__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .offer__wrap {
    padding: 0 4rem 4rem 5rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
    gap: 4.4rem;
  }
}
@media (min-width: 1336px) {
  .offer__wrap {
    padding-left: 6rem;
    padding-bottom: 5rem;
  }
}
.offer__items {
  display: none;
}
@media (min-width: 1024px) {
  .offer__items {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    width: 33%;
  }
}
.offer__title {
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease-out;
}
.offer__title.is-active {
  color: #fff;
}
@media (min-width: 1024px) {
  .offer__title {
    font-size: 1.65rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: normal;
    cursor: default;
    transition: font-size 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease-out, font-weight 0.3s ease-out;
  }
  .offer__title.is-active {
    font-size: clamp(2.5rem, 3.5vw, 8.5rem);
    color: #fff;
    line-height: 1.05;
    font-weight: 700;
  }
}
@media (min-width: 1336px) {
  .offer__title.is-active {
    font-size: clamp(3rem, 5vw, 6.3rem);
  }
}
.offer__descs {
  display: none;
}
@media (min-width: 1024px) {
  .offer__descs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: calc(67% - 4.4rem);
    z-index: 3;
    position: relative;
  }
}
.offer__desc {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1024px) {
  .offer__desc {
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 100%;
    transition: opacity 0.4s ease-out;
  }
  .offer__desc:first-child {
    position: relative;
  }
  .offer__desc.is-active {
    opacity: 1;
  }
}
.offer__video-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .offer__video-wrapper {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    height: 120vh;
    width: 100vw;
    transform: translate(-50%, -50%);
    transform-origin: center;
    top: 50%;
    left: 50%;
  }
}
.offer__video {
  display: none;
}
@media (min-width: 1024px) {
  .offer__video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    will-change: transform, opacity, border-radius;
  }
  .offer__video.is-active {
    opacity: 0.3;
  }
  .offer__video.is-shrunk {
    opacity: 1;
    border-radius: 1rem;
  }
}
.offer__svg-placeholder {
  display: none;
}
@media (min-width: 1024px) {
  .offer__svg-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40vw;
    height: 50vh;
    max-width: 612px;
    max-height: 465px;
    z-index: 1;
    opacity: 0;
  }
  .offer__svg-placeholder svg {
    width: 100%;
    height: 100%;
  }
}
.offer__swiper {
  display: block;
  width: 100%;
  position: relative;
}
.offer__swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.offer__swiper .swiper-pagination-bullet-active {
  background: #fff;
}
@media (min-width: 1024px) {
  .offer__swiper {
    display: none;
  }
}
.offer__swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}
.offer__swiper-video-wrap {
  inset: 0;
  z-index: 0;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  margin-bottom: 3rem;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer__swiper-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.offer__swiper-content {
  position: relative;
  z-index: 1;
}
.offer__swiper-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 2rem;
  line-height: 1.1;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 639px) {
  .offer__swiper-title {
    font-size: clamp(2rem, 8vw, 4rem);
  }
}
.offer__swiper-desc {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer__swiper .swiper-slide:not(.swiper-slide-active) .offer__swiper-title {
  opacity: 0;
  transform: translateX(-50px);
}
.offer__swiper .swiper-slide:not(.swiper-slide-active) .offer__swiper-video-wrap {
  opacity: 0;
  transform: scale(1.08) translateY(-24px);
}
.offer__swiper .swiper-slide:not(.swiper-slide-active) .offer__swiper-desc {
  opacity: 0;
  transform: scale(0.95) translateY(28px);
}
.offer__swiper .swiper-slide-active .offer__swiper-title,
.offer__swiper .swiper-slide-active .offer__swiper-video-wrap,
.offer__swiper .swiper-slide-active .offer__swiper-desc {
  opacity: 1;
  transform: none;
}

@media (min-width: 1024px) {
  .offer__title.split div {
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .slate-letters {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .slate-letter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slate-letter--s {
    z-index: 5;
  }
  .slate-letter--l {
    z-index: 4;
  }
  .slate-letter--a {
    z-index: 3;
  }
  .slate-letter--t {
    z-index: 2;
  }
  .slate-letter--e {
    z-index: 1;
  }
  .slate-letter svg {
    width: 100%;
    height: 100%;
  }
  .slate-letter path,
  .slate-letter polygon {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
  }
}
/*# sourceMappingURL=offer.css.map */
