section{
    display: flex;
    font-family: 'Poppins';
    padding-bottom: 60px;
}

section .content{
    display: flex;
    align-items: flex-start;
}

.post-body{
    width: 70%;
    padding-top: 70px;
}

.aditionals{
    width: 30%;
    min-width: 340px;
}

.cover{
    width: 95%;
}

.cover img{
    width: 100%;
}

.contenido{
    width: 95%;
    color: #444854;
}

.contenido h1,.contenido h2,.contenido h3,.contenido h4,.contenido h5,.contenido h6{
    margin-top: 20px;
}
.contenido p{
    margin-top: 30px;
    text-align: justify;
}

.contenido ul,.contenido ol {
    margin: 30px 5%;
    list-style: disc;
}

.contenido img{
    width: 100%;
    margin: 30px 0px;
}

.categories{
    width: 100%;
    border: 1px solid lightgrey;
}

.categories-header{
    width: 90%;
    margin-left:5%;
    font-size: 23px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Poppins';
    border-bottom: 1px solid lightgrey;
    text-indent: 15px;
    color: #444854;
}

.categories-body{
    width: 90%;
    margin-left: 5%;
    margin-top: 10px;
    padding-bottom: 10px;
}
.categories-body .circle{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #739a4c;
}
.categorie-item, .categorie-item a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    text-decoration: none;
    color: black;
    width: 100%;
    -webkit-transition: all .5s ease;
}

.categorie-item{
    margin-top: 10px;
}

.categorie-item a:hover{
    background-color: rgba(0,0,0,.09);
}

.categorie-item span{
    margin-left: 20px;
    font-family: 'Poppins';
}


.product-item{
    display: flex;
    border-bottom: 2px solid lightgrey;
}

.product-item img{
    width: 150px;
}

.product-item .desc{
    margin-top: 30px;
}

.product-item .desc a{
    color: #f79020;
    margin-top: 10px;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .categories{
        display: none;
    }

    .products{
        display: block;
    }

    section .content{
        flex-direction: column;
    }

    .post-body{
        width: 100%;
    }

    .post-body .cover{
        width: 100%;
    }

    .post-body .contenido{
        width: 100%;
    }

    .aditionals{
        width: 100%;
        min-width: 0;
        margin-top: 30px;
    }


    .header{
        margin-bottom: 0;
    }

    .header h1{
        font-size: 30px;
    }
}

@media (max-width: 580px) {
    .contenido h1{
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width: 410px) {
    .header h1{
        font-size: 20px;
    }

    .product-item img{
        width: 100px;
    }

    .aditionals .categories-header{
        font-size: 18px;
    }
}