@keyframes opacityanimation {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes loading {
  to {
    text-shadow: 20px 0 70px #BE9E44;
    color: #BE9E44; } }

@keyframes movecolorbackgorund {
  from {
    background-position: 0 0; }
  to {
    background-position: 400% 0; } }

@keyframes MoveBackgroundPosition {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

.mini-packs {
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 5px 8px 8px 3px rgba(204, 204, 204, 0.95);
  box-shadow: 5px 8px 8px 3px rgba(204, 204, 204, 0.95);
  margin-right: 2rem;
  margin-bottom: 2rem;
  justify-content: center; }
  .mini-packs .image-hover-image {
    min-width: 100%;
    min-height: 100%; }
    .mini-packs .image-hover-image .field--type-image {
      margin: 0; }
      .mini-packs .image-hover-image .field--type-image .field__item {
        height: 300px; }
      .mini-packs .image-hover-image .field--type-image img {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: 100%;
        max-width: none;
        max-height: 100%; }
    @media (max-width: 767.98px) {
      .mini-packs .image-hover-image {
        margin: 2rem auto; } }
  .mini-packs .image-hover-text {
    border-radius: 0 0 4px 4px;
    position: absolute;
    bottom: 0;
    width: 100%; }
    .mini-packs .image-hover-text .center-logo {
      background: #BE9E44;
      padding: 0.5rem 1rem;
      border-radius: 0 0 4px 4px;
      text-align: center; }
      .mini-packs .image-hover-text .center-logo span a {
        text-decoration: none;
        color: white; }
  .mini-packs .onhover {
    position: absolute;
    background: white;
    opacity: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 1rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s; }
    .mini-packs .onhover a {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .mini-packs .onhover a img {
        max-width: 100%;
        height: auto;
        width: auto;
        max-height: 100%; }
  .mini-packs:hover .onhover {
    opacity: 1; }
