
    #breadcrumb {
        list-style: none;
        display: inline-block;
        margin-top: 60px;
    }

    #breadcrumb li {
        float: left;
        position: relative;
        z-index: 16;
        margin-left: 5px;
    }
    
    #breadcrumb li:first-of-type {
        margin-left: 0px;
    }

    #breadcrumb li a {
        color: #FFF;
        display: block;
        background: #21547a;
        text-decoration: none;
        position: relative;
        height: 40px;
        line-height: 40px;
        padding: 0 10px 0 5px;
        text-align: center;
        margin-right: 23px;
    }

    #breadcrumb li:nth-child(even) a {
        background-color: #21547a;
    }

    #breadcrumb li:nth-child(even) a:before {
        border-color: #21547a;
        border-left-color: transparent;
    }

    #breadcrumb li:nth-child(even) a:after {
        border-left-color: #21547a;
    }

    #breadcrumb li:first-child a {
        padding-left: 15px;
        -moz-border-radius: 4px 0 0 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px 0 0 4px;
    }

    #breadcrumb li:first-child a:before {
        border: none;
    }

    #breadcrumb li:last-child a {
        padding-right: 15px;
        -moz-border-radius: 0 4px 4px 0;
        -webkit-border-radius: 0;
        border-radius: 0 4px 4px 0;
    }

    #breadcrumb li:last-child a:after {
        border: none;
    }

    #breadcrumb li a:before,
    #breadcrumb li a:after {
        content: "";
        position: absolute;
        top: 0;
        border: 0 solid #21547a;
        border-width: 20px 10px;
        width: 0;
        height: 0;
    }

    #breadcrumb li a:before {
        left: -20px;
        border-left-color: transparent;
    }

    #breadcrumb li a:after {
        left: 100%;
        border-color: transparent;
        border-left-color: #21547a;
    }

    #breadcrumb li a:hover {
        color: #7cbd3c;
    }

    #breadcrumb li a:hover:before {
        /* border-color: #1abc9c; */
        border-left-color: transparent;
    }

    #breadcrumb li a:hover:after {
        /* border-left-color: #1abc9c; */
    }
/* 
    #breadcrumb li a:active {
        background-color: #16a085;
    }

    #breadcrumb li a:active:before {
        border-color: #16a085;
        border-left-color: transparent;
    }

    #breadcrumb li a:active:after {
        border-left-color: #16a085;
    } */
    .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0; left: 0;
        z-index: 15;
        background: rgba(255, 255, 255, 0.2);
    }
    .overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: -20px;
        border: 0 solid rgba(255, 255, 255, 0.2);
        border-width: 20px 10px;
        width: 0;
        height: 0;
        z-index: 14;
    }