.marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

@media (min-width: 1024px) {
    .marquee-wrapper {
        row-gap: 24px;

    }
}

.marquee-track {
    display: flex;
    overflow-x: hidden;
}

.marquee-track-inner-1 {
    animation: marquee1 110s infinite linear;
    animation-delay: -110s;
}

.marquee-track-inner-2 {
    animation: marquee2 110s infinite linear;
    animation-delay: -55s;
}

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

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

.tag {
    padding: 15px 40px;
    font-size: 20px;
    line-height: 28px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 70px;
    color: #000000;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    background: #ffffff;
}

@media (min-width: 1024px) {
    .tag {
        padding: 20px 70px;
        font-size: 27px;
        line-height: 32px;
        margin-right: 24px;
    }
}

.wrapping-lines-container {
    background: #f3f3f3;
}

.b2b-section {
    background: linear-gradient(187.09deg, #5AABD6 6.93%, #58D3B5 96.24%);
}