.team-item a{
    color: inherit;
    }
    
    .team-item{
    position: relative;
    transition: transform 0.5s ease;
    text-align: center;
    background-color: #eee;
    border: 3px solid #1b87bb;
    margin: 8px .5%;
    padding: 25px 15px;
    border-radius: 5px;
    }
    
    .blocklink{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .blocklink:hover{
    text-decoration: none;
    }
    
    .team-item:hover{
    transform: translateY(-8px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
    }
    
    .team-item:hover .h3-heading{
    color: var(--accent-color);
    }
    
    .team-list{
        list-style: none;
    }
    
    .team-item img{
        width: 300px;
    }
    
    .ourTeamh3{
        color: #1b87bb;
        font-weight: 800;
    }
    
    .team-item:hover {
        border-color: transparent;
    }
    .team-item h3 {
        font-weight: 700;
        font-size: 1.33em;
    }
    .team-item img {
        display: block;
        max-width: 300px;
        width: 100%;
        height: auto;
        margin: 20px auto 40px;
    }
    .team-item h4 {
        font-size: 1.1em;
        margin: 15px auto;
        font-style: italic;
        color: #1b87bb;
        font-weight: 400;
    }

    @media (max-width: 600px) {
        .team-item {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }
    }