
.section--team {
    position: relative;
    padding-bottom: 20px;
    padding-top: clamp(2.5rem, 1.6782rem + 2.7682vw, 5rem);
}
.section--team h2 {
    margin-bottom: clamp(2.5rem, 1.6782rem + 2.7682vw, 5rem);
}

.wrap-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -20px;
    margin-right: -20px;
}
.team-item {
    position: relative;
    width: calc( 100% / 6 );
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: clamp(2.5rem, 1.6782rem + 2.7682vw, 5rem);
}
.team-photo {
    width: clamp(7.625rem, 7.4606rem + 0.5536vw, 8.125rem);
    margin-bottom: 8px;
}
.team-logo {
    margin-bottom: 8px;
    display: block;
    width: clamp(7.625rem, 7.4606rem + 0.5536vw, 8.125rem);
}
.team-logo img {
    width: 100%;
}
.team-name {
    font-size: clamp(1.125rem, 0.9196rem + 0.692vw, 1.75rem);
    margin-bottom: 3px;
}
/*.team-name.pink {
    color: #F7176C;
}
.team-name.green {
    color: #46EE86;
}*/
.team-text {
    max-width: 240px;
    font-size: clamp(0.8125rem, 0.6481rem + 0.5536vw, 1.3125rem);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    box-orient: vertical;
}
.team-link {
    font-size: clamp(0.8125rem, 0.7509rem + 0.2076vw, 1rem);
    text-decoration: underline;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    color: #25CAE0;
}
.team-link:hover {
    opacity: 0.8;
}

@media (max-width: 1199px) {
    .team-item {
        width: 25%;
    }
}
@media (max-width: 991px) {
    .team-item {
        width: 33.3%;
    }
}
@media (max-width: 767px) {
    .team-item {
        width: 50%;
        text-align: center;
    }
    .team-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

.team-decor {
    pointer-events: none;
    position: absolute;
    width: clamp(25rem, 16.782rem + 27.6817vw, 50rem);
    top: 0;
    left: 0;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.6;
}

@media (max-width: 767px) {
.team-decor {
    top: 65%;
    opacity: 1;
}
}