.categoriesContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
}

.categoriesContainer > .homeHeader {
    display: block;
    width: 28%;
    height: 280px;
    position: relative;
    margin-bottom: 80px;
    box-sizing: border-box;
    background-size: cover;
}

.categoriesContainer.mainCategories > .homeHeader {
    width: 45%;
}

.column .homeHeader {
    display: block;
    height: 320px;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

#content .column p {
    margin: 0;
}

@media(max-width: 1024px) {

    .categoriesContainer > .homeHeader {
        width: 48%;
    }
}

@media(max-width: 580px) {

    .categoriesContainer > .homeHeader {
        width: 100%;
    }
}