.fiere_posts_grid_w{
    padding-bottom: 6%;
}
.fiere_posts_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 40px;
}
.fiere_post_item {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.fiere_post_excerpt p,
.fiere_post_item h5,
.fiere_post_item_btn a
{
    font-family: "Roboto", Sans-serif;
}
.fiere_post_item h5 {
    font-size: 20px;
    font-weight: 600;
    color: #b00900;
    text-transform: uppercase;
    line-height: 1;
}
.fiere_post_item h5,
.fiere_post_excerpt p{
    margin: 0;
}
.fiere_post_excerpt{
    margin-bottom: 5px;
    flex-grow: 1;
}
.fiere_post_excerpt p {
    font-size: 25px;
    line-height: 24px;
    font-weight: 200;
    color: rgb(10, 0, 0);
    text-transform: lowercase;
}

.fiere_post_item_btn a {
    display: inline-flex;
    color: #000000;
    border: 1px solid #000000;
    font-weight: 500;
    border-radius: 2px;
    font-size: 13px;
    padding: 10px 20px;
    box-shadow: none !important;
    line-height: 1;
}

.fiere_post_item_btn a:hover {
    background: #b00900;
    color: #fff;
    border-color: #b00900;
    box-shadow: none !important;
}

@media only screen and (max-width: 1280px) {
  .fiere_posts_grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
	gap:35px;
  }
}
@media only screen and (max-width: 1024px) {
  .fiere_posts_grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
	gap:30px;
  }
}
@media only screen and (max-width: 991px) {
    .fiere_post_item h5 {
        font-size: 16px;
    }
    .fiere_post_excerpt p {
        font-size: 16px;
        line-height: 21px;
    }
}
@media only screen and (max-width: 768px) {
.fiere_posts_grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}
@media only screen and (max-width: 540px) {
.fiere_posts_grid {
        grid-template-columns: repeat(1, minmax(220px, 1fr));
    }
}