.dark-top-content {
    background: #000;
    padding: 1vw 10vw;
}

.introduction {
    padding: 3vw 10vw;
    background: white;
}

.introduction h4 {
    width: 45%;
    line-height: 1.9em;
    margin-bottom: 40px;
}

.introduction p {
    margin-bottom: 40px;
    color: rgba(87, 87, 86, 0.7);
    font-weight: 200;
}
.introduction li {
    color: rgba(87, 87, 86, 0.7);
    font-weight: 200;
}

.content {
    background: #000;
    display: flex;
    flex-direction: column;
}


.image-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: white;
    padding: 20px 0;
}

.image-scroll-track {
    display: flex;
    width: max-content;
    gap: 50px;
    animation: scrollRightToLeft 30s linear infinite;
}

.image-gallery {
    background: white;
    padding: 2vw 6vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 5px;
}

.image-gallery img {
    height: 250px;
}

.image-scroll-track img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.image-scroll-container:hover .image-scroll-track {
    animation-play-state: paused;
}

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

@media (max-width: 1018px) {
    .dark-top-content {
        background: #000;
        padding: 1vw 10vw;
    }

    .introduction {
        padding: 3vw 10vw;
        background: white;
    }

    .introduction h4 {
        width: 100%;
        line-height: 1.9em;
        margin-bottom: 40px;
    }

    h6::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 25%;
        height: 3px;
        background: red;
    }
}

@media (max-width: 420px) {
    .image-gallery img {
        height: 200px;
    }
}
