
.card-wrapper {
    max-width: 1200px;
    margin: 0 60px 30px;
    padding: 10px 10px;
    overflow: hidden;
}

.card-list .card-item {
    list-style: none;
}

.card-list .card-item .card-link {
    /* width: 400px; */
    display: block;
    background: #fff;
    padding: 10px;
    user-select: none;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
    cursor: grabbing;
}

.card-list .card-item .card-link:hover {
    border-color: #5372F0;
}

.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge {
    color: #5372F0;
    width: fit-content;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 10px 0 10px;
    background: #DDE4FF;
    border-radius: 50px;
}

.card-list .card-link .badge-two {
    color: #B22486;
    background: #F7DFF5;
}

.card-list .card-link .badge-three {
    color: #B25A2B;
    background: #FFE3D2;
}

.card-list .card-link .badge-four {
    color: #205C20;
    background: #D6F8D6;
}

.card-list .card-link .badge-five {
    color: #856404;
    background: #FFF3CD;
}

.card-list .card-link .badge-six {
    color: #046b85;
    background: #cde1ff;
}

.card-list .card-link .badge-seven {
    color: #470485;
    background: #ebcdff;
}

.card-list .card-link .badge-eight {
    color: #852d04;
    background: #ffd9cd;
}

.card-list .card-link .badge-nine {
    color: #048585;
    background: #cdf9ff;
}

.card-list .card-link .card-title {
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
    /* margin: 5px 0 10px; */
}

.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #5372F0;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #5372F0;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
    color: #fff;
    background: #5372F0;
}

.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #5372F0;
}

.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slide-button {
    color: #5372F0;
    margin-top: -35px;
}

@media ( max-width: 768px ) {
    .card-wrapper {
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button {
        display: none;
    }
}


