.breadcrumb {
    display: flex;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    top: 50%;
    width: 100%;
    height: 40px;
    z-index: 1;
      /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);*/
}

.breadcrumb__item {
    height: 100%;
    background-color: white;
    color: #252525;
    border-radius: 7px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);*/
    margin: 5px;
    padding: 0 40px;
}

.breadcrumb__item:hover {
    background: var(--primary_color);
    color: white !important;
}
.breadcrumb__item:hover a{
    color: white !important;
}

.breadcrumb__inner {
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
}

.breadcrumb__title {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

@media all and (max-width: 1000px) {
    .breadcrumb {
        height: 35px;
    }
    .breadcrumb__title {
        font-size: 11px;
    }
    .breadcrumb__item {
        padding: 0 30px;
    }
}

@media all and (max-width: 710px) {
    .breadcrumb {
        height: 30px;
    }
    .breadcrumb__item {
        padding: 0 20px;
    }
}