@keyframes scroll {
    0% { transform: translateX(10%); }
    100% { transform: translateX(-80%); } 
}
.banner-cintillo-landings {
    width: 100%;
    height: 50px;
    background-color: #00A443;
    position: relative;
    overflow: hidden;
}

.banner-cintillo-landings .text-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    animation: scroll 100s linear infinite;
}

.banner-cintillo-landings .text-container .text {
    color: white;
    margin: 0;
    padding: 0 20px;
    font-family: "IberPangeaText-Regular";
    font-weight: 600;
    font-size: 32px;
}

.banner-cintillo-landings .text-container .icon {
    width: 30px;
    height: auto;
    margin: 0 10px;
}