p {
    margin: 0;
    padding: 0;
}

.filter__input {
    padding: 5px;
    margin-bottom: 20px;
    border: 1px solid royalblue !important;
}

.filter__checkbox {
    margin-right: 20px;
    user-select: none;
}

.cells-grid {
    display: grid;
    grid-template-columns: repeat(3, 33%);
    grid-gap: 20px;
}

.cells-grid .cell {
    padding: 20px;
}

.cell-body {
    height: 360px;
}

.cells-grid .cell .center {
    text-align: center;
    height: 180px;
    /* padding: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cell h2 {
    margin-bottom: 40px;
}

.cells-grid .cell img {
    width: 80%;
    /* height: 40px; */
    max-height: 140px;
    object-fit: cover;
}

.brand__button {
    margin-top: 20px;
    background: royalblue;
    text-align: center;
}

/* .brand__button:before {
    content: "";
    height: 0;
    width: 0;
    position: relative;
    top: -3px;
    right: -84px;
    font-size: 0;
    border: 25px solid transparent;
    border-left: 20px solid royalblue;
} */

.brand__button a {
    padding: 10px;
    display: block;
    font-size: 16px;
    width: 100%;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
}


@media screen and (max-width: 1264px) {
    .cell h2 {
        font-size: 24px;
        text-align: center;
    }

    .cells-grid {
        grid-template-columns: repeat(2, 48%);
    }

    .cell-body {
        height: 200px;
    }

    .cells-grid .cell .center {
        height: 150px;
    }
}

@media screen and (max-width: 600px) {
    .cells-grid {
        grid-template-columns: repeat(1, 100%);
    }
    
    .cells-grid .cell {
        max-width: 300px;
        margin: auto;
    }
}