*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
img{
	max-width: 100%;
}
a{
	text-decoration: none;
}

.blogs .blog-content .blog-tags .blog-icon-list li {
    list-style: none;
}

.blogs .blog-content .blog-tags .blog-icon-list {
    padding: 0px;
    justify-content: space-between;
    margin: 0px;
}

.blogs .blog-content .blog-heading a {
    color: #000;
}

.blog-details-left .blog-tags .blog-icon-list {
    padding: 0px;
    justify-content: space-between;
    margin: 0px;
}
.blog-details-left .blog-tags .blog-icon-list li {
    list-style: none;
}

.blogs .blog-content .blog-heading a h3 {
    font-size: 23px !important;
    line-height: 30px;
    color: #000;
    margin: 0px;
    padding: 5px 0px;
    text-transform: capitalize;
    overflow: hidden;
    /*display: -webkit-box;*/
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blogs .blog-content .blog-heading p{
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    /*margin: 10px 0px;*/
    margin: 0px;
    text-align: justify;
}

.blogs .blog-content {
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 3px 0px;
    height: 100%;
}

.blogs .blog-content .blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.blogs .blog-content .blog-img img {
    width: 100%;
    height: 220px;
    display: block;
    transition: transform 0.5s ease;
    transform-origin: center center;
    object-fit: cover;
}

.blog-content:hover .blog-img img {
  transform: scale(1.1);
}
.blog-content:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blogs .blog-content .blog-text{
	padding: 10px;
}

.blogs .blog-content .blog-text .read-more{
	text-transform: capitalize;
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pagination a {
  color: #333;
  padding: 8px 14px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 13px;
}

.pagination a:hover {
  background-color: #006b91;
  color: #fff;
  border-color: #006b91;
}

.pagination a.active {
  background-color: #006b91;
  color: white;
  border-color: #006b91;
  font-weight: 600;
}

.pagination a.prev,
.pagination a.next {
  font-weight: bold;
}
.blog-share  {
    display: flex;
    align-items: baseline;
    gap: 15%;
}

.blog-share .social-share {
    margin-top: 10px;
}
.blog-share .social-share a {
    padding: 10px;
    font-size: 18px;
    width: 36px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    margin-right: 5px;
}
.blog-share .social-share .fa-facebook {
    background: #3B5998;
    color: white;
}
.blog-share .social-share .fa-twitter {
    background: #55ACEE;
    color: white;
}
.blog-share .social-share .fa-whatsapp {
    background: #25D366;
    color: white;
}
.blog-share .social-share a:hover {
    opacity: 0.7;
}

