.breadcrumbs {
    box-sizing: border-box;
    width: 100%;
    position: relative;

    text-align: center;
    padding: 40px 20px;
    color: var(--red);
}

.breadcrumbs::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background-image: url('/animus/img/animus_house.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .2;
    z-index: -1;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--dgray);
}

.breadcrumbs a:hover {
    color: var(--blue);
}
