/* Pechat32 carousel fallback, 2026-07-22 */
.section_1__slider.p32-fallback-carousel {
  position: relative;
  overflow: hidden;
}

.section_1__slider.p32-fallback-carousel .section_1__slider-item {
  display: none !important;
}

.section_1__slider.p32-fallback-carousel .section_1__slider-item.p32-slide-active {
  display: flex !important;
}

.section_1__slider.p32-fallback-carousel .p32-fallback-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 50px;
  padding: 0;
  border: 0;
  transform: translate(0,-50%);
  cursor: pointer;
  background: url(./xn-32-6kct3cu7a5b.xn-p1ai-wp-content-themes-tems-images-ARROW.svg) center/cover no-repeat;
  z-index: 2;
}

.section_1__slider.p32-fallback-carousel .p32-fallback-prev {
  left: 25px;
  transform: scaleX(-1) translate(0, -50%);
}

.section_1__slider.p32-fallback-carousel .p32-fallback-next {
  right: 25px;
}

.section_1__slider.p32-fallback-carousel .p32-fallback-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section_1__slider.p32-fallback-carousel .p32-fallback-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  font-size: 0;
  cursor: pointer;
}

.section_1__slider.p32-fallback-carousel .p32-fallback-dots .p32-active button {
  background: #ef7f1a;
}

@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel .p32-fallback-arrow {
    display: none;
  }
}

/* Mobile swipe hints, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel::before,
  .section_1__slider.p32-fallback-carousel::after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 28px;
    height: 28px;
    border-top: 3px solid rgba(255,255,255,.9);
    border-right: 3px solid rgba(255,255,255,.9);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,.35));
    pointer-events: none;
  }

  .section_1__slider.p32-fallback-carousel::before {
    left: 14px;
    transform: translateY(-50%) rotate(-135deg);
  }

  .section_1__slider.p32-fallback-carousel::after {
    right: 14px;
    transform: translateY(-50%) rotate(45deg);
  }

  .section_1__slider.p32-fallback-carousel .p32-fallback-dots {
    bottom: 14px;
  }
}

/* Mobile swipe animation hint, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel .section_1__slider-item.p32-slide-active {
    animation: p32SwipeHint 3.8s ease-in-out infinite;
    will-change: transform;
  }

  .section_1__slider.p32-fallback-carousel:hover .section_1__slider-item.p32-slide-active,
  .section_1__slider.p32-fallback-carousel:active .section_1__slider-item.p32-slide-active {
    animation-play-state: paused;
  }
}

@keyframes p32SwipeHint {
  0%, 62%, 100% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(-10px);
  }
  78% {
    transform: translateX(10px);
  }
  86% {
    transform: translateX(0);
  }
}

/* Mobile carousel arrows tidy, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel::before,
  .section_1__slider.p32-fallback-carousel::after {
    width: 18px;
    height: 18px;
    border-top-width: 2px;
    border-right-width: 2px;
    opacity: .82;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.28));
  }

  .section_1__slider.p32-fallback-carousel::before {
    left: 10px;
  }

  .section_1__slider.p32-fallback-carousel::after {
    right: 10px;
  }
}

/* Real swipe slide animation, 2026-07-22 */
.section_1__slider.p32-fallback-carousel .section_1__slider-item.p32-slide-next {
  display: flex !important;
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
}

.section_1__slider.p32-fallback-carousel .section_1__slider-item.p32-slide-active {
  z-index: 2;
}

.section_1__slider.p32-fallback-carousel.p32-is-animating .section_1__slider-item.p32-slide-active {
  animation: none !important;
}

.section_1__slider.p32-fallback-carousel .p32-slide-out-left {
  display: flex !important;
  animation: p32SlideOutLeft .20s ease both !important;
}

.section_1__slider.p32-fallback-carousel .p32-slide-out-right {
  display: flex !important;
  animation: p32SlideOutRight .20s ease both !important;
}

.section_1__slider.p32-fallback-carousel .p32-slide-in-right {
  animation: p32SlideInRight .20s ease both !important;
}

.section_1__slider.p32-fallback-carousel .p32-slide-in-left {
  animation: p32SlideInLeft .20s ease both !important;
}

@keyframes p32SlideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-100%); opacity: .96; }
}

@keyframes p32SlideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: .96; }
}

@keyframes p32SlideInRight {
  from { transform: translateX(100%); opacity: .96; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes p32SlideInLeft {
  from { transform: translateX(-100%); opacity: .96; }
  to { transform: translateX(0); opacity: 1; }
}

/* Mobile carousel compact height, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel,
  .section_1__slider.p32-fallback-carousel .section_1__slider-item {
    height: 460px !important;
    min-height: 460px !important;
  }
}

@media (max-width: 430px) {
  .section_1__slider.p32-fallback-carousel,
  .section_1__slider.p32-fallback-carousel .section_1__slider-item {
    height: 430px !important;
    min-height: 430px !important;
  }
}

/* Lock vertical page scroll during horizontal carousel swipe, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel {
    touch-action: pan-y;
    overscroll-behavior: contain;
  }

  .section_1__slider.p32-fallback-carousel.p32-swipe-lock {
    touch-action: pan-y;
  }
}

/* Mobile carousel more compact height, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel,
  .section_1__slider.p32-fallback-carousel .section_1__slider-item {
    height: 420px !important;
    min-height: 420px !important;
  }
}

@media (max-width: 430px) {
  .section_1__slider.p32-fallback-carousel,
  .section_1__slider.p32-fallback-carousel .section_1__slider-item {
    height: 395px !important;
    min-height: 395px !important;
  }
}

/* Mobile carousel extra compact height, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel,
  .section_1__slider.p32-fallback-carousel .section_1__slider-item {
    height: 390px !important;
    min-height: 390px !important;
  }
}

@media (max-width: 430px) {
  .section_1__slider.p32-fallback-carousel,
  .section_1__slider.p32-fallback-carousel .section_1__slider-item {
    height: 365px !important;
    min-height: 365px !important;
  }
}

/* Carousel allows page vertical scroll while swiping, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel,
  .section_1__slider.p32-fallback-carousel.p32-swipe-lock {
    touch-action: pan-y !important;
    overscroll-behavior: auto;
  }
}

/* Mobile carousel arrows smaller, 2026-07-22 */
@media (max-width: 600px) {
  .section_1__slider.p32-fallback-carousel::before,
  .section_1__slider.p32-fallback-carousel::after {
    width: 14px;
    height: 14px;
    border-top-width: 2px;
    border-right-width: 2px;
    opacity: .72;
  }

  .section_1__slider.p32-fallback-carousel::before {
    left: 8px;
  }

  .section_1__slider.p32-fallback-carousel::after {
    right: 8px;
  }
}
