.blog-description p{
  font-size: 16px;
}
.bg-changed, .default-bg{
  margin-bottom: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  overflow: hidden;
}
.default-bg{
  background: #ffffff;
}
.bg-changed{
  background: #b7f1f7;
}
.middle-align{
  display: flex;
  align-items: center;
}
.image-column{
  padding-left: 0;
}
.title{
  color: #000000;
  transition: all 0.2s ease-in-out;
}
.bg-changed:hover .title, .default-bg:hover .title{
  color: #ff0000;
}
.blog-description{
  margin: 30px 0;
  text-align: justify;
}


.share-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

  .share-icon {
    position: relative;
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
  }
.share-icon a{
  color: #ffffff;
}
.share-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 0px 10px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  height: 30px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.share-icon:hover{
      background: #333 !important;
    }
    /* Individual colors */
    .facebook   { background: #3b5998; }
    .twitter    { background: #55acee; }
    .instagram  { background: #e4405f; }
    .linkedin   { background: #0077b5; }
    .whatsapp   { background: #25d366; }
    .youtube    { background: #ff0000; }

  .pagination-section{
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.pagination span, .pagination a{
    height: 35px;
    width: 35px;
    border: 1px solid #056bca;
    border-radius: 50%;
    margin: 0px 5px;
    color: #000000;
    float: left;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s all ease-in-out;
    display: flex;
}
.pagination span.current, .pagination a:hover,
.pagination a.active {
    background-color: #056bca;
    color: #ffffff;
}

@media screen and (min-width:320px) and (max-width:767px) {
  .middle-align {
    margin-top: 20px;
  }
}