.elementor-95 .elementor-element.elementor-element-d81f21d{--display:flex;--padding-top:3%;--padding-bottom:3%;--padding-left:3%;--padding-right:3%;}/* Start custom CSS for html, class: .elementor-element-0a8abd9 */.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transition: scroll-left 1.2s cubic-bezier(.4,0,.2,1);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track.no-cursor,
.carousel-track.no-cursor * {
  cursor: none !important;
}

.carousel-item {
  position: relative;
  width: calc((100% - 30px) / 4);
  max-width: 320px;
  height: 480px;
  flex: 0 0 calc((100% - 30px) / 4);
  overflow: hidden;
  box-shadow: 0 2px 24px #0004;
  cursor: pointer;
  background: #111;
  transition: box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}


.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-drag: none;
  -webkit-user-drag: none;
}

.carousel-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  display: none;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 32px;
  box-shadow: 0 2px 16px #0009;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: opacity 0.50s;
  user-select: none;
}

.carousel-track.carousel-scrolling .carousel-item {
  transform: scale(0.90);
}


@media (max-width: 600px) {
  .carousel-item {
    width: 85vw;
    height: calc(85vw * 1.5078); 
    flex: 0 0 85vw;
  }
  .carousel-cursor {
    font-size: 1.1rem;
    padding: 6px 12px;
  }
}/* End custom CSS */