.marque-section {
    position: relative;
    background-color: $theme-color;
    padding: 30px 0;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;

    @include breakpoint (max-sm){
        margin-top: -25px;
    }
}

.text-slider {
    font-size: 114px;
    height: 110px;
    line-height: 90px;
    font-weight: 500;
    text-transform: capitalize;
    margin-right: 20px;
    color: rgba(61, 66, 92, 0.2);

    &.style-height {
        height: 50px;
        line-height: 0;

        @include breakpoint (max-sm){
            line-height: initial;
        }
    }

    &.style-height-2 {
        height: 71px;
        line-height: 0;

        @include breakpoint (max-sm){
            line-height: 70px;
        }
    }

    @include breakpoint(max-sm){
        font-size: 50px;
        height: 70px;
        line-height: 65px;
        margin-bottom: -10px;
    }

    &.style-border {
        position: relative;
        padding-left: 65px;

        &::before {
            position: absolute;
            bottom: 30px;
            left: 0;
            content: "";
            width: 60px;
            height: 8px;
            background-color: rgba(61, 66, 92, 0.2);
        }
    }
}

.marquee-inner {
    position: absolute;
    display: inline-flex;
    width: 200%;
}

.marquee-list {
    float: left;
    width: 50%;
}

.marquee-item {
    float: left;
    transition: animation 0.2s ease-out;

    &.style-2 {
        .text-slider {
            text-transform: capitalize;
            font-size: 42px;
            color: $white;
            margin-right: 40px;
            line-height: 0;
            height: 65px;

            @include breakpoint (max-md){
                font-size: 42px;
            }
        }

    }
}

.marque-section {
    .container-fluid {
        padding: 0 100px;

        @include breakpoint (max-xl){
            padding: 0;
        }
    }
}

.marque-section-2 {
    background-color: $theme-color;
}








.marquee-inner.to-left {
    animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

.marquee-inner.to-right {
    animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
    0% {
       right : 0;
    }
    100% {
        right: -100%;
    }
}