.bp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0; 
    row-gap: 25px;
    column-gap: 5px;
}

.bp_item {
    display: flex; 
    flex-direction: column;
    flex: 296px;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    height: inherit;
} 

.bp_crew {
    display: flex;
    width: 296px;
    min-height: 222px;
    justify-content: center;
    align-items: center;
    background: center top no-repeat;
}


.bp_crew_text {
    font-size: 14px;
    line-height: 16px;
    opacity: 0;
    user-select: none;
    transition: all 0.5s ease-out;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    }


.bp_title {
    text-align: center;
    color: #f9f5e1;
    /* color: black; */
    margin: 0;
    transition: all 0.45s ease-out;
}

.bp_item:hover > .bp_crew > .bp_crew_text {
    opacity: 1;
    background-color: rgba(28, 28, 30, .8);
}

.bp_item:hover > .bp_title {
    opacity: 0;
    user-select: none;
}
