.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;
}

.breadcrumbs-nav li:nth-child(4)::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);
}

@media(max-width: 1500px) {
    .item-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

.card-title .info {
    text-align: center;
    margin: 0 0 10px 0;
}

.card-title .info p {
    font-size: 14px;
    color: #202020;
    text-transform: uppercase;
    font-weight: 200;
}

.card-title h2 {
    text-align: center;
    font-size: 16px;
    position: relative;
    margin: 0 0 10px 0;
}

.card-title h2:after {
    position: absolute;
    content: '';
    width: 60%;
    height: 1px;
    left: 20%;
    background-color: #202020;
    bottom: -3px;
}