.team {
    padding: 64px 0;
}

.team .workers-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
}

.team .single-worker {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: calc(20% - 16px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    color: inherit;
}

.team .single-worker .worker-image {
    overflow: hidden;
    line-height: 0.8;
}

.team .single-worker img {
    aspect-ratio: 160 / 256;
    transition: transform .3s ease;
    object-fit: cover;
}

.team .single-worker:hover img {
    transform: scale(1.05);
}

@media (max-width:1360px) {
    .team .single-worker {
        width: calc(25% - 16px);
    }
}


@media (max-width:1199px) {
    .team {
        padding: 32px 0;
    }

    .team .single-worker {
        gap: 8px;
        width: calc(33.33333333% - 16px);
    }
}

@media (max-width:679px) {
    .team .workers-wrapper {
        gap: 24px;
    }

    .team .single-worker img {
        aspect-ratio: 160 / 256;
    }

    .team .single-worker {
        width: calc(50% - 12px);
        font-size: 10px;
    }
}