.team {
    position: relative;
    z-index: 1;
}

.team__bg {
    width: 20%;
    position: absolute;
    left: 0;
    top: 28%;
}

.team__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

@media screen and (max-width: 767.9px) {
    .team__list {
        grid-template-columns: repeat(1, 1fr);
    }
}