
.icons .icon {
    filter: invert(100%);
}
.nav-links a {
    color: black;
}

.our-team-page-header.scrolled .nav-links a{
    color: white;
    transition: 1s;
}
.our-team-page-header.scrolled .icons img {
    filter: none;
}
.our-team-page-header.scrolled .mobile-menu-icon i{
    color: white;
}




.our-team-section {
    width: 100%;
    background-color: #f4f4f4;
}
.our-team-section .container {
    display: flex;
    flex-direction: column;
}
.our-team-title {
    color: rgba(0, 0, 0, 0.562);
    margin-bottom: 60px;
}
.our-team-title h2 {
    color: black;
}
.team-cards {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-card  {
    width: 33%;
    background-color: white;
    margin: 0 10px;
    padding: 10px 14px;
    border-radius: 15px;
}
.team-card h2 {
    font-size: 18px;
    margin-top: 25px;
}
.team-card span,
.team-card p {
    color: rgba(0, 0, 0, 0.74);
    font-size: 14px;
    line-height: 1.8;
}
.team-card p{
    margin-top: 12px;
}
.social-icons {
    margin: 20px 0;
}
.social-icons i {
    color: gray;
    margin: 0 6px;
}

.team-img {
    width: 100%;
    height: 200px;
    border-radius: 6px;
}
.bonnie-green {
    background: url('./our-team-images/Bonnie\ Green.jpg');
    background-size:cover;
    background-position:center;
}
.thomas-lean {
    background: url('./our-team-images/Thomas\ Lean.jpg');
    background-size:cover;
    background-position:center;
}
.jese-leos {
    background: url('./our-team-images/Jese\ Leos.jpg');
    background-size:cover;
    background-position:center;
}
.leslie-livingston {
    background: url('./our-team-images/Leslie\ Livingston.jpg');
    background-size:cover;
    background-position:center;
}

.social-icons i {
    cursor: pointer;
    transition: .4s;
}
.social-icons i:hover {
    color: red;
}

@media (max-width: 768px) {
    .team-cards {
        flex-direction: column;
    }
    .team-card {
        width: 100%;
        margin-bottom: 30px;
    }
    * {
        cursor: default;
    }
}
