
section{
    display: flex;
}

section .content{
    display: flex;
    align-items: flex-start;
}

.entrys{
    width: 70%;
    padding-top: 70px;
}

.entry-item{
    width: 95%;
    margin-bottom: 30px;
}

section .content .cover span{
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(0,0,0,.4);
    font-size: 40px;
    font-family: 'Poppins';
    text-align: center;
}

section .content .cover{
    position: relative;
    height: 350px;
}

section .content .cover img{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

section .content .entry-item .description{
    background-color: #f1eff0;
    font-family: 'Poppins';
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.date{
    width: 100px;
    height: 100px;
    margin-left: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #739a4c;
    font-family: 'Poppins';
    color: white;
    margin-top: 30px;
}

.date .day{
    font-weight: 800;
    font-size: 25px;
}

.date .month{
    font-size: 14px;
}

.info{
    width: 80%;
    margin: 30px;
}

.info .categorie{
    color: #739a4c;
    font-weight: 800;
    font-size: 20px;
}

.info .title{
    font-size: 22px;
    margin: 10px 0px;
}

.info .resume{
    text-align: justify;
    margin: 20px 0px ;
}

.info .button{
    margin: 35px 0px;
    height: 55px;
    width: 250px;
}

.info .button a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    color: black;
    text-decoration: none;
}





.categories{
    width: 30%;
    border: 1px solid lightgrey;
}

.categories-header{
    width: 90%;
    margin-left:5%;
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Poppins';
    border-bottom: 1px solid lightgrey;
    text-indent: 15px;
}

.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';
}


.filter{
    display: none;
}


@media (max-width: 900px) {
    .filter{
        position: relative;
        display: flex;
        justify-content: center;
        border: 1px solid #444854;
        width: 33%;
        min-width: 250px;
        max-width: 350px;
        margin: 0 auto 30px auto;
    }

    .filter select{
        width: 100%;
        -webkit-appearance: none;
        text-indent: 10px;
        height: 40px;
        z-index: 1;
        background-color: transparent;
        outline: none;
        cursor: pointer;
        font-family: 'Poppins';
        border: none;
    }

    .filter img{
        position: absolute;
        width: 20px;
        right: 10px;
        top: 15px;
        z-index: 0;
    }


    .categories{
        display: none;
    }

    .entrys{
        width: 100%;
        padding: 0;
    }

    .entry-item{
        width: 100%;
    }
}

@media (max-width: 700px) {
    .cover{
        height: 375px !important;
    }
}

@media (max-width: 650px) {
    .date{
        min-width: 90px;
        height: 90px;
    }

    section .content .entry-item .description{
        flex-direction: column;
    }

    section .content .cover span {
        font-size: 25px;
    }
}

@media (max-width: 500px) {
    .cover{
        height: 300px !important;
    }
}

@media (max-width: 370px){
    section .content{
        margin: 0;
    }
}