.carousel-wrap {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}

@media(min-width: 1440px) and (max-width: 1520px) {
    .carousel-wrap{
        width: 100vw;
        right: calc((100vw - 1360px) / 2);
    }
}

@media(min-width: 1520px) {
    .carousel-wrap{
        width: 1440px;
        right: initial;
    }
}

@media(max-width: 1440px) {
    .carousel-wrap{
        width: 100vw;
        right: 40px;
    }
}

.carousel {
    display: flex;
    overflow-x: hidden;
    opacity: 0.5;
}

.carousel img {
    max-height: 105px;
}

.carousel div {
    display: flex;
    gap: 80px;
    padding: 0 40px;
    align-items: center;
    animation: marquee1 60s infinite linear;
    animation-delay: -60s;
}

.carousel div:nth-child(2) {
    animation: marquee2 60s infinite linear;
    animation-delay: -40s;
}

.carousel div:nth-child(3) {
    animation: marquee3 60s infinite linear;
    animation-delay: -20s;
}

.carousel:last-child div {
    animation-delay: -55s;
}

.carousel:last-child div:nth-child(2) {
    animation-delay: -35s;
}

.carousel:last-child div:nth-child(3) {
    animation-delay: -15s;
}

@media(max-width: 780px) {
    .carousel-wrap{
        width: 100vw;
        right: 20px;
    }
}

@keyframes marquee1 {
    0% {
        transform: translateX(200%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-200%);
    }
}

@keyframes marquee3 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-300%);
    }
}