.search-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 20px 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    font-weight: 700;
    width: 100%;
}

.search-title p {
    font-size: 13px;
    margin: 10px 0;
    color: #747474;
}

.search-title h1 {
    font-size: 24px;
    margin: 0;
}

.catalog-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalog-list .product {
    width: calc(25% - 20px);
}

@media (max-width: 1300px) {
    .catalog-list .product {
        width: calc(33% - 20px);
    }
}

@media (max-width: 960px) {
    .catalog-list .product {
        width: calc(50% - 20px);
    }
}

@media (max-width: 560px) {
    .catalog-list .product {
        width: calc(100% - 20px);
    }
    .product .product-img {
        height: auto;
    }
    .product {
        padding: 0 20px;
    }
}