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

.breadcrumb {
    padding: 20px 0;
    background-color: rgba(0, 121, 200, 0.77);
    position: relative;
    border-bottom: 1px solid rgba(221, 221, 221, 0.49);
    margin-top: -1px;
}

.image-bg {
    background-image: url("../../../assets/img/bg-wave.png");
    background-position: center 30%;
    opacity: 0.3;
    position: absolute;
    height: 105px;
    width: 100%;
    top: 0px;
    left: 0;
}


.txt-title{
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px #1a1d20;
}

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

.breadcrumb-element li{
    list-style: none;
    transition: all 0.2s ease-in-out;
    line-height: 40px;
    padding-left: 15px;
    padding-right: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
.breadcrumb-element li:last-child{
     color: #fff;
    font-weight: 700;
}

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

.breadcrumb-element li a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-shadow: none;
    position: relative;
}
.breadcrumb-element li a:hover{
    color: #cd882b;
}

@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;
    }
}
