@keyframes scroll {
    0% { transform: translateX(10%); }
    100% { transform: translateX(-30%); } 
}

.banner-cintillo-landings {
    width: 100%;
    height: 48px;
    background-color: #00A443;
    position: relative;
    overflow: hidden;
}

.banner-cintillo-landings .text-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 6px;
    left: 0;
    white-space: nowrap;
    animation: scroll 100s linear infinite;
}

.banner-cintillo-landings .text-container .text {
    color: #FFF;
    margin: 0;
    padding: 0 40px;
    font-family: 'IberPangea-Regular';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
}

.banner-cintillo-landings .text-container .icon {
    width: 30px;
    height: auto;
    margin: 0 10px;
}

@media (min-width: 992px) {
    .banner-cintillo-landings {
        height: 72px;
    }
    .banner-cintillo-landings .text-container {
        top: 12px;
    }
    .banner-cintillo-landings .text-container .text {
        font-size: 32px;
    }
}