.breadcrumb-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #212529;
    position: relative;
}

.breadcrumb {
    padding: 20px 0;
    background-color: #fce2a0;
    position: relative;
}

.image-bg {
    background-image: url("../../../assets/img/hero-bg-icons.svg");
    opacity: 0.35;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}


.txt-title{
    font-size: 26px;
    font-weight: 800;
    color: #212529;
}

.breadcrumb-element{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}

.breadcrumb-element li{
    list-style: none;
    padding: 0 15px;
    position: relative;
}

.breadcrumb-element li:first-child{
    padding-left: 0;
}

.breadcrumb-element li:last-child {
    color: #1d1e1e;
}

.breadcrumb-element > li:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: -5px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #1c1b1b;
    border-bottom: 1px solid #1a1919;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.breadcrumb-element > li:last-child:after{
    display: none;
}

.breadcrumb-element li a{
    text-decoration: none;
    color: #212529;
    font-weight: 500;
}
.breadcrumb-element li a:hover{
    color: #da6d1e;
}

@media (max-width: 768px) {
    .breadcrumb-row{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .breadcrumb-element{
        justify-content: center;
    }
    .txt-title{
        text-align: center;
    }
}
