/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 07 2026 | 21:48:49 */
.e-gallery-item  {
  animation: heartbeat 1.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.03);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.03);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* ticker */

    .ticker {
      width: 100%;
      overflow: hidden;
      background: transparent;
      white-space: nowrap;
      box-sizing: border-box;
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: scroll 12s linear infinite;
    }

    .ticker-track span {
      padding-right: 60px;
      font-size: 64px;
		color: #D3AF37;
    }

    @keyframes scroll {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }