*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
}
body{
    padding: 10px 10%;
    margin-top: 80px;
    margin-bottom: 30px;
}
.blogge_head{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    height: 100px;
    background-color: #01CDD5;
}
.blogge_head h4{
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}
.blogge_head a{
    width: 150px;
    height: 40px;
    background-color: #fff;
    border-radius: 10px;
    color: #01CDD5;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogge_post{
    margin: 50px auto;
    width: 100%;
}
.blogge_post_img{
    width: 420px;
    height: 250px;
    background-color: #678384;
    border: 3px solid #01CDD5;
    border-radius: 10px;
    margin-right: 15px;
    float: left;
}
.blogge_post_img img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.blogge_texr_box{
    color: #177578;
    margin-bottom: 50px;
}
.blogge_texr_box h4{
    font-size: 30px;
    margin-bottom: 15px;
    color: #0de6ed;
}
.blogge_texr_box p{
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    margin-top: 5px;
}
.blogge_post_date{
    font-size: 14px;
    font-weight: bold;
    color: #678384;
}

/* All Blogge page style  */
.all_blogge{
    width: 100%;
    height: auto;
    background-color: #3b9a9e;
    margin-bottom: 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.all_blogge img{
    max-width: 30%;
    margin-right: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.all_heading_text{
    margin: 10px;
    color: #fff;
}
.all_heading_text p{
    margin-top: 15px;
    line-height: 25px;
}




/* Responsive scrine 1080 px  */
@media (max-width: 1080px){
    body{
        padding: 10px 0;
    }
    .blogge_texr_box {
        margin-left: 7px;
        margin-right: 7px;
    }
    .blogge_post_img {
        margin-left: 7px;
    }
 }

/* Responsive scrine 768 px  */
@media (max-width: 768px){
    .blogge_post_img {
        width: 270px;
        height: 180px;
    }
    .blogge_texr_box h4 {
        font-size: 20px;
    }
}

/* Responsive scrine 576 px  */
@media (max-width: 576px){
    .blogge_head h4 {
        font-size: 1.6rem;
    }
    .blogge_head a {
        width: 120px;
        height: 35px;
        border-radius: 6px;
        font-size: 13px;
    }

    .blogge_post_img {
        width: 100%;
        height: 160px;
        margin-left: 0;
        float: none;
        margin-bottom: 25px;  
        border: none;      
    }
    .blogge_texr_box h4 {
        font-size: 18px;
    }
    .blogge_texr_box p {
        font-size: 17px;
    }

    .all_blogge {
        flex-direction: column;
    }
    .all_blogge img{
        width: 100%;
    }

}