.breadcrumb {
     display: flex;
     border-radius: 10px;
     margin: auto;
     text-align: center;
     top: 50%;
     width: 100%;
     height: fit-content;
     z-index: 1;
     justify-content: center;
}
 .breadcrumb__item {

     height: 50px;
     background-color: #999090;
     color: white;
     font-family: "Libre Franklin", sans-serif;
     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;
     transform: skew(-21deg);
     box-shadow: 0 2px 5px #5d5555;
     margin: 5px 5px 10px 5px;
     padding: 0 40px;
     cursor: pointer;
}
 .breadcrumb__item.active {
     background: #5d5555;
     color: #FFF;
}
 .breadcrumb__item:hover {
     background: #5d5555;
     color: #FFF;
}

.breadcrumb__item a{
    color: white !important;
    text-decoration: none;
}
 .breadcrumb__inner {
     display: flex;
     flex-direction: column;
     margin: auto;
     z-index: 2;
     transform: skew(21deg);
}
 .breadcrumb__title {
     font-size: 16px;
     text-overflow: ellipsis;
     overflow: hidden;
     white-space: nowrap;
}
 @media all and (max-width: 1000px) {
     .breadcrumb {
         height: fit-content;
    }
     .breadcrumb__title{
         font-size: 11px;
    }
     .breadcrumb__item {
         padding: 0 30px;
    }
}
 @media all and (max-width: 710px) {
     .breadcrumb {
         height: fit-content;
    }
     .breadcrumb__item {
         padding: 0 20px;
    }
}
