/* .filtercard {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
} */

.blog-details-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

.blog-details-gallery a{
    width: 100%;
    height: 250px;
    display: none;
}

.blog-details-gallery a:nth-of-type(1), .blog-details-gallery a:nth-of-type(2), .blog-details-gallery a:nth-of-type(3), .blog-details-gallery a:nth-of-type(4), .blog-details-gallery a:nth-of-type(5){
display: block;
}

.blog-details-gallery a:first-of-type{
    grid-column: span 2;
    grid-row: span 2;
    height: 530px;
}

.blog-details-gallery {
    height: auto;
}

.blog-details-gallery a img{
    border-radius: 22px;
}

.BlogCard .artical-image {
    height: 360px;
        border-radius: 20px;
    
}

.BlogCard .artical-image img {
    border-radius: 20px;
}

.ArticalDate {
    top: 0;
    left: 0;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: rgba(12, 22, 40, 0.7);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 96px;
}

.article-content h2{
    font-size: 32px;
}

.article-content p {
    color: #0C1628;
}


.open-more-btn {
  background-color: #fff;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 25px;
  padding-left: 50px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
}

.open-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  background-image: url("../images/arr-more-w.svg");
  background-color: #2C8339;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s ease-in-out;
}

.open-more-btn:hover {
  padding-right: 50px;
  padding-left: 25px;
}

.open-more-btn:hover::before {
  left: 100%;
  transform: translate(-38px, -50%);
  transition: all 0.5s ease-in-out;
}

.blog-feature-image img{
height: 390px;
border-radius: 20px;
}

.share a:hover svg path {
    fill: #2C8339;
}

.blog-full-details ul {
    list-style: none;
    padding-left: 0;
}

.blog-full-details ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.blog-full-details ul li:last-of-type{
    margin-bottom: 0;
}

.blog-full-details ul li::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-image: url('../images/circle-green.svg');
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
    background-size: contain;
    display: block;
}


@media screen and (max-width: 767px) {
.blog-details-gallery a:nth-of-type(4), .blog-details-gallery a:nth-of-type(5){
    display: none;
}

.blog-details-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.blog-details-gallery a {
    height: 180px;
}

.blog-details-gallery a:first-of-type{
    height: 370px;
}

.blog-feature-image img {
    height: 300px;
}
}