/* Cursor Styles - Extracted from inline styles */
.cursor-wrap,.work-num,.certificate-img,.work-top-img,.radio-txt {
  pointer-events: none;
}

body:hover .cursor-wrap {
  opacity: 1.0;
}

/* Marquee Animation - Extracted from inline styles */
.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-reverse 15s linear infinite;
  /* manipulate the speed of the marquee by changing "15s" line above*/
}

@keyframes marquee {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

/* Lightbox Custom Styles - Extracted from inline styles */
.w-lightbox-frame {
  width: 100%;
}

.w-lightbox-img {
  width: 100%;
  margin: auto;
  object-fit: contain;
}

.w-lightbox-close {
  background-size: 40px !important;
  height: 5rem !important;
}
