.eut-hero.eut-style-1 {
  position:  relative;
  display: flex;
}

.eut-hero.eut-style-1.eut-vertical-top {
  align-items: flex-start;
}
.eut-hero.eut-style-1.eut-vertical-middle {
  align-items: center;
}
.eut-hero.eut-style-1.eut-vertical-bottom {
  align-items: flex-end;
}

.eut-hero.eut-style-1.eut-horizontal-left {
  justify-content: flex-start;
}
.eut-hero.eut-style-1.eut-horizontal-center {
  justify-content: center;
}
.eut-hero.eut-style-1.eut-horizontal-right {
  justify-content: flex-end;
}

.eut-hero.eut-style-1 .eut-slogan {
  display: block;
}

.eut-separator {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 90px;
  transform: translateX(-50%);
}
.eut-separator svg {
  display: block;
  position:absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
}
.eut-separator use {
  animation: wave_move 8s linear infinite;
}

@keyframes wave_move {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
}
