.resource_listing .filters-bar {
  background: #F2F4F8;
  display:none;
}

.resource_listing .filter-row {
  display:flex;
  justify-content:space-between;
  align-items: center;
  padding:20px 0;
  position:relative;
}

.resource_listing .search-icon {
  position:absolute;
  cursor:pointer;
  right:10px;
  bottom: 30px;
  height:16px;
}



.resource_listing select,
.resource_listing input.search {
  margin:0;
  padding:8px 10px;
  border: 1px solid #3C4757;
  border-radius: 8px;
}

.resource_listing .label-select {
  display:flex;
  align-items:center;
  gap:15px;
  width:35%;
}

.resource_listing select {
  max-width:250px;
  width:100%;
  background: url(https://7233458.fs1.hubspotusercontent-na1.net/hubfs/7233458/02%20WEBSITE/_ift_theme_2023/arrow-down-1.svg);
  background-repeat:no-repeat;
      background-size: 13px;
    background-position-x: 95%;
    background-position-y: center;
}

.resource_listing input.search {
  max-width:640px;
}


.resource-pagination {
  display:flex;
  justify-content:center;
  padding-top:10px;
}

.resource-pagination nav {
    display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 60px;
  background: #C0CBBF;
  padding:5px 10px;
}

.resource-pagination button.page,
.resource-pagination button.text-sm {
    border-radius: 50%;
    line-height: 1;
    margin: 0 0.1rem;
    padding: 5px 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #1b3156;
    background:none;
}

.resource-pagination button.text-sm {
  border:none;
  background:#fff;
}

.resource-pagination button.prev-page,
.resource-pagination button.next-page {
  border:none;
  background:none;
  padding:5px;
  box-sizing: content-box;
      position: relative;
    z-index: 2;
}

.resource-pagination button.prev-page img {
  rotate: 180deg;
  height:18px;
}

.resource-pagination button.next-page img {
  height:18px;
}

.resource-pagination .button:disabled, 
.resource-pagination button:disabled {
  opacity:.6;
}


/* Blog Article */
.blog-post-listing__listing {
  display:flex;
  flex-wrap:wrap;
  position:relative;
}
.blog-post-listing .blog-post-listing__article {
  align-items: center;
  background-color: #fff;
  display: flex;
  width: 31.5%;
  flex-direction:column;
  border-radius:25px;
  box-sizing: content-box;
  margin:10px;
  outline:none;
  transition:all .4s ease;
}

.blog-post-listing__content {
  padding:24px;
  border-radius: 16px 80px 16px 16px;
  background: var(--white, #FFF);
  margin-top: -90px;
}

.blog-post-listing__blog-name {
  color: var(--lightgreen, #63955D);
  font-size: 16px;  
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
  text-transform: uppercase;
  margin:0px 0 8px;
}


.blog-post-listing .blog-post-listing__article:hover {
  transform:translateY(-5px);
}

.blog-post-listing .buttons {
  margin-top:auto;
  padding: 0 24px 24px;
  margin-left: auto;
}
.blog-post-listing .blog-post-listing__image {
  width: 100%;
  height: 264px;
  border-radius: 24px 24px 0px 0px;
  overflow:hidden;
}

.blog-post-listing .blog-post-listing__image img {
  height: 100%;
  width: 100%;
  max-height:100%;
  max-width:100%;
  object-fit:cover;
}

.blog-post-listing a.blog-tag {
  color: #0F5946;
  font-family: Ubuntu;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  text-decoration:none;
}

.blog-post-listing .blog_tags {
  padding:16px 0;
}

.blog-post-listing h2.blog-post-listing__title {
  color: #0F5946;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin:0;
}

.blog-post-listing p.blog_content {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color:#1B2738;
  margin:0;
}


.blog-post-listing .button {
  margin:0 auto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

{# end blog article #}


@media (max-width:868px) {
  .resource_listing .filter-row {
    flex-direction:column;
    gap: 15px;
  }
  .resource_listing .label-select {
    width:100%;
  }
  .blog-post-listing__listing {
    gap:24px;
  }
  .blog-post-listing .blog-post-listing__article {
    margin:0;
    width:100%;
  }
  .blog-post-listing .buttons {
    padding:0 24px;
  }
}

