.about-gallery {
    padding: 0 0 120px;
}

.swiper {
    width: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    width: 550px;
}

.swiper-slide__overlay {
    opacity: 0;
    position: absolute;
    background: #34c06e4f;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    border-radius: 24px;
}

.swiper-slide:hover .swiper-slide__overlay {
    opacity: 1;
    transition: .2s;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.swiper-slide-active {
    z-index: 2;
}

.swiper .swiper-pagination {
    display: none;
    position: absolute;
    bottom: 20px;
    margin: 0;
}

.work-for {
    z-index: 2;
    position: relative;
    padding: 0 0 100px;
}
.work-for__list {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin: 0 0 50px;
}
.work-for__title {
    font-family: var(--secondary-font);
    font-size: 40px;
    margin: 0 0 40px;
}
.work-for__title span {
    font-weight: 600;
}
.work-for__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    margin: 0;
}
.work-for__grid-item {
    display: flex;
    gap: 12px;
}
.work-for__grid-item i {
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
}
.work-for__grid-item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.work-for__grid-item-text span {
    font-weight: 600;
}
.work-for__consult {
    display: flex;
    align-items: center;
    justify-content: center;
}


.work-for__person {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.work-for__person-photo {
    position: relative;
}
.work-for__person-photo-image img {
    display: block;
    position: absolute;
    right: 0;
    bottom: 28px;
    border-radius: 22px;
}
.work-for__person-photo--reverse .work-for__person-photo-image img {
    right: auto;
    left: 0;
}
.work-for__person__card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 70px;
    left: 110px;
    text-align: left;
}
.work-for__person-photo--reverse .work-for__person__card {
    right: 110px;
    left: auto;
    text-align: right;
}
.work-for__person__card-name {
    display: flex;
    flex-direction: column;
    font-family: var(--secondary-font);
    font-size: 22px;
    line-height: 1;
    gap: 5px;
    color: #34c06e;
}
.work-for__person__card-name span {
    font-weight: 700;
}
.work-for__person__card-position {
    color: #454545;
    font-size: 14px;
}

.work-for__grid-item-lyudmila .work-for__grid-item i,
.work-for__grid-item-lyudmila .work-for__person__card-name {
    color: #a1a13e;
}
.work-for__grid-item-victoria .work-for__grid-item i,
.work-for__grid-item-victoria .work-for__person__card-name {
    color: #4CA4BB;
}

.work-for__person-mascot {
    position: absolute;
    bottom: 64px;
    left: 77px;
}
.work-for__person-mascot img {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    border-radius: 0;
}
.work-for__person-photo--reverse .work-for__person-mascot {
    left: auto;
    right: 77px;
}

@media (max-width: 880px) {

    .work-for {
        padding: 0 0 60px;
    }
    .work-for__list {
        gap: 40px;
    }
    .work-for__title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .work-for__person {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .work-for__grid-item-text br {
        display: none;
    }
    .work-for__grid-item-lyudmila {
        display: flex;
        flex-direction: column-reverse;
    }
    .work-for__person-photo svg {
        width: 100%;
        height: auto;
    }
    .work-for__person-mascot {
        position: absolute;
        bottom: 29px;
        left: 40px;
    }
    .work-for__person-photo--reverse .work-for__person-mascot {
        left: auto;
        right: 40px;
    }
    .work-for__person-mascot img {
        width: 32px;
        height: 32px;
    }


    .work-for__person__card {
        top: 30px;
        left: 50px;
    }
    .work-for__person-photo--reverse .work-for__person__card {
        right: 50px;
        left: auto;
    }
    .work-for__person__card-name {
        font-size: 18px;
    }
    .work-for__person__card-position {
        font-size: 13px;
    }

    .work-for__person-photo-image img {
        width: 220px;
        height: auto;
        bottom: 16px;
        border-radius: 14px;
    }
    .work-for__person-photo-back img {
        width: 100%;
        height: auto;
    }

    .about-gallery {
        padding: 0 0 50px;
    }
    .swiper-slide {
        max-width: 100%;
    }
    .swiper-slide img {
        border-radius: 0;
    }
    .swiper-slide__overlay {
        border-radius: 0;
    }
    .swiper .swiper-pagination {
        display: flex;
    }
    .swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #fff;
    }
    .swiper .swiper-pagination-bullet:hover, 
    .swiper .swiper-pagination-bullet-active {
        background: var(--primary-color);
    }
}