.category-header {
    display: flex;
    justify-content: space-between;
}

#products-sorting {
    height: 30px;
}

#products-sorting form {
    display: flex;
}

#products-sorting select {
    height: 28px;
    padding: 2px 5px;
    border-radius: 0;
    border-color: #137d7a;
}

.category-title {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 350px;
}

.category-title:before,
.category-title:after {
    width: 130px;
}

.category-body {
    margin-bottom: 20px;
}

.category-description,
.category-description p {
    text-align: justify;
    font-family: 'Roboto Slab', serif;
    line-height: 1.8;
    font-size: 14px;
}

.category-img img {
    width: 225px;
    height: auto;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    #category-content {
        padding: 0;
    }
    #products-sorting {
        height: auto;
        margin-bottom: 20px;
    }
    .category-header {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .category-title {
        max-width: unset;
        padding-bottom: 10px;
    }
    .category-title:before,
    .category-title:after {
        width: 0;
    }
    .category-description,
    .category-description p {
        text-align: left !important;
    }
    #products-sorting form {
        flex-direction: column;
    }
}

.products-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}