.team-member-card {
    width: 230px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
}

.team-member-card .image-container {
    width: 100%;
    height: 170px;
}

.team-member-card .image-container .image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.team-member-card .details-container {
    text-align: center;
    background-color: #000;
    padding: 5px;
    border-top: 3px solid var(--theme-color-1);
}

.team-member-card .details-container .name {
    margin-bottom: 0;
    color: #fff;
    font-size: 25px;
}

.team-member-card .details-container .designation {
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
}

/********** Media Queries ************/

/* Large laptop */
@media screen and (max-width:1400px) {}

/* Small laptop */
@media screen and (max-width:1200px) {}

/* Tablet */
@media screen and (max-width:992px) {}

@media screen and (max-width:768px) {}

/* Large mobile */
@media screen and (max-width:576px) {}

/* Small mobile */
@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}

/********** Media Queries END **********/