﻿
.cardC {
    
    color: #fff;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 11%) 5px 5px 11px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25px;
}

/*    .card:nth-child(1) {
        background: #7958ff;
    }

    .card:nth-child(2) {
        background: #5d34f2;
    }

    .card:nth-child(3) {
        background: #4300da;
    }*/

.carouselC {
    margin: 0 auto;
    padding: 11px 0;
    max-width: 100%;
    overflow: hidden;
    display: flex;
}



    .carouselC.animated:hover .group {
        animation-play-state: paused;
    }

    .carouselC:not(.basic) > * {
        flex: 0 0 90%;
    }

.group {
    display: flex;
    gap: 11px;
    padding-right: 11px;
    will-change: transform;
}

    .group.animated {
        animation: scrolling 60s linear infinite;
    }


@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-155%);
    }
}
