/*banner*/
.banner{
    background-image: url('../image/banne-blog.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    margin-top: -60px;
    z-index: 3;
}

.banner__text{
    text-align: center;
}
.banner__text h2{
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 39px;
}
/*end banner*/

/*blog*/
.blog{
    margin-top: 30px;
}
.main__blog{
    width: 85%;
    margin: auto;
}
.list__blog{
    margin-bottom: 40px;
}
.blog__image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.post__title{
    font-family: "Poppins";
    font-size: 20px;
    color: #363636;
    font-weight: 700;
    line-height: 28px;
    display: block;
    margin: 20px 0;
}
.post__title:hover{
    color: #ffdc39;
    transition: all 0.3s;
}
.blog__des p{
    font-size: 15px;
    color: #808285;
    line-height: 27px;
}
.post__info{
    padding-top: 15px;
    /*border: 1px solid #f2f2f2;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.date__post ul,
.share ul{
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}
.date__post ul li,
.share ul li a{
    font-size: 14px;
    color: #999999;
}

/*end blog*/

@media only screen and (max-width: 1200px){
    .banner{
        position: static;
        height: 300px;
        margin-top: 0;
    }
}