


/* marquee */

.degMaquee {
    transform: rotate(-4deg);
    border-image: linear-gradient(to right, #FF7426, #F22FB0) 1;
    border-width: 10px 0 0 0;
    border-style: solid;
}

.marquee {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.marquee h3 {
    font-size: 60px;
    font-weight: 700;
}

.marquee .marquee-wrapper {
    width: 100000px;
    animation: marqueeAnimation 100s linear 0s infinite running;
}

.marquee h3 .marquee-title {
    margin-right: 20px;
    float: left;
    color: #fff;
}

.text-stroke-black {
    color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #fff;
}

@keyframes marqueeAnimation {
    100% {
        transform: translateX(-4600px);
    }
}

@media (max-width: 992px) {
    .marquee h3 {
        font-size: 60px;
    }
}

@media (max-width: 549px) {
    .marquee h3 {
        font-size: 50px;
    }
}





.category-btn:hover{
    background-color: #0C6EFD;
    color: white;
}
