/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2026 | 13:40:57 */
/* platform sliding style start */
.platform-wrapper-box{padding:0px;}
.platform-wrapper-box li{list-style:none;}
.platform-wrapper-box li h4{color:#000;margin:0px;padding:0px;}
.platform-wrapper-box li h5{color:#000;margin:0px;padding:0px;}
.platform-wrapper-box li p{color:#000;margin:0px;padding:0px;}
.platform-wrapper-box li a{color:#000;margin:0px;padding:0px;}


/*   platform sliding style end */



.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.tag-list li {
 border:1px solid #2d76ab;
 border-radius:100px;
padding:12px 52px;
    transition: 300ms;
    cursor: pointer;
}

.tag-list li a{color:#0e0f11;}

.scroller { 
    max-width: 100%;
}

.scroller__inner {
    display: flex;
    padding-block: 1rem;
    flex-wrap: wrap;
    gap: 2.2rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 7%, white 92%, transparent);
    mask: linear-gradient(90deg, transparent, white 7%, white 92%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 15s) var(--_animation-direction, forwards) linear infinite;
    animation-delay: 0s;
}

.scroller[data-direction='left'] {
    --_animation-direction: forwards;
}
.scroller[data-direction='right'] {
    --_animation-direction: reverse;
}

.scroller[data-direction='slow'] {
    --_animation-duration: 20s;
}
.scroller[data-speed='fast'] {
    --_animation-duration: 10s;
}


@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}



.scroller[data-animated="true"] .scroller__inner:has(img:hover, img:active, img:focus) {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}



.scroller[data-animated="true"] .scroller__inner:has(li:hover, li:active, li:focus) {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.tag-list li:hover, .tag-list li:focus, .tag-list li:active {
    transform: scale(1.08);
    /*filter: saturate(3); */
background-color:#2d76ab;
}

.tag-list li:hover a, .tag-list li:focus a, .tag-list li:active a{color:#fff;}

@media only screen and (max-width:767px){
.scroller__inner {gap:1rem;}
}

