@import "app.css";

.team-card-div {
    padding: 15px;
}
.team-card {
    background-color: transparent;
    /* border: 1px solid rgba(0, 0, 0, 0.15); */
    border-radius: 10px;
    cursor: default;
    transition: 0.4s ease;
}
.team-card:hover {
    transform: scale(1.1);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;
    transition: 0.4s ease;
}
.team-card .card-body {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    padding: 20px;
}
.team-card .card-body a {
    text-decoration: none;
}
.team-card .card-body img.team-profile {
    height: 200px;
    width: 200px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 7px;
}
.team-card .card-body .details {
    padding: 0px 15px;
}
.team-card .card-body .details .name {
    font-size: 1.2rem;
    color: var(--ascent-3);
}
.team-card .card-body .details .position {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}
.team-card .card-body .details .description {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
}
.team-card .card-body .details hr {
    width: 70px;
    background-color: var(--ascent-2);
    opacity: 1;
}
.team-card .card-body .details ul {
    margin-bottom: 0px;
}
.team-card .card-body .details ul li {
    display: inline-block;
    margin-right: 5px;
}
.team-card .card-body .details ul li a {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: var(--ascent-2);
    border-radius: 20px;
    color: #fff;
}
.team-card .card-body .details ul li a:hover {
    background-color: var(--ascent-3);
    columns: #fff;
}
@media (max-width: 767px) {

    .team-card-div {
        padding: 5px;
    }
    .team-card .card-body {
        flex-direction: column;
    }
    .team-card .card-body .details {
        text-align: center;
        padding: 20px 0px;
    }
    .team-card .card-body .details hr {
        margin-left: auto;
        margin-right: auto;
    }
}