.section-activity {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-block: clamp(80px, 10vw, 128px);
    position: relative;
    border-radius: clamp(12px, 2vw, 24px);
}
.back-activity {
    background-color: var(--back);
}
.section-activity .s-title {
    color: var(--color1);
}
.section-activity .toptitle {
    position: absolute;
    top: 0px;
    right: 50%;
    transform: translateX(50%);
    color: var(--black);
}
.activity-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: clamp(30px, 5vw, 60px);
}
.activity-cart a {
    display: flex;
    transition: 0.4s;
}
.activity-cart a:hover {
    transform: translateY(-10px);
}
.back-pronexo {
    padding-bottom: 0;
}
.back-pronexo .toptitle {
    top: 20px;
    width: max-content;
}
@media only screen and (min-width: 768px) {
    .back-activity {
        background-image: url(../../img/back-activity.webp);
        background-color: transparent;
    }
    .activity-grid .activity-cart:nth-child(2n) {
        margin-top: clamp(100px, 13vw, 178px);
    }
    .back-pronexo:before {
        content: "";
        background-image: url(../../img/PRONEXO.png);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
    }
    .back-pronexo .toptitle {
        top: 64px;
    }
}