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

.breadcrumb {
    margin: 0 0 16px;
    position: relative;
    padding: 20px 0;
    background-image: url("../../../assets/img/section-bg-img.jpg");
}

.breadcrumb:before{
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(22, 24, 63);
    background: rgba(25, 29, 87, 0.87);
    width: 100%;
    transition: .5s ease;
}

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

.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: #c8c9c9;
}

.breadcrumb-element > li:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    right: -5px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -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: #fff;
    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;
    }
}
