.team-card{
    width: 300px;
    height : 370px;
    perspective: 1000px;
    }
    .team-card-inner{
    position: relative;
    width: 100%;
    height:100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    }
    .team-card:hover .team-card-inner {
    transform: rotateY(180deg)
    }
    .team-card-front .team-name{
        z-index: 9;
        position: absolute;
        color: #fff;
        bottom: 5%;
        left: 10px;
        
    }
    .team-card-front .team-name h2,p{
        padding: 0;
        margin: 0;
        color: #fff;
    }
    .team-img{
        height: 370px;
    }
    .team-card-front,
    .team-card-back{
    position: absolute;
    display:flex;
    flex-direction: column;
    width:100%;
    height:100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid #fff;
    
    }
    .team-card-front{
    background-color: #000;
    color: #fff;
    }
    .team-card-back{
    background-color: #36454F;
    color: #000;
    padding: 15px 10px;
    text-align: start;
    transform: rotateY(180deg)
    }