/* Custom styles for Adeca Logistics */

/* Hero: remove blue outline, add spacing between heading and subheading */
#hero-heading.adeca-hero-heading,
h1.adeca-hero-heading {
    outline: none !important;
    box-shadow: none !important;
}
#hero .flex.flex-col.items-center.justify-center {
    gap: 1.25rem;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
}

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