#team {
    margin-top: 100px;
    margin-bottom: 100px;
}

#team .header {
    font-size: 58px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 42px;
    color: var(--primary);
}
#team .content {
    display: flex;
    align-items: flex-start;
}

#team .content .left {
    margin-right: 61px;
    font-size: 30px;
    font-weight: bold;
    text-wrap: nowrap;
}

#team .content .right {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
}

.team_list {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    justify-content: center;
    column-gap: 40px;

}
.team_list:nth-of-type(2) , .team_list:last-of-type{
    margin-bottom: 100px;
}
.team_list .member {
    width: 315px;
    cursor: url(../images/pointer.svg) , pointer;
}

.team_list .member img {
    width: 315px;
    height: 315px;
    filter: saturate(0);
}
.team_list .member img:hover{
    filter: saturate(1);
}

.team_list .member .details {
    width: calc(315px - 40px);
    margin-top: -5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px;
    background: linear-gradient(0deg,#171717 0%, #ffda3e 100%);
}
.team_list .member.hover .details {
    height: calc(600px - 40px);
    margin-top: -605px;
}
.team_list .member .details .name {
    font-weight: bold;
    font-size: 25px;
}

.team_list .member .details .position {
    color: rgb(238, 238, 238);
    font-size: 15px;
}

@media only screen and (max-width: 1300px) {
    #team .header {
        font-size: 50px;
    }

    #team .content .left {
        font-size: 18px;
    }

    #team .content .right {
        font-size: 18px;
    }
}

@media only screen and (max-width: 900px) {
    #team {
        margin-left: 20px;
        margin-right: 20px;
    }
    #team .header {
        font-size: 54px;
    }
    #team .content {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }
    #team .content .left {
        margin-bottom: 50px;
    }
    #team .content .right {
        font-size: 20px;
    }
}
