

.blogs_header{
    background: url('../../img/pages/blogs/blogs_wall.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 20px 60px;
    
}

.blogs_header > h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 900 !important;
} 
.blogs_header > p {
    font-size: 16px;
    color: #fff;
    margin: 20px 0;
    line-height: 24px;
    max-width: 800px;
    margin: 30px auto 0;
}


.blog_card {
  cursor: pointer;
  transform: scale(1.0);
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
  background-color: rgba(100, 100, 100, 0.2);
  padding:30px 30px 35px;
  margin: 100px 2% 20px;

  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.blog_card:hover {
  transform: scale(1.05);
}
.blog_card:hover img {
  transform: scale(1.05);
}

.card-body {
  position: relative;
  margin: 350px 0 50px;
  text-align: left;
}
.card-img-wrapper {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.card-img-wrapper img {
  transform: scale(1.0);
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
.card-title {
  font-weight: 900 !important;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 
}
.card-meta {
  font-size: 12px;
  color: #aaa;
  margin-top: 30px;
}

.card-text {
  font-size: 14px;
  color: #fff;
  margin-bottom: 15px;
  height: 46px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 
}
