.elementor-section.elementor-section-stretched {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.huuguu-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.huuguu-slide picture,
.huuguu-slide picture img {
  display: block;
  width: 100%;
  height: auto;
}

.huuguu-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.huuguu-slide-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: #fff;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.huuguu-slide-text h1,
.huuguu-slide-text .huuguu-slide-title {
  all: unset;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: inherit;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

.huuguu-slide-button {
  margin-top: 1rem;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease-out forwards;
  animation-delay: 0.6s;
}

.huuguu-slide-button:hover {
  background: #eee;
}