.text-limit {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: var(--lines) !important;
    line-clamp: var(--lines) !important;
    -webkit-box-orient: vertical !important;
}


/* Breadcrumb */
#breadcrumb {
    background-image: url(../../uploads/seeders/settings/breadcrumb.jpg);
    padding: 15rem 7rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    #breadcrumb {
        padding: 7rem 2rem;
    }
}

#breadcrumb::after {
    background: rgba(34, 34, 29, 0.6) none repeat scroll 0 0;
    content: "";
    padding: 15rem 7rem 0rem;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
}

#breadcrumb h1 {
    color: white;
    z-index: 1;
}

.text-link {
    z-index: 1;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.4s;
    cursor: pointer;
    margin-top: 10px;
}

.text-link a {
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.4s;
}

.text-link:hover a {
    color: #ff5e14;
}

