.filterDiv {
    display: none;
}

.show {
    display: block;
}

.btn:hover {
    background-color: #ddd;
}

.btn.active {
    background-color: #abd418;
    color: white;

}

.btn {
    padding: 5px 15px;
}

.btn.active~.arrow-down {
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #abd418;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

.team-item {
    margin: 0.75rem;
    text-align: center;
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255, 255, 255, var(--bg-opacity));
    /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); */
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 20%);
    transition-duration: 300ms;
}

.team-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    --bg-opacity: 1;
    background-color: #abd315;
    border-radius: 0.25rem;
    font-size: 1.125rem;
    --text-opacity: 1;
    color: #fff;
    transition-duration: 300ms;
}

.team-name {
    --text-opacity: 1;
    color: #2d3748;
    color: rgba(45, 55, 72, var(--text-opacity));
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.team-overlay {
    width: 100%;
    height: 100%;
    /* display: block; */
    align-items: center;
    /* justify-content: center; */
    position: absolute;
    top: 0;
    left: 0;
    --bg-opacity: 1;
    background-color: #edf2f7;
    background-color: rgba(237, 242, 247, var(--bg-opacity));
    transition-duration: 300ms;
    opacity: 0;
}

.team-overlay:hover {
    opacity: 1;
}

.team-img {
    max-height: 180px;
    overflow: hidden;
}