.Blog_card {
  margin-bottom: 15px;
  height: 100%;
  overflow: hidden;
}

.Blog_card .main_content_holder {
  height: 100%;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
}
.Blog_card .img_holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #fff;
  height: 300px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.Blog_card .img_holder .Blog_img {
  width: 100%;
  object-fit: fill;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.Blog_card:hover .img_holder .Blog_img {
  /* transform: scale(1.1); */
  transition: all 0.3s ease-in-out;
}

.Blog_card .img_holder .arrow_icon {
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0px;
  background-color: #fff;
  width: fit-content;
  margin: 0px auto;
  padding: 10px 20px;
  color: #7c0000;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.Blog_card:hover .img_holder .arrow_icon {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.Blog_card .text_holder {
  width: 100%;
}

.Blog_card .text_holder h4 {
  text-align: left;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 700;
  color: #7c0000;
  opacity: 1;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.Blog_card .text_holder .title_text {
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: #202020;
  opacity: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 4px;
  -webkit-box-orient: vertical;
  margin-top: 0px;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}
.Blog_card .text_holder .descn {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #000 !important;
  opacity: 1;
  overflow: hidden;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  margin-bottom: 3px !important;
}
.Blog_card .text_holder .para_text {
  font-size: 15px !important;
  line-height: 1.3;
}

@media (min-width: 0px) and (max-width: 1199px) {
  .Blog_card .text_holder h4 {
    font-size: 15px;
  }

  .Blog_card .text_holder p {
    font-size: 13px;
  }
}

@media (min-width: 0px) and (max-width: 575px) {
  .Blog_card .text_holder .title_text {
    font-size: 15px;
  }

  .Blog_card .text_holder .descn {
    font-size: 12px;
  }
  .Blog_card .img_holder {
    height: 250px !important;
  }
  .Blog .blog_card_holder {
    margin-top: 14px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .Blog_card .text_holder .title_text {
    font-size: 15px;
  }

  .Blog_card .text_holder .descn {
    font-size: 12px;
  }

  .Blog_card .img_holder {
    height: 200px;
  }
  .Blog_card .text_holder .title_text {
    margin-bottom: 3px;
  }
  .Blog .blog_card_holder {
    margin-top: 21px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .Blog_card .img_holder {
    height: 185px;
  }
  .Blog .Blog_card .text_holder .title_text {
    font-size: 15px;
  }
  .Blog_card .text_holder p {
    font-size: 14px;
  }
  .Blog .Blog_card .para_text {
    -webkit-line-clamp: 3;
  }
  .Blog_card .img_holder {
    height: 200px !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .Blog_card .text_holder .title_text {
    font-size: 18px;
  }

  .Blog_card .text_holder .descn {
    font-size: 13px;
  }

  .Blog_card .text_holder p {
    font-size: 16px;
  }
  .Blog_card .img_holder {
    height: 225px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .Blog_card .text_holder .title_text {
    font-size: 21px;
  }

  .Blog_card .text_holder .descn {
    font-size: 14px;
  }
}
