/*
 * Copyright (c) 2024. Blitzdata
 */

.team-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 30px;

}

.person {
    width: 350px;
    height: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.person img {
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 5%;
    cursor: pointer;

}

.person .work-photo, .person .main-photo {
    overflow: hidden;
    position: absolute;
    object-fit: cover;
    width: 350px;
    height: 350px;
    display: block;
    background-size: auto;
    background-size: cover;
    border-radius: 5%;
    top: 0;
}

.person .work-photo {
    display: none;
}

.image-description {
    margin-top: 360px;
}

