.About .wrapper {
    justify-content: center;
}

.About .content {
    width: 100%;
    text-align: center;
}

.scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.scroll {
    position: relative;
    display: flex;
    width: 80%;
    overflow: hidden;
    gap: 20px;
    margin: 0 auto;
    padding: 20px 0;
}

.scroll div {
    display: inline-flex;
    align-items: center;
    flex: 0 0 max-content;
    gap: 20px;
    padding-right: 20px;
    white-space: nowrap;
    animation: scroll var(--time) linear infinite;

}

.scroll div:nth-child(2) {
    animation: scroll var(--time) linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 20px));
    }
}

@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

.scroll div span {
    display: inline-flex;
    flex: 0 0 auto;
    letter-spacing: 0.2em;
    background: #00cfa2;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;
}

.scroll div span:hover {
    background: #ffffff;
    color: #00cfa2;
    cursor: pointer;
}

.imgBox div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBox img {
    max-width: 100px;
    scale: 0.8;
}