
.category-container {
    width: 1238px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media screen and (max-width: 1275px) {
    .category-container {
        width: 826px;
    }
}

@media screen and (max-width: 900px) {
    .category-container {
        width: 415px;
    }
}

@media screen and (max-width: 470px) {
    .category-container {
        width: 244px;
    }
}


.category-container-row {
    width: 100%;
    display: flex;
    height: auto;
    flex-direction: row;
    justify-content: center;
    background-color: var(--default-theme-color);
    padding-bottom: 100px;

}

.category-container-column {
    width: 100%;
    display: flex;
    height: auto;
    flex-direction: column;
    background-color: var(--default-theme-color);
    padding: 0;
    margin: 0;
}


.reference-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.reference-title h2 {
    margin-top: 95px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 39px;
    display: flex;
}