.ul-breadcrumb {
    list-style: none;
    display: flex;
    padding: 0%;
}

.li-breadcrumb {
    position: relative;
    background: #134A8B;
    color: #Fff;
    height: 40px;
    padding: 0 20px 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 18px;
}

.li-breadcrumb::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #134A8B;
    top: 0;
    right: -10px;
    z-index: 9;
    border-right: 2px solid #fff;
    transform: skewX(45deg);
}

.li-breadcrumb::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #134A8B;
    bottom: 0;
    right: -10px;
    z-index: 9;
    border-right: 2px solid #fff;
    transform: skewX(-45deg);
}

.li-breadcrumb a {
    text-transform: capitalize;
}