.allblogs {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
    padding: 50px 0px;
    text-align: center;
    gap: 20px;
}

.allblogs a {
    text-decoration: none;
    font-family:Arial,Helvetica,sans-serif;
    color: black;
}

.blog {
    padding: 0px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px -2px rgba(223, 223, 223, 0.548);
    width: 31.5%;
}
.blog:hover {
}

.blog img{
    width: 100%;
    height: 200px;
    max-height: 350px;
    object-fit: cover;
    margin-bottom: 15px;
}

.blog h5 {
    font-size: 1.5rem;
    line-height: 30px;
    font-weight: 500;
    text-wrap: wrap;
    color: #0E2737;
}
.blog:hover h5 {
    color: #D7005B;
}

.blog p {
    font-size: 0.95rem;
    line-height: 23px;
    margin-bottom: 20px;
    text-wrap: wrap;
}

.singleBlogs {
    padding: 40px 0;
    font-size: 1.1rem;
}
.single-blog-title{
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .allblogs {
        padding: 20px;
    }
    .blog {
        width: 100%;
    }
}