.team {
    padding-top: 35px;
    padding-bottom: 60px;
}
.team__list {
    grid: none/repeat(6, 1fr);
    gap: 30px;
}
.team__img-wrap {
    height: 170px;
    border-radius: 4px;
    margin-bottom: 18px;
}
.team__img {
	border-radius: inherit;
}
.team__img img {
	border-radius: inherit;
}
.team__name {
    margin-bottom: 15px;
}
.team__data ul {
    margin-bottom: 11px;
}
.team__data.ul li {
	margin-top: 3px;
}
.team__data.ul li:first-child {
	margin-top: 0px;
}
@media screen and (min-width: 1576px) {
	.team__list {
		gap: 65px;
	}
}
@media screen and (max-width: 1220px) {
    .team__list {
        grid: none/repeat(4, 1fr);
    }
}
@media screen and (max-width: 992px) {
    .team {
        padding-bottom: calc(35px + 10px);
    }
	.team__list {
        grid: none/repeat(4, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .team__list {
        grid: none/repeat(3, 1fr);
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .team__list {
        grid: none/repeat(2, 1fr);
    }
    .team__img-wrap {
        margin-bottom: calc(10px + 3px);
    }
    .team__name {
        margin-bottom: 10px;
    }
	.team__data ul {
		margin-bottom: 5px;
	}
	.team__data.ul li {
		margin-top: 0px;
	}
}
@media screen and (max-width: 450px) {
	.team {
		padding-top: calc(35px - 5px);
	}
	.team__img-wrap {
		height: auto;
	}
	.team__img.bg {
		position: relative;
	}
}