.breadcrumbs-desktop {
    display: block;
}
.breadcrumb-link {  
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-separator {     
    margin: 0 5px; 
}
.breadcrumbs-mobile { 
    display: none;
}
.default-text-color {
    color: #2c3e50;
}
.default-text-color:hover {
    color: #2980b9;
}
.light-text-color {
    color: #ffffff;
}
.light-text-color:hover {
    color: #ffcd05;
}
@media screen and (max-width: 1200px) {
    .breadcrumbs-mobile {
        display: block;
    }
    .breadcrumbs-desktop {
        display: none;
    }
}

