.lifestyle-marquee {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;}

.lifestyle-track {
    display: flex;
    width: max-content;
    animation: lifestyle-scroll 120s linear infinite;
    will-change: transform;
}

.lifestyle-track img {
    height: 380px;
    width: 380px;
    object-fit: cover;
    flex: 0 0 auto;
    display: block;
}

@keyframes lifestyle-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}

.lifestyle-marquee:hover .lifestyle-track {
    /*animation-play-state: paused;*/
}

@media (max-width: 768px) {
    .lifestyle-track {
        animation-duration: 80s;
    }
    .lifestyle-track img {
        height: 250px;
        width: 250px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lifestyle-track {
        animation: none;
    }
}
