

/*------------------------------------------------------------------------------------------
#  Background overlay Image
------------------------------------------------------------------------------------------*/

.breadcrumb-overlay{
    background-image: url("../../../assets/img/cover-x.jpg");
    padding: 20px 0;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100px;
    position: relative;
}


.breadcrumb-overlay:before{
    background-color: rgba(30, 49, 72, 0.90);
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: .5s ease;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.text-shadow{
    text-shadow: 1px 1px #312d2e;
}

.breadcrumb {
    background-color: transparent;
    padding: 6px 10px;
    margin-bottom: 0px;
    text-align: center;
    list-style: none;
    border-radius: 4px;

}

.breadcrumb li a {
    color: #fff;
    etter-spacing: .75px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
}

.breadcrumb li a::after {
    content: "";
    display: block;
    position: absolute;
    top:20px;
    right: 0px;
    width: 12px;
    height: 12px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.breadcrumb .active {
    margin-left: 5px;
    color: #cec7c7;
    font-weight: 500;
    text-decoration: none;
    padding: 1px 10px;
    position: relative;
    z-index: 10;

}