.logo-light-wrap {
  position: absolute;
  margin: 0 -480px;
  display: inline-block;
  overflow: visible;
  cursor: pointer;
  line-height: 0;
  z-index: 10;
}

.logo-light-wrap .logo-animate {
  display: block;
  position: relative;
  margin: 0;
  border: 0;
  max-width: none;
  transform-origin: center center;
  animation: logoBreath 2.6s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}