.team {
    position: relative;
    padding: 100px 0;
}

.team-content {
    display: block;
    width: 90%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 0 24px;
}

.team-content h2, .team-content p {
   text-align: left;
}

.team-list__content h3 {
    font-size: 1.8rem;
}

.team-list__content p {
   font-size: 1.6rem;
   line-height: 1.3;
}

.team .team-list {
    display: grid;
    width: 90%;
    max-width: 1366px;
    margin: 0 auto;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: auto;
    row-gap: 16px;
    column-gap: 16px;
}

.team .team-list .team-list__item {
    position: relative;
    display: flex;
    gap: 16px;
    flex-direction: column;
    overflow: hidden;
}

.team .team-list .team-list__item .imgcropCtn {
    display: block;
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 50px;
}

.team .team-list .team-list__item .imgcropCtn .imgcrop {
    object-position: top;
}

.photoCalme {
    opacity: 1;
    z-index: 2;
    transition: 0.3s all ease;
}

.photoFun {
    z-index: 1;
    transition: 0.3s all ease;
}

.team-list__content {
    z-index: 3;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    background: transparent;
    transition: 0.3s all ease;
}

.team .team-list .team-list__item:hover .team-list__content {
    opacity: 1;
    transition: 0.3s all ease;
}

.team-list__content h3 {
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.team-list__content h3, .team-list__content p {
    color: #1A2843;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 4px 0;
}

.team-list__content > p {
    color: #0AACB1;
    font-family: "Roboto";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.team-list__content .description p {
    color: #0A0A0A;
    font-family: "Roboto";
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: left;
}

.team-list__content a i {
    color: #1A2843;
    transition: 0.6s all ease;
}

@media(max-width: 992px) {
    .team .team-list {
        grid-template-columns: repeat(2,1fr);
    }
    .team {
        position: relative;
        padding: 0 0 100px 0;
    }
}

@media(max-width: 600px) {
    .team .team-list {
        grid-template-columns: repeat(1,1fr);
    }
}