/* albums el double m - homepage */
.album-hidden {
  opacity: 0;
  filter: blur(0.3rem);
  transform: translateX(-100%);
  transition: 0.7s all;
}

.album-show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.album-show:hover {
  transition: 0.05s linear;
}

.album-hidden-others {
  opacity: 0;
  filter: blur(0.3rem);
  transform: translateX(-100%);
  transition: 0.7s all;
}

.album-show-others {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.album-show-others:hover {
  transition: 0.05s linear;
}

.single-hidden {
  opacity: 0;
  filter: blur(0.3rem);
  transform: translateX(-100%);
  transition: 0.7s all;
}

.single-show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.single-show:hover {
  transition: 0.05s linear;
}

.single-hidden-others {
  opacity: 0;
  filter: blur(0.3rem);
  transform: translateX(-100%);
  transition: 0.7s all;
}

.single-show-others {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.single-show-others:hover {
  transition: 0.05s linear;
}

.social-hidden-animation {
  opacity: 0;
  filter: blur(0.3rem);
  transform: translateX(-100%);
  transition: 0.7s all;
}

.social-show-animation {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.social-show-animation:hover {
  transition: 0.05s linear;
}

@media (prefers-reduced-motion) {
  .album-hidden,
  .album-hidden-others,
  .album-show .album-show-others,
  .single-hidden,
  .single-show,
  .single-hidden-others,
  .single-show-others,
  .social-hidden-animation,
  .social-show-animation {
    transition: none;
  }
}/*# sourceMappingURL=scrollAnimation.css.map */