.core_value_bank img {
    width: 100px;
    height: 100px;
    display: block;
}

#core_value {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    text-align: center
}

#core_value li {
    list-style-type: none;
    color: #fff;
    padding: 10px 15px;
    position: relative;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase
}

#core_value li:after {
    content: "";
    position: absolute;
    right: -25px;
    bottom: 0;
    z-index: 1;
}

#core_value li:nth-child(1)::after {
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid rgba(var(--bs-primary-rgb));
}

#core_value li:nth-child(2)::after {
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid rgba(var(--bs-info-rgb));
}