.blog-page .pagination {
  justify-content: flex-end;
  align-items: center;
  margin-top: 25px;
}
.blog-page .pagination .btn-left,
.blog-page .pagination .btn-right {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
}
.blog-page .pagination .pg-name {
  padding: 0 15px;
}
.blog-page .blog-list .blog-item {
  border-radius: 5px;
  overflow: hidden;
  background: white;
  width: 100%;
  height: 300px;
  margin-top: 25px;
  display: flex;
  transition: 0.5s all linear;
  opacity: 1;
}
.blog-page .blog-list .blog-item:hover {
  opacity: 0.9;
}
.blog-page .blog-list .blog-item:hover .read-more {
  color: black;
}
.blog-page .blog-list .blog-item .left-part {
  flex: 1;
}
.blog-page .blog-list .blog-item .left-part .bg-image {
  background-position: center;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.blog-page .blog-list .blog-item .right-part {
  padding: 25px 25px 0px 25px;
  flex: 1;
}
.blog-page .blog-list .blog-item .right-part .titlu {
  height: 46px;
  padding-bottom: 25px;
  overflow: hidden;
  font-size: 16px;
  color: gray;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
.blog-page .blog-list .blog-item .right-part .separator {
  margin-top: 25px;
  margin-bottom: 25px;
  height: 1px;
  background: rgba(128, 128, 128, 0.8);
}
.blog-page .blog-list .blog-item .right-part .excerpt {
  height: 110px;
  padding-bottom: 25px;
  overflow: hidden;
  font-size: 12px;
  color: rgba(128, 128, 128, 0.5);
  text-align: left;
}
.blog-page .blog-list .blog-item .right-part .read-more {
  text-decoration: underline;
  font-size: 16px;
  color: gray;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}
.blog-page .blog-list .blog-item .right-part .separator2 {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 1px;
  background: rgba(128, 128, 128, 0.2);
  box-shadow: 1px 1px rgba(128, 128, 128, 0.2);
}
.blog-page .blog-list .blog-item .right-part .social-footer {
  text-align: right;
}
.blog-page .blog-list .blog-item .right-part .social-footer a {
  display: inline-block;
}
.blog-page .blog-list .blog-item .right-part .social-footer a img {
  opacity: 0.5;
  filter: grayscale(100%);
  margin-left: 10px;
}
.blog-page .blog-list .blog-item .right-part .social-footer a img:hover {
  opacity: 1;
}
.blog-articol h2 {
  font-size: 14px;
  color: gray;
}
.blog-articol .btn-facebook {
  border: 1px solid #1778F2;
  padding: 5px;
  border-radius: 5px;
}
