.resources .resources-header {
  padding : 34px 24px 35px;
  position: relative;
  z-index: 1;
}

.resources .container {
  max-width: 1280px;
  margin: 0 auto;
}

.resources .resources-header-inner {
  display: flex;
  justify-content: space-between;
  column-gap: 9.375%;
  row-gap: 20px;
}

.resources .resources-header .category-filter {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 6.5789%;
  width: 100%;
  max-width: 760px;
  overflow-x: auto; 
}

.resources .resources-header .category-filter::-webkit-scrollbar {
  height: 5px;
}

.resources .resources-header .category-filter::-webkit-scrollbar-thumb {
  background: rgba(255, 249, 230, 1);
}

.resources .resources-header .category-filter::-webkit-scrollbar-track {
  background: rgba(244, 232, 255, 1);
}

.resources .resources-header .category-filter .filter-tab {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 500;
  line-height: 26.49px;
  text-transform: capitalize;
  color: rgba(117, 117, 117, 1);
  cursor: pointer;
  white-space: nowrap;
}

.resources .resources-header .category-filter .filter-tab:hover {
  color: rgba(0, 0, 0, 1);
  border-bottom: 1.5px solid rgba(0, 0, 0, 1);
}

.resources .resources-header .category-filter .filter-tab.active {
  color: rgba(0, 0, 0, 1);
  border-bottom: 1.5px solid rgba(0, 0, 0, 1);
}

.resources .resources-header .sort-filter {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-left: auto;
}

.resources .resources-header .sort-filter .select {
  position: relative;
}

