.breadcrumb{
    margin-top: 4rem;
}

.breadcrumb::-webkit-scrollbar {
    margin: 0 2rem;
    height: 6px;
    background-color: var(--bs-white-2);
}

.breadcrumb.mobile-scroll::-webkit-scrollbar {
    height: 0;
}

.breadcrumb::-webkit-scrollbar-thumb {
    background: var(--bs-gray-2); 
    border-radius: 10px;
  }

.breadcrumb-wrapper{
    max-width: 95%;
    border-radius: 5px;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
    padding: 1rem;
    line-height: 2.5rem;
    margin: 0 auto;
}

.breadcrumb-wrapper ul{
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.breadcrumb-wrapper ul  li a{
    text-decoration: none;
    color: var(--bs-blue);
    transition:  all 0.4s;
}

.breadcrumb-wrapper ul li a:hover{
    color: var(--bs-red);
}

.breadcrumb-wrapper ul li span{
    color: var(--bs-black-0);
}

.breadcrumb-item.active {
    color: var(--bs-black-0);
}