& .global_brands {
    background: #F6F9FF;
    padding-top: 60px;
    padding-bottom: 60px;
    & .title_section {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        & span {
            color: var(--secondary);
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 600;
        }
    }
   
    & .brands_wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 100%;
        margin-top: 5rem;
    }
    & .global_brands_wrapper {
        display: flex;
        align-items: center;
        white-space: nowrap;
        width: fit-content;
        height: 100%;
        gap: 3rem;
    }
    & .global_brands_block {

    }
}
& .content_bottom {
    margin-top: 2rem;
    margin-bottom: 2rem;
    & p {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem;
    }
}
.global_brands_wrapper {
    min-width: 290%; 
    animation: ticker-scroll 50s linear infinite;
    &:hover {
        animation-play-state: paused;
    }
}
@keyframes ticker-scroll {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
}