.resources .resources-header .sort-filter .select .select-title {
  background: rgba(244, 232, 255, 1);
  border-radius: 7px;
  padding: 13px 45px 13px 30px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 1);
  background-image: url('data:image/svg+xml,<svg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L4 4L7 1" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: 8px 5px;
  background-position: right 30px center;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resources .resources-header .sort-filter .select .options {
  position: absolute;
  min-width: 100%;
  right: 0;
  width: 100%;
  background: rgba(244, 232, 255, 1);
  border-radius: 7px;
  padding: 10px 7px;
  margin-top: 10px;
  display: none;
  z-index: 99;
  max-height: 500px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.resources .resources-header .sort-filter .select .options .option {
  width: 100%;
  background: rgba(255, 255, 255, 1);
  border-radius: 7px;
  padding: 8.5px 20px;
  font-family: Montserrat;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.resources .resources-header .sort-filter .select .options .option:hover {
  background: rgba(255, 249, 230, 1);
}

.resources .resources-header .sort-filter .select .options .option:last-child {
  margin: 0;
}

.resources .resources-header .sort-filter .select.open .options {
  display: block;
}

.resources .resources-listing {
  padding : 82px 24px 68px;
  background: linear-gradient(180deg, rgba(255, 241, 200, 0.3) 0%, rgba(181, 95, 255, 0.3) 100%);
}

.resources .resources-listing-top-vector {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 30%;
  max-width: 480px;
}

.resources .resources-listing-top-vector svg {
  display: block;
  width: 100%;
  height: 100%;
}

.resources .resources-listing-bottom-vector {
  position: absolute;
  left: 0;
  top: 25%;
  z-index: -1;
}

.resources .resources-listing-bottom-vector svg {
  display: block;
  width: 100%;
  height: 100%;
}

.resources .resources-listing .resources-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resources .resources-listing .resources-post {
  background: rgba(255, 255, 255, 1);
  border-radius: 10px;
}

.resources .resources-listing .resources-post .post-feat-img {
  height: 240px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.resources .resources-listing .resources-post .post-feat-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.5s ease;
}

.resources .resources-listing .resources-post .post-feat-img:hover img {
  transform: scale(1.1);
}

.resources .resources-listing .resources-post .post-details {
  padding: 15px 20px 25px;
}

.resources .resources-listing .resources-post .post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.resources .resources-listing .resources-post .post-meta .post-blog {
  background: rgba(218, 238, 255, 1);
  padding: 3px 15px;
  border-radius: 10px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 600;
  line-height: 27px;
  text-transform: capitalize;
  color: rgba(18, 20, 29, 1);
}

.resources .resources-listing .resources-post .post-meta .post-date {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(18, 20, 29, 1);
}

.resources .resources-listing .resources-post .post-contents {
  margin-bottom: 25px;
}

.resources .resources-listing .resources-post .post-contents h3 {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  line-height: 26.49px;
  color: rgba(18, 20, 29, 1);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.resources .resources-listing .resources-post .post-contents p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(18, 20, 29, 1);
  margin-bottom: 0;
}

.resources .resources-listing .resources-post .read-more-btn {
  display: flex;
}

.resources .resources-listing .resources-post .read-more-btn a {
  font-family: Montserrat;
  font-size: 15.14px;
  font-weight: 600;
  line-height: 22.7px;
  color: rgba(18, 20, 29, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.resources .resources-listing .resources-post .read-more-btn a .icon {
  display: flex;
  transition: .5s;
}

.resources .resources-listing .resources-post .read-more-btn a:hover .icon {
  transform: translateX(10px);
}

.resources .resources-listing .resources-post .read-more-btn a:hover {
  color: #6E2AFF;
}

.resources .resources-listing .resources-post .read-more-btn a:hover .icon svg path {
  stroke: #6E2AFF;
}


.resources .resources-listing .pagination-controls {
  margin-top: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.resources .resources-listing .pagination-controls .prev-btn svg, .resources .resources-listing .pagination-controls .next-btn svg {
  display: block;
  cursor: pointer;
}

.resources .resources-listing .pagination-controls .prev-btn svg:hover, .resources .resources-listing .pagination-controls .next-btn svg:hover {
  fill: #ffffff;
}

.resources .resources-listing .pagination-controls .prev-btn svg:hover rect, .resources .resources-listing .pagination-controls .next-btn svg:hover rect {
  stroke: #ffffff;
}

.resources .resources-listing .pagination-controls .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.resources .resources-listing .pagination-controls .page-numbers .page {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: rgba(18, 20, 29, 1);
  cursor: pointer;
}

.resources .resources-listing .pagination-controls .page-numbers .page.active {
  background: rgba(255, 255, 255, 1);
  border-radius: 40px;
  padding: 1px 7px;
}

.resources .resources-listing .no-posts {
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  margin: 0;
}
}


/*  ************************************** Responsive Style **************************************/
@media screen and (max-width: 1400px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1200px) {
  .resources .resources-listing {
    padding : 60px 15px 60px;
  }
  .resources .resources-header {
    padding : 30px 15px 35px;;
  }
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 991px) {
  .resources .resources-header .category-filter .filter-tab {
    font-size: 16px;
    line-height: 24px;
  }

  .resources .resources-listing .resources-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .resources .resources-header-inner {
    flex-wrap: wrap;
  }

  .resources .resources-listing .resources-posts {
    grid-template-columns: 1fr;
  }

  .resources .resources-header .category-filter .filter-tab {
    font-size: 15px;
    line-height: 23px;
  }

  .resources .resources-header .sort-filter .select .select-title {
    font-size: 13px;
    line-height: 20px;
    padding: 10px 40px 10px 25px;
    background-position: right 25px center;
  }

  .resources .resources-listing-top-vector {
    width: 35%;
  }
}

@media screen and (max-width: 575px) {
  .resources .resources-listing .resources-post .post-details {
    padding: 15px 15px 20px;
  }

  .resources .resources-listing .resources-post .post-meta .post-blog {
    font-size: 13px;
    line-height: 25px;
    padding: 3px 12px;
  }

  .resources .resources-listing .resources-post .post-meta .post-date {
    font-size: 13px;
    line-height: 25px;
  }

  .resources .resources-listing .resources-post .post-contents h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .resources .resources-listing .resources-post .post-contents p {
    font-size: 14px;
    line-height: 24px;
  }

  .resources .resources-listing .resources-post .read-more-btn a {
    font-size: 14px;
    line-height: 22px;
  }

  .resources .resources-header .category-filter .filter-tab {
    font-size: 14px;
    line-height: 22px;
  }

  .resources .resources-listing-top-vector {
    width: 40%;
  }
}

@media screen and (max-width: 479px) {}










