/* [project]/src/components/Connect/style.css [app-client] (css) */
.animated-bg {
  position: relative;
  overflow: hidden;
}

.animated-bg:before {
  content: "";
  z-index: 0;
  opacity: .95;
  background: url("/assets/images/temp/landing-page/black-pattern-background.png");
  width: 100%;
  height: 100%;
  animation: 10s ease-in-out infinite zoom-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes zoom-in-out {
  0%, 100% {
    background-size: 100%;
  }

  50% {
    background-size: 110%;
  }
}

/*# sourceMappingURL=src_components_Connect_style_6ba54cc8.css.map*/