body {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.clear {
    clear: both;
}

/******* banner start******/
.allblogs-banner {
    background-image: url(../image/all-blogsBG.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   
    padding: 200px 0;
    position: relative;
}


.allblogs-banner h2 {
    font-size: 50px;
    text-transform: capitalize;
    font-weight: bold;
    color:#041075;
    margin-left: 100px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

@media screen and (min-width:200px) and (max-width:425px) {
    .allblogs-banner {
        padding: 70px 0;
    }

    .allblogs-banner h2 {
        font-size: 20px;
        margin-left: 0;
    }
}

/******* banner end******/
.blog-content{
    padding: 80px 0;
        background-color: #d7f4ed;
}


/******* left-side start******/
.blog-content .blog-card img {
    border-radius: 10px;
    max-height: 200px;
    object-fit: cover;
}

.card-body h5 {
    padding: 10px 0;
}

.card-body p {
    padding-bottom: 10px;
}

.blog-content .blog-card {
    background-color: #dddada;
    box-shadow: 0px 4px 4px 4px rgba(90, 88, 88, 0.583);
    padding: 10px;
    border-radius: 10px;
    border-left: 3px solid #e5ce66;
    border-right: 3px solid #6c9b81;
    border-top: 1px solid rgb(205, 114, 114);
    margin: 20px 0;
}

.left-blog a {
    color: black;
}

.blog-card .btn-viewread {
    background-color:#080874;
    border-radius: 10px;
    color: #eee;
}

.blog-card .btn-viewread:hover {
    background-color: red;
    color: #fff;
  border: none;
    transition: 0.9s;
}

.blog-titel {
    display: flex;
    justify-content: space-between;
}

.blog-titel p {
    padding-top: 8px;
    font-size: 15px;
    color: #bf5252;
}

/******* left-side end******/
/******* right-side end******/
.right-blog img {
    width: 100%;
    border-radius: 10px;
    border-left: 5px solid #e6dc80;
    border-right: 5px solid #e6dc80;
}

.right-blog h2 {
    font-weight: bold;
    font-size: 27px;
    padding-bottom: 20px;
}

.right-blog ul {
    padding: 20px;
}

.right-blog ul p {
    font-size: 20px;
    font-weight: bold;
}

.right-blog ul li {

    padding: 10px 0;
    font-size: 17px;
    font-weight: bold;
    list-style: decimal;
}

/******* right-side end******/
@media screen and (min-width:200px) and (max-width:990px) {
    .blog-content {
        padding: 0;
    }
}

