/* CONTENT */
.content{
    width: 90%;
    margin:30px auto 30px;
    /* border: 1px solid red; */
   
   
}

.content .main-content{
    width: 70%;
    float: left;
    /* border: 1px solid blue; */
    
}
.content .main-content .post{
    width: 95%;
    height: 270px;
    margin: 20px auto;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    

}
.content .main-content .post .post-image{
   width: 40%;
   height: 100%;
   float: left;

}
.content .main-content .post .post-preview{
    padding: 10px;
    width: 60%;
    float: right;
}
.content .main-content .recent-post-title{
    margin: 20px;
}
.content .sidebar{
    width: 30%;
    float: left;
    /* border: 3px solid green; */
    height: auto;
    padding: auto;
    /* position: fixed; */
   
}
.clearfix::after{
    content: '';
    display: block;
    clear: both;
    
}
.bouton{
    padding: .5rem 1rem;
    background:rgba(216, 87, 17, 0.871);
    color:white; 
    border: 1px solid transparent;
    border-radius: .25rem;
    text-decoration: none;
    float: right;
    margin-top:auto;


}
.bouton:hover{
    color:white !important;
    background: #0a9498;
}
.content .main-content .post .read-more{
    border:1px solid #0a9498;
    background: transparent;
    border-radius: 0px;
    color: #0a9498 !important;

}
.content .main-content .post .read-more:hover{
    background:#0a9498;
    color:white !important;
    transition:.25s;

}
.post-preview a{
    text-decoration: none;
}

@media (max-width: 768px) {
    .post{
        display: flex;
    }
    .post img{
        display: none;
        /* position: relative;
        width: 10px; */
    }
    .content .main-content .recent-post-title{
       font-size: 18px;
    }
    .content .main-content .post .post-preview{
        padding:15px;
        width:100%;
        float:none;
        /* font-size: 11px; */
    }
    .post-preview a{
        font-size: 14px;
    }
    .bouton{
        display: none;
    }
    .contact h2 {
     font-size: 18px;
     padding: 15px;
     text-align: center;
    }
    .contact p{
        font-size:10px;
        text-align: center;
    }

    .content{
        width: 100%;
        margin:30px auto 30px;
       
       
       
    }
   
    
}