.activities-body {
    /*background: transparent;*/
    background: #f1f1f2;
    /*background: linear-gradient(180deg, #7c3dc7 0, #f1f1f1 2%);*/
}

.news-pixels-1 {
    left: 20%;
    top: 0;
    z-index: -1;
}
.news-pixels-2 {
    right: 10%;
    top: 0;
    z-index: -1;
}

@media (max-width: 980px) {
    .news-pixels-1 {
        top: 2%;
    }
    .news-pixels-2 {
        top: 2%;
    }
}

.activities-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*    position: relative;*/
    width: 100%;
    /*padding: 0 20px 100px;*/
    /*max-width: 1440px;*/
}
.activities-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #7c3dc7;
}

.activities-page::before {
    content: '';
    width: 100%;
    background: linear-gradient(180deg, #7c3dc7 0, #f1f1f1 100%);
    position: absolute;
    /*height: calc(100% + 20px);*/
    z-index: -1;
    /*top: -215px;*/
    top: 0;
    left: 0;
    height: 620px;
}

.activities-page-title {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 48px;
    line-height: 115%;
    text-transform: uppercase;
    color: #fff;
    margin-top: 109px;
}
.activities-content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 20px 20px;
}
.activities-content-wrapper-color {
    background: #7c3dc7;
}
.activities-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 746px;
    padding-top: 43px;
}

.activities-content h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 100%;
    color: #7c3dc7;
    margin-top: 52px;
}
.activities-content h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #38363a;
    margin-top: 36px;
}
.activities-content p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    color: #2e0262;
    margin-top: 12px;
}

.activities-content a {
    text-decoration: underline;
}

.activities-content__image-wrapper {
    margin-top: 24px;
    margin-bottom: 4px;
}

.activities-content__image {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 362px;
    overflow: hidden;
    border-radius: 10px;

    img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.activities-content__image-caption {
    background: #fff;
    border-radius: 10px;
    padding: 4px 8px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 200%;
    color: #2e0262;
    position: absolute;
    bottom: 4px;
    left: 4px;
}

.activities-content__images {
    display: flex;
    align-items: center;
    gap: 10px;
}

.activities-content-bg-1 {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-image: url('/public/static/activities-bg-1.svg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 60px;
    max-width: 1440px;
}
.activities-content-bg-2 {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-image: url('/public/static/activities-bg-2.svg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 60px;
    max-width: 1440px;
}

@media (max-width: 980px) {
    .activities-content-bg-1 {
        background-image: url('/public/static/activities-bg-1-mobile.svg');
    }

    .activities-content-bg-2 {
        background-image: url('/public/static/activities-bg-2-mobile.svg');
    }
}

@media (max-width: 980px) {
    .activities-page-title {
        font-size: 28px;
        line-height: 121%;
        margin-top: 50px;
    }
    .activities-content-wrapper {
        padding: 0;
    }

    .activities-content-wrapper-color {
        position: relative;
    }

    .activities-content-wrapper-color:before {
        content: '';
        position: absolute;
        background: #7c3dc7;
        width: 100%;
        height: 40px;
        z-index: -1;
        top: -20px;
    }

    .activities-content {
        padding: 43px 30px 0;
    }
}

@media (max-width: 640px) {
    .activities-content__images {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .activities-content {
        padding: 23px 16px 0;
    }
}

.activities-content__image-swiper {
    display: flex;
    margin-top: 24px;
    margin-bottom: 4px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.activities-content__image-swiper-slide {
    align-self: stretch;
    display: flex;
    flex-shrink: 0;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}
.activities-content__image-swiper-slide img {
    display: block;
    object-fit: cover;
    width: 100%;
}
.swiper-button-prev,
.swiper-button-next {
    z-index: 2;
    position: absolute;
    border: none;
    border-radius: 50%;
    background: rgba(124, 61, 199, 0.7);
    padding: 10px;
    cursor: url('/public/cursors/pointer.cur'), auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 1);
    /*color: rgba(255, 255, 255, 0.7);*/
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 1;
    background: rgba(124, 61, 199, 0.8);
    color: rgba(255, 255, 255, 1);
}

.swiper-button-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 640px) {
    .swiper-button-prev,
    .swiper-button-next {
        padding: 5px;
    }
}
