section.carousel-wrapper {
    background: white;
}

.connect-carousel {
    margin: 40px 0;
    background: white;
}

.connect-carousel,
.connect-carousel * {
    pointer-events: none;
    user-select: none;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.connect-carousel-row {
    display: flex;
    gap: 20px;
    position: relative;
    will-change: transform;
}

.connect-carousel-item {
    flex-shrink: 0;
    width: 640px;
    height: 390px;
    object-fit: cover;
}


.connect-carousel svg {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    height: auto;
}

.connect-carousel svg.top-svg {
    top: -2px;
}

.connect-carousel svg.bottom-svg {
    bottom: -2px;
}


@media (max-width: 1280px) {
    .connect-carousel-item {
        width: 427px;
        height: 355px;
    }
}

@media (max-width: 768px) {
    .connect-carousel-item {
        width: 265px;
        height: 221px;
    }

}