/*==================================================
  Global Breadcrumb
==================================================*/

.mentor-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:0;
    padding:16px 0;
    margin:0;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:400;
    line-height:1.5;
    color:#6C757D;
}

.mentor-breadcrumb a{
    color:#6C757D;
    text-decoration:none;
    font-weight:400;
    transition:color .25s ease;
}

.mentor-breadcrumb a:hover{
    color:#0A1946;
}

.mentor-breadcrumb span{
    margin:0 10px;
    color:#ADB5BD;
    font-weight:400;
    user-select:none;
}

.mentor-breadcrumb strong{
    color:#495057;
    font-weight:600;
}

@media (max-width:768px){

    .mentor-breadcrumb{
        font-size:12px;
        padding:12px 0;
    }

    .mentor-breadcrumb span{
        margin:0 8px;
    }

}