.bg-participants {
    padding: 5rem 0;
}

.bg-participants .card {
    background: var(--background-card);
    border-radius: 10px;
    border: none;
    box-shadow: 5px 5px 1px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.bg-participants .card:hover {
    transform: translateY(-10px);
}

.bg-participants h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    color: var(--secondary-color);
    text-align: center;
    font-weight: bold;
    padding-bottom: 3rem;
}

.bg-participants span {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 900;
}

.bg-participants .row {
    line-height: 1.2;
}

.bg-participants p {
    font-size: 0.7rem;
    color: var(--secondary-color);
    margin: 0;
}

.bg-participants .bg-image {
    background-color: #A1D608;
    border-radius: 10px;
}

.bg-participants img {
    width: 100%;
    height: 100%;
}

.bg-participants a.btn {
    background: var(--button-color);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
}


/* media query */
@media (max-width: 468px) {
    .bg-participants {
        width: 100vw;
        /* padding: 3rem 0 */

    }

}