.page-information-main {
    min-height: inherit;
}

.page-information {
    min-height: inherit;
    margin-bottom: 0;
}

.breadcrumbs-nav li {
    position: relative;
}

.breadcrumbs-nav li:nth-child(2)::before {
    position: absolute;
    content: "/";
    right: -13px;
    top: 2px;
    color: #8e8e8e;
}

.breadcrumbs-nav li:nth-child(3)::before {
    position: absolute;
    content: "/";
    right: -13px;
    top: 2px;
    color: #8e8e8e;
}

b {
    font-weight: 700;
}

.caralog-grid {
    display: flex;
    flex-wrap: wrap;
}

.item-list {
    /* display: grid;
        width: 100%;
        grid-template-columns: repeat(4, 1fr); */
    display: block;
    width: 100%;
}

/* @media(max-width: 1500px) {
    .item-list {
        grid-template-columns: repeat(3, 1fr);
    }
} */
.catalog-items {
    width: calc(33% - 1px);
    float: left;
    margin: 6px 0 0 0;
}
@media(max-width: 1040px) {
    .catalog-items {
    width: calc(50% - 1px);
    float: left;
    margin: 6px 0 0 0;
}
}

.card-img {
    max-height: 280px;
}

.card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-title {
    display: flex;
    margin-bottom: 10px;
}

.card-title h2 {
    font-size: 22px;
    position: relative;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: #f3f3f3;
    text-underline-offset: 4px;
    line-height: 1.2;
    transition: .2s;
}
.catalog-items:hover .card-title h2{
    text-decoration-color: #202020;
    transition: .2s;
}

/* .card-title h3:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #f3f3f3;
    left: 0;
    bottom: -5px;
} */