.team_area {
    position: relative;
    overflow: hidden;
}
.team_area:before {
    position: absolute;
    content: "";
    left: -1px;
    top: -1px;
    width: calc(var(--ftb-cut-corner-size, 180px) + 2px);
    height: calc(var(--ftb-cut-corner-size, 180px) + 2px);
    background: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    pointer-events: none;
}

.team_section_title {
    margin-bottom: 50px;
}

.team_subtitle {
    margin: 30px 0;
}
.team_subtitle p {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}

.team_icon_box_item {
    text-align: center;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 30px;
}

.team_icon {
    margin-bottom: 20px;
}
.team_icon img {
    border-radius: 50%;
}

.team_description {
    margin-bottom: 10px;
}

.popup_wrap {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    min-height: 30px;
}

.team_popup {
    border: none;
    width: 30px;
    height: 30px;
    line-height: 0;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.team_popup_content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
    background: #fff;
    padding: 10px;
    color: #000;
    border-radius: 4px;
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
    max-height: 400px;
    overflow-y: auto;
    z-index: 2;
    width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.team_popup:hover + .team_popup_content,
.team_popup_content:hover {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 991px) {
    .team_icon_box_item {
        margin-bottom: 40px;
    }
}
