body{
  margin: 0;
}

.blog-title{

}

.articleArea{
  padding-top: 50px;

}

.sub-heading{
  align-items: center;
}

.sub-heading > h1{
  font-size: 28px;
  color: #32d455;

}

.bodyContents{
  margin: 0;
}

.articleArea{

}



.articleArea::after{
    content: "";
    clear: both;
    display: table;
}

.content{
    /* margin-top: 70px; */
    width: 100%;
    /* height: calc(100vh - 60px); */
    height: fit-content;
    /* background: url(.); */
    /* background-size: cover; */
    display: flex;
    justify-content: center;
     align-items: center;
    margin: 0;
}
.article{
    position: relative;
    height: fit-content;
    padding: 40px;
    padding-bottom: 10px;
    margin-top: 20px;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.7;
}
.blog{
    position: relative;
    height: fit-content;
    padding: 5px;
    padding-bottom: 10px;
    margin-top: 0px;
    width: 100%;
}
.blog, .banner::after{
    content: "";
    clear: both;
    display: table;
}

.article, .title{
    min-height: auto;
    height: fit-content;
    padding: 0 10px;
    white-space: normal;
}

.published, .publishedBy{
    margin: 7px 0 3px;
    /* padding: 0 7px; */
    text-transform: capitalize;
    font-style: italic;
    font-size: 11px;
    color: rgba(77, 6, 45, 0.5);
    margin: auto;
    text-align: center;
}

.title{
  color: green;
}

/*decorating class blog under the read more section*/
.blog{
  font-style: italic;
  color: grey;
}

.published span{
    font-weight: 700;
    font-style: normal;
}

.article *{
    padding:7px 0;
}

.small{
  font-family: fantasy;
  color: green;
}
.article-image{
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 10px auto;
    object-fit: contain;
}

.sub-heading{
    padding: 0 5vw;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 40px;
    margin-top: 80px;
}

.blog-card{
  margin-bottom: 40px;
}

.published_details > p, h1{
  text-align: center;
}

.article > h2, h3, h4, h5, h6{
  text-align: center;
  color: #4CAF50;
}


/* LISTS */
.article_lists_ul{
  padding-left: 40px;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 7px;
  align-items: center;
}

.article_lists_ul li{
  display: block;
position: relative;
}

/* empty un-ordered list */
ul:empty{
  display: none;
}

.article_lists_ul li:not(:last-child) {
  /* margin-bottom: 16px; */
}

.article_lists_ul li:before {
  content: "";
  position: absolute;
  top: 1.75em;
  left: -30px;
  margin-top: -0.9em;
  background: #4CAF50;
  height: 10px;
  width: 10px;
  /* border-radius: 50%; */
}

/* ordered lists */
.article_lists_ol{
  padding-left: 40px;
  width: 100%;
  display: block;
  margin: auto;
  align-items: center;
}

.article_lists_ol li{
  display: block;
position: relative;
}

.article_lists_ol li:not(:last-child) {
  /* margin-bottom: 16px; */
}

.article_lists_ol li {
  list-style-type: none;
  counter-increment: item;
}

.article_lists_ol li:before {
  content: counter(item) ". ";
  color: #4CAF50;
}
  
/* END OF LISTS SECTION */