.activities-container {
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}

.activity-title {
    font-size: 2rem;
    color: var(--deep-green)
}

.activity-description {
    font-size: 3rem;
    color: var(--deep-green);
    margin-bottom: .5rem;
}

.used-count-wrapper {
    padding: 0 20px;
}

.used-count {
    background-image: url('../images/activity-green-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 57%;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.used-count-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    position: absolute;
    top: 0%;
    width: 100%;
    z-index: 1;
    height: 80%;
}

.used-count .counter {
    font-size: 20vw;
    color: white;
    line-height: 110%;
}

.activity-count-underline {
    background-image: url('../images/activity-count-underline.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    width: 40%;
    margin: 0 auto;
}

.activity-from-date {
    font-size: 2vw;
    color: white;
    width: 75%;

    margin: 0 auto;
    margin-top: 1rem;
}

.hand-left-icon {
    position: absolute;
    display: block;
    position: absolute;
    display: block;
    top: 6%;
    left: -4%;
    width: 20%;
    z-index: 2;
    z-index: 2;
}

.monkey-bg {
    background-image: url('../images/bg-monkey.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 768px) {

    .used-count .counter {
        font-size: 25vw;
    }


}



.activity-examples {
    display: none;
}

@media screen and (min-width: 1024px) {
    .activity-title {
        font-size: 5rem;
        color: var(--deep-green)
    }

    .activity-description {
        font-size: 7rem;
        color: var(--deep-green);
        margin-bottom: .5rem;
    }

    .activity-examples {
        display: block;
        margin-top: -20%;
        z-index: 2;
    }

    .activity-examples .activity-example-item {
        width: 100%;
    }


    .activity-examples .swiper-button-next {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        color: white;
        background-color: var(--deep-blue);
    }

    .activity-examples .swiper-button-next:after {
        font-size: 16px;
    }

    .activity-examples .swiper-button-prev {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        color: white;
        background-color: var(--deep-blue);
    }

    .activity-examples .swiper-button-prev:after {
        font-size: 16px;
    }

}