@import url('https://fonts.googleapis.com/css?family=Montserrat');

.breaking-box {
    background-color: #ea7e4d;/*#4990d7;*/
    /* Optional: Background color for visibility */
    border: 1px solid #dee2e6;
    /* Optional: Rounded corners */
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    padding-top: 60px;
}
.marquee-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    /* Ensure it fills the container */
    animation: marquee 20s linear infinite;
    /* Adjust duration as needed */
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
        /* Start off-screen to the right */
    }

    100% {
        transform: translateX(-100%);
        /* End off-screen to the left */
    }
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    display: inline-block;
    padding: 5px;
}