.miga_animation {
  visibility: hidden;
  display: inline-block;
}

.miga_animation.e-flex {
  display: flex;
}

.miga_animation.miga_animation_img {
  display: flex;
  overflow: hidden;
}

.miga_animation.miga_animation_img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}

.miga_animation.ready {
  visibility: visible;
}

.miga_animation.clipLines .line {
  overflow: hidden;
}

.miga_animation_sticky {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
}

.miga_animation.clipWords, .miga_animation.clipWords .word {
  overflow: hidden;
}

.miga_animation.black_slide_in_bottom {
  overflow: hidden;
  position: relative;
}

.miga_animation.black_slide_in_bottom img {
  transform: translateY(105%);
  transition: 0.5s all;
  opacity: 0;
}

.miga_animation.black_slide_in_bottom:before {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(105%);
  transition: 0.5s all;
  z-index: 2;
}

.miga_animation.black_slide_in_bottom.active img {
  transform: none;
  opacity: 1;
}

.miga_animation.black_slide_in_bottom.active:before {
  transform: translateY(0%);
  animation: hideBlack 0.5s ease-out 1 normal forwards;
  animation-delay: 0.55s;
}

.miga_animation.miga_animation_text.center, .miga_animation.miga_animation_text.center .line {
  text-align: center;
}

.miga_animation.miga_animation_text.right, .miga_animation.miga_animation_text.right .line {
  text-align: right;
}

@keyframes hideBlack {
  0% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

.elementor-element-ad827c7 {
  position: relative;
  top: calc(-100vh + 240px);
}

.pinned {
  /* overflow: hidden; */
  /* height: 100vh; */
  background-color: #fff;
}

.pin-spacer {
  /* position: relative; */
}

.pinned img {
  clip-path: inset(0% 0% 0% 0%);
  /* border-radius: 40px; */
}

.marquee {
  /* position: relative;
  overflow: hidden;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset)); */
  --gap: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__inner {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll 10s linear infinite;

  /* width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 5s linear infinite;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  width: max-content; */
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate3d(0, 0, 0);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* @keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
} */
