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

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

#greenBannerFutbol {
    width: 100%;
    height: 132px;
    background-color: #00A443;
    position: relative;
    overflow: hidden;
    display: flex;
    margin: auto;
    /* bottom: 30px; */
}

#greenBannerFutbol .text-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    justify-content: center;
    margin: auto;
    height: 100%;
}

#greenBannerFutbol .text-container .text {
    margin: 0;
    padding: 0 20px;
    font-size: 29.81px;
    font-weight: 600;
    line-height: 26.083px;
    font-family: IberPangea;
    color: #FFF;
}

#greenBannerFutbol .text-container .text-seg {
    margin-right: 20px;
}

@media (min-width: 576px) {}

@media (min-width: 992px) {
    #greenBannerFutbol {
        height: 234px;
    }
    #greenBannerFutbol .text-container .text {
        font-size: 64px;
        font-weight: 600;
        line-height: 56px;
        font-family: IberPangea;
        color: #FFF;
    }
}

@media (min-width: 1200px) {}

@media (min-width: 1920px) {}