.team-container {
    display: grid;
    justify-content: center;
    padding: 100px 0;
    gap: 100px;
}

.team-card {
    display: grid;
    padding: 30px 60px;
    border: #f89b00 solid 2px;
    border-radius: 10px;
}

.team-card:hover {
    background-color: #f89b00;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    scale: 1.05;
}

.team-card:hover .tc-title h3 {
    color: white;
}

.team-card .team-icon {
    display: grid;
    justify-content: center;
}

.team-card .team-icon img {
    width: 8rem;
    padding-bottom: 1rem;
    margin: auto;
}

.team-card .tc-lang {
    margin-top: 15px;
}

.team-card .lang-icons {
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 5px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.team-card .lang-icons img {
    width: 45px;
    height: 45px;
}

.team-card h3 {
    color: black;
}

.team-card .tc-title {
    text-align: center;
}

.team-card .tc-title h3 {
    color: #9c9c9c;
    margin-top: 0;
    padding: 0;
}

.team-card .tc-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/*  ---  Tablet  ---  */

@media(max-width:980px) {

}

/*  ---  Smartphone  ---  */

@media(max-width:480px) {
    .team-card .lang-icons img {
        width: 35px;
        height: 35px;
    }
    .team-card .tc-bottom {
        grid-template-columns: 1fr;
    }
    .team-card {
        padding: 30px 30px;
    }
    .team-card .tc-title h3 {
        font-size: 1.5em;
    }
}