/*********************************/
/*  START :: Post Grid + Filter  */
/*********************************/

/********* START :: Variables  *********/
:root {
  --white: #fff;
  --black: #000;
  --Text-Black: var(--Tundra-Dark);
  --btn-accent: var(--Orange-Sky);
  --purple-dark: #542056;
  --purple-medium: #6f2877;
  --orange: #f56620;
  --gray-light: #f8f6f4;
  --Secondary-Light: #ddd;

  /* --font-content: var(--font-content);
  --font-headline: var(--font-headline); */

  --arrow-blue: url("/wp-content/uploads/Icon-feather-chevron-down.svg");
  --chevron: url("/wp-content/uploads/Icon-feather-chevron-down.svg");
  --plus: url(/wp-content/uploads/action-plus.svg);
  --minus: url(/wp-content/uploads/action-minus.svg);
  --action-search: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3e%3cpath d='M16 16L21 21' stroke='%23745E53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M1 9.57145C1 14.3053 4.83757 18.1429 9.57145 18.1429C11.9425 18.1429 14.0887 17.1802 15.6405 15.6243C17.1869 14.0739 18.1429 11.9343 18.1429 9.57145C18.1429 4.83757 14.3053 1 9.57145 1C4.83757 1 1 4.83757 1 9.57145Z' stroke='%23745E53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
/********* END   :: Variables  *********/

/********* START   :: loading for post filter *********/
.loading {
  display: none;
  transition: all 0.5s ease;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%) scale(0.7);
  background: var(--Tundra-Dark);
  padding: 20px 20px 10px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--white);
  pointer-events: none;
  min-height: 130px;
}
.loading h2 {
  text-align: center;
  color: var(--white);
}
.loading span {
  position: relative;
  opacity: 0;
}
.loading h2 img {
  width: 70px;
  height: 70px;
  margin: 10px 10px 10px 20px;
}

.loading span:first-child {
  animation-name: show;
  animation-duration: 1.5s;
  animation-delay: 0;
  animation-iteration-count: infinite;
}
.loading span:nth-child(2) {
  animation-name: show;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
}
.loading span:nth-child(3) {
  animation-name: show;
  animation-duration: 0.5s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/********* END   :: loading for post filter *********/
/********* START :: post filter *********/
body:not(.fl-builder-edit) .fl-row.post_grid_filters:after {
  content: "";
  background: ;
}

body:not(.fl-builder-edit) .fl-row.post_grid_filters {
  position: relative;
  z-index: 1;
}

body:not(.fl-builder-edit) .fl-row.post_grid_filters > .fl-row-content-wrap {
  overflow: initial;
}

.archive-info,
.archive-filter {
  background-color: #fefaf8;
}
.fl-archive--filter-clear button {
  cursor: pointer;
  text-decoration: underline;
}

.fl-archive--header .fl-archive--header-img {
  width: 38.4%;
  float: right;
}

.fl-archive--header .fl-archive--header-title {
  width: 100%;
  margin-top: 73px;
  margin-bottom: 23px;
}

.fl-archive--header .fl-archive--header-title h1 {
  color: var(--black);
  margin: 0;
  text-align: center;
}

.fl-archive--header .fl-archive--header-description {
  text-align: center;
  max-width: 830px;
  margin: 0 auto 0px;
  padding-bottom: 63px;
}

.filter-form--content.hidden {
  max-height: 1px;
  opacity: 0;
}

.filter-form--header {
  display: flex;
  align-items: center;
  /* padding-top:120px; */
}
.filter-form--content {
  transition: all 0.25s linear;
  clear: both;
  display: flex;
  overflow: hidden;
  align-content: flex-start;
  opacity: 0;
  max-height: 0px;
  position: relative;
}
.filter-form--content.visible {
  padding-top: 30px;
  opacity: 1;
  max-height: 1000px;
  overflow: inherit;
}

.fl-archive--filter.closed {
  background-color: var(--white);
}

.fl-archive--filter {
  background-color: var(--white);
  width: 100%;
  clear: both;
  border-radius: 6px;
  padding: 27px 42px;
}

.fl-archive--filter-refine svg {
  width: 17px;
  margin-right: 10px;
  margin-top: -4px;
}

.visiblefilters {
  opacity: 0;
  visibility: hidden;
  transform: rotate(90deg);
  transition: all 0.15s ease;
}
.hiddenfilters {
  margin-bottom: 3px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
  position: absolute;
  top: 20px;
  left: 0;
}

.visiblefilters.active,
.hiddenfilters.active {
  transform: rotate(-180deg);
  opacity: 1;
  visibility: visible;
}

.fl-archive--filter-refine svg#hiddenfilters {
  display: none;
}

.fl-archive--filter-refine {
  width: 50%;
  float: left;
  cursor: pointer;
}

.fl-archive--filter-refine span {
  font-family: var(--font-headline);
  color: var(--black);
  position: relative;
}
.fl-archive--filter-clear button {
  font-family: var(--font-headline);
  color: var(--btn-accent);
  text-decoration: underline;
  font-weight: 700;
  border: 0;
  background: transparent;
}
.fl-archive--filter.closed .fl-archive--filter-clear {
  /*display:none!important;*/
}

.fl-archive--filter-items {
  float: left;
  width: 60%;
  vertical-align: text-top;
  display: flex;
  flex-wrap: wrap;
}

div.filter-item {
  list-style-type: none;
  margin: 0;
  /* padding: 0px 50px 14px 0; */
  border-radius: 30px;
  display: inline-block;
  position: relative;
  width: 50%;
}

div.filter-item.theme {
  padding: 14px 30px 14px 7px;
}

.fl-archive--filter-refine span {
  font-family: var(--font-headline);
  color: var(--black);
}
.fl-archive--filter-clear {
  width: 50%;
  float: right;
  text-align: right;
}

.fl-archive--filter-items {
  float: left;
  width: 60%;
  vertical-align: text-top;
  display: flex;
  flex-wrap: wrap;
  /* position:absolute;
    top:120px; */
  position: relative;
  top: unset;
}

div.filter-item {
  list-style-type: none;
  margin: 0;
  /* padding: 0px 50px 14px 0; */
  border-radius: 30px;
  display: inline-block;
  position: relative;
  width: 33.3%;
}

div.filter-item.theme {
  padding: 14px 30px 14px 7px;
}

div.filter-item .filter-item--label-title,
div.fl-archive--filter-search .filter-item--label-title {
  margin: 0;
  color: var(--black);
  font-size: 1.111rem;
  line-height: 2.056rem;
  font-family: var(--font-headline);
  position: relative;
  width: 100%;
}

.fl-module-button.white.arrowlink a.fl-button:hover {
  background-color: transparent;
}
.fl-module-button.white.arrowlink a.fl-button:hover span {
  color: var(--btn-accent);
}
.fl-module-button.white.arrowlink a.fl-button::after {
  content: var(--arrow-blue);
}

div.filter-item .filter-item--label-title.visible {
  z-index: 15;
}

.filter-item--label-title img {
  float: right;
}
.fl-archive--filter-search > div {
  position: relative;
}
.fl-archive--filter-search > div:not(.category-filters--go):after {
  content: url(/wp-content/uploads/noun_Search_3107569.svg);
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.filter-item ul {
  list-style-type: none;
  margin: 0;
  padding: 7px 0 17px;
  z-index: 5;
}

.filter-item ul li {
  padding: 0px 0;
  font-size: 16px;
  font-size: 0.888rem;
  line-height: 28px;
  line-height: 1.55rem;
  cursor: pointer;
  font-family: var(--font-headline);
  color: var(--Text-Black);
}
.filter-item ul li label {
  font-weight: 400 !important;
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
}
.filter-item ul li label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.filter-item ul li label .checkmark {
  position: absolute;
  top: 4px;
  left: 5px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: solid 1px var(--black);
  border-radius: 2px;
}

body:not(.fl-builder-edit) .filter_taxo_item > label:focus {
  outline-offset: -1px;
}

.filter-item ul li label input:checked ~ .checkmark {
  background-color: var(--btn-accent);
  border: solid 1px var(--btn-accent);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filter-item ul li label input:checked ~ .checkmark:after {
  display: block;
  /* display: none; */
}
.filter-item ul li label .checkmark:after {
  left: 6px;
  top: 7px;
  width: 14px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(-45deg) scalex(-1);
  -ms-transform: rotate(-45deg) scalex(-1);
  transform: rotate(-45deg) scalex(-1);
}
.category-filters--go {
  display: inline-block;
}

.category-filters--go button {
  background-color: transparent;
  border-radius: 50px;
  color: var(--btn-accent);
  border: 1px solid var(--btn-accent);
  background-color: var(--white);
  padding: 23px 88px 23px 37px;
  font-family: var(--font-content);
  font-weight: 700;
  font-size: 14px;
  font-size: 0.7727rem;
  line-height: 19.64px;
  line-height: 1.0909rem;
  min-width: inherit !important;
  transition: 0.2s all;
  transform: scale(1);
}

.category-filters--go button.disable {
  background-color: var(--gray-light);
  border: 1px solid var(--gray-light);
}
div.loadMore button,
div.loadMore button:hover,
div.loadMore button:focus {
  background-color: transparent;
  border-radius: 50px !important;
  border: 1px solid var(--Tundra-Rocky);
  color: var(--Tundra-Rocky);
  display: block;
  font-size: 18px;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: normal;
  margin: 36px auto 0;
  min-width: inherit !important;
  padding: 20px 40px;
  transform: scale(1);
  transition: 0.2s all;
}
div.loadMore button:hover {
    transform: scale(1.05);
}
div.loadMore button.page_btn {
  margin: 36px 0 0;
  padding: 23px 30px;
}
div.loadMore {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.category-filters--go button:hover,
div.loadMore button:hover {
  transform: scale(1.05);
}
.category-filters--go button .a_arrow {
  padding-left: 39px;
}
.category-filters--go button:hover,
.category-filters--go button:active,
.category-filters--go button:focus {
  border-radius: 500px !important;
}
/* div.loadMore button:hover {
  border-color: var(--btn-accent);
  background-color: var(--btn-accent);
  color: #fff;
} */

.category-filters--go button:active,
.category-filters--go button:focus {
  outline: var(--btn-accent) solid 2px;
}

.fl-archive--filter-search {
  width: 40%;
  float: left;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fl-archive--filter-search input::placeholder {
  color: #727271;
  font-family: var(--font-content);
}

.fl-archive--filter-search input {
  height: 32px;
  border: none;
  font-family: var(--font-content);
  border-bottom: 1px solid var(--btn-accent);
  border-radius: 0;
  background-color: transparent;
  color: var(--btn-accent);
  padding-left: 30px;
  max-width: 320px;
  font-size: 16px;
  font-size: 0.888rem;
  line-height: 28px;
  line-height: 1.556rem;
}

.fl-archive--filter-search input[type="text"]:focus {
  background-color: transparent;
  border-bottom: 1px solid var(--font-headline);
  outline: #275dc5 solid 2px;
}

.fl-archive--filter-items ul li label {
  margin: 0;
  padding-left: calc(26px + 16px);
  position: relative;
}

.fl-archive--filter-items ul li label input {
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 5px;
  position: absolute;
  height: 15px;
  width: 15px;
  left: -25px;
  top: -1px;
}
.container input:checked ~ .checkmark {
  background-color: var(--btn-accent);
}
.post-type-archive .fl-archive--content {
  margin: 72px -2.5% 95px;
  display: flex;
  flex-flow: wrap;
}
.posts-container {
  transition: all 0.5s ease;
}
.posts-container .posts {
  margin-bottom: 0;
}
.posts-container .post {
  display: none;
}

.posts-container .post a {
  text-decoration: none;
}

.posts-container .post a:hover,
.posts-container .post a:focus {
  text-decoration: none;
}

.fl-archive .fl-archive--content {
  margin-top: 66px;
  margin-bottom: 110px;
}
.fl-archive--content .posts {
  margin-bottom: 0;
}
.fl-archive--content .post {
  display: none;
}

.fl-archive--content .post a {
  text-decoration: none;
}

.fl-archive--content .post a:hover,
.fl-archive--content .post a:focus {
  text-decoration: none;
}
.post-list {
  padding: 16px 32px;
  border-top: 1px solid #b9b7b3;
  display: none;
}
.active.post-list,
.active.post {
  display: block;
}
.posts-list {
  padding: 66px 0;
  cursor: pointer;
}

.ajax_filter_noresults {
  margin: 44px;
}
.ajax_filter_noresults p {
  text-align: center;
}

p.h2.noresult {
  text-align: center;
  font-size: 26px;
  padding: 20px;
  border-radius: 20px;
  width: 100%;
  position: absolute;
  left: 0;
  background: #fff;
  height: 200px;
}
/********* END   :: post filter *********/

/****general filter bar****/
.post.external_post {
  cursor: default !important;
}
.fl-archive--filter-search input {
  background-image: var(--action-search);
  background-position: 16px center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 8px;
  border: 1px solid var(--Secondary-Light);
  color: var(--Text-Black);
  font-size: 18px;
  font-size: 1.13rem;
  height: 70px;
  line-height: 30px;
  line-height: 1.88rem;
  max-width: unset;
  padding-left: 45px;
}
.fl-archive--filter-search input[type="text"]:focus {
  border: 2px solid var(--btn-accent);
  border-bottom: 2px solid var(--btn-accent);;
  border-radius: 8px;
}
.fl-archive--filter-search input::placeholder {
  color: var(--Text-Black);
  opacity: 0.5;
}
.category-filters--go button {
  background-color: var(--btn-accent);
  border-color: var(--btn-accent);
  border-radius: 50px;
  color: var(--Text-Black);
  display: inline-block;
  font-size: 18px;
  font-size: 1.13rem;
  line-height: normal;
  padding: 20px 40px;
  width: auto;
}
.category-filters--go button .a_arrow {
  display: none;
}
div.filter-item .filter-item--label-title {
    color: var(--Text-Black);
    font-size: 22px;
    font-size: 1.38rem;
    font-weight: 700;
    transition: all 0.5s ease;
}
div.filter-item {
  /* padding: 0px 30px 14px 0; */
  border-radius: 0px;
  width: 50%;
}
.filter-item ul li label .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #fff;
    border: solid 2px var(--Text-Black);
    border-radius: 2px;
}

.filter-item ul li label input:checked ~ .checkmark {
  background-color: var(--Text-Black);
  border: solid 1px var(--Text-Black);
}

/*
.filter_taxo_item {
    transition:all .25s ease;
    opacity: 0.5;
}
.filter_taxo_item.active {opacity: 1;}
*/

.filter_taxo_item span {
  transition: all 0.25s ease;
  opacity: 0.75;
}
.filter_taxo_item:hover span {
  opacity: 1;
}
.filter_taxo_item input:checked ~ span {
  opacity: 1;
}

.filter-item ul li {
  margin-bottom: 8px;
}
.filter-item ul li label {
  /* padding-left: 30px; */
  font-size: 18px;
  font-size: 1.13rem;
  line-height: 30px;
  line-height: 1.88rem;
  font-family: var(--font-content);
  font-weight: 400 !important;
}
.filter-item input:focus + span {
  outline: 0;
  outline-offset: 5px;
}
.filter-item ul li label .checkmark:after {
  left: 6px;
  top: 7px;
  width: 14px;
  height: 8px;
}
/****new style filter bar****/
.filter-form--header {
  /* display: none!important; */
}
.fl-archive--filter-clear button {
  align-items: center;
  background-color: transparent;
  background-image: linear-gradient(var(--Text-Black), var(--Text-Black));
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  border: none;
  color: var(--Text-Black);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-size: 1.13rem;
  font-weight: 700;
  gap: 12px;
  line-height: 24px;
  line-height: 1.5rem;
  margin-top: 36px;
  padding: 0 0 5px;
  text-decoration: none;
}
.fl-archive--filter-clear button:after {
    background-size: contain;
    background: var(--plus) no-repeat center;
    content: '';
    display: inline-block;
    height: 24px;
    transform: rotate(45deg);
    width: 24px;
}
.fl-archive--filter-clear button:hover {
    animation: 0.3s underline ease-in;
}
.unfoldable .filter-form--content.hidden {
  display: flex !important;
  max-height: unset;
  opacity: 1;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}
.unfoldable .fl-archive--filter-refine {
  display: none;
}
.unfoldable.fl-archive--filter.closed {
  background-color: transparent;
  box-shadow: none;
}
.unfoldable .fl-archive--filter-clear {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.unfoldable .fl-archive--filter-search {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 26px 36px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}
.unfoldable .fl-archive--filter-search > div {
  display: flex;
  align-items: center;
  justify-content: end;
}
.unfoldable .fl-archive--filter-search > div label,
div.filter-item .filter-item--label-title,
div.fl-archive--filter-search .filter-item--label-title {
  flex-basis: 125px;
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 22px;
  font-size: 1.38rem;
  line-height: 34px;
  line-height: 2.13rem;
  font-weight: 700;
  font-family: var(--font-content);
  color: var(--Text-Black);
  margin-bottom: 0;
}
.unfoldable .fl-archive--filter-items {
  width: 100%;
  gap: 16px;
  align-items: flex-start;
}
.unfoldable .fl-archive--filter-search > div:not(.category-filters--go) {
  flex-grow: 1;
}
.unfoldable .category-filters--go {
  margin-top: 0;
  /* flex-basis: 225px; */
  flex-shrink: 0;
  flex-grow: 0;
}
.unfoldable div.filter-item {
  /* padding: 36px 44px; */
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}
.unfoldable div.filter-item {
  width: unset;
  flex: calc(33.2% - 10px) 0 0;
  overflow: hidden;
}
.unfoldable div.filter-item .filter-item--label-title {
  /* justify-content: space-between; */
  /* align-items: center;
  cursor: pointer;
  display: flex;
  gap: 26px;
  padding-bottom: 0px; */

    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    gap: 26px;
    padding: 26px 36px;
}
.unfoldable div.filter-item .filter-item--label-title:before{
    background: var(--plus) center center / contain no-repeat;
    content:"";
    display: block;
    height: 24px;
    transform: rotate(0deg);
        transition: all 0.25s ease;
    width: 24px;
}
.unfoldable div.filter-item.visible .filter-item--label-title:before{
    background: var(--minus) center center / contain no-repeat;
    transform: rotate(-180deg);
    transition: all 0.25s ease;
}
.unfoldable div.filter-item.visible .filter-item--label-title:before {
  transform: rotate(180deg);
}
/* .unfoldable div.filter-item.visible .filter-item--label-title:after{
    transform: rotate(180deg);
} */
.unfoldable div.filter-item .hint {
    font-weight: 600;
    margin-bottom: 0;
    max-height: 0px;
    opacity: 0;
    padding: 0 36px;
    transition: all 0.25s ease;
}
.unfoldable div.filter-item.visible .hint {
    box-sizing: content-box;
    color: var(--Text-Black);
    max-height: 40px;
    opacity: 1;
    padding-bottom: 16px;
    /* padding-top: 26px; */
}
.unfoldable .filter-item ul {
  padding: 0px 0 0px;
  column-count: 2;
}
.unfoldable form {
  flex-direction: column;
  gap: 36px;
  display: flex;
}
.unfoldable .filter-item ul {
  clear: both;
  display: none;
  flex-direction: column;
  gap: 8px;
  max-height: 1px;
  opacity: 0;
  overflow: hidden;
  padding: 10px 36px 26px;
  transition: all 0.25s linear;
}
.unfoldable .filter-item ul.visible {
    display: flex;
}
.unfoldable .filter-item.visible ul {
  opacity: 1;
  max-height: 1000px;
  overflow: inherit;
}
.unfoldable .filter-item.visible .unfoldable .posts.card {
  margin: 0;
}
.shape-divider.top-left .fl-col-content {
  border-top-left-radius: 100px !important;
}
.fl-archive--filter.unfoldable {
  border-radius: 0px;
  padding: 0px;
}
.active.post-list,
.active.post {
    display: block;
  opacity: 0;
  transition: all 0.5s ease;
}
.active.visual.post-list,
.active.visual.post {
  opacity: 1;
}
.fl-archive--filter-search > div:not(.category-filters--go):after {
  display: none;
}

/* div.loadMore button,
div.loadMore button:hover,
div.loadMore button:focus {
  padding: 18px 36px;
  margin-top: 44px;
  font-size: 20px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.4rem;
  color: white;
  background-color: var(--btn-accent);
} */

.post_grid_results.resources > .fl-row-content-wrap {
  background-image: linear-gradient(180deg, var(--btn-accent) 200px, #ffffff 0%);
  min-height: 500px;
  align-items: flex-start;
}

.post_grid_results.newsevents > .fl-row-content-wrap {
  background-image: linear-gradient(180deg, var(--btn-accent) 200px, #ffffff 0%);
  min-height: 500px;
  align-items: flex-start;
}
/*********************************/
/*  END   :: Post Grid + Filter  */
/*********************************/
/**************************/
/*  START :: Post Styles  */
/**************************/

/**************************/
/*  END   :: Post Styles  */
/**************************/

/*********************************************/
/*  START :: Post Grid + Filter - RESPONSIVE */
/*********************************************/

/* =================================================
                BB "EXTRA LARGE" DESKTOP, only
================================================= */
@media screen and (min-width: 1366px) {
}

@media only screen and (max-width: 1224px) {
  /* .filter-item ul li label {
    padding-left: 25px;
  } */
  /* .unfoldable .fl-archive--filter-search > div label {
    flex-basis: 225px;
  } */
  /* .unfoldable .category-filters--go {
    flex-basis: 175px;
  } */
  .posts.card .post .infoBox,
  .post-card .post .infoBox {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 3px;
  }
  .posts.card .post .postBox .postTop,
  .post-card .post .postBox .postTop {
    flex-basis: 150px;
  }
  .posts.card .post h3.h4,
  .post-card .post h3.h4 {
    font-size: 24px;
    font-size: 1.2rem;
    line-height: 36px;
    line-height: 1.8rem;
    margin-bottom: 16px;
  }
  .posts.card .post .date,
  .post-card .post .date {
    font-size: 14px;
    font-size: 0.7rem;
    line-height: 16px;
    line-height: 0.8rem;
    flex-basis: unset;
  }
  .posts.card .tags,
  .posts.card .post:hover .tags,
  .post-card .tags,
  .post-card .post:hover .tags {
    font-size: 14px;
    line-height: 16px;
  }
}

/* =================================================
                BB "LARGE" DESKTOP, and up
================================================= */
@media only screen and (min-width: 992px) {
}

/* =================================================
                BB "LARGE" DESKTOP, only
================================================= */
@media only screen and (min-width: 992px) and (max-width: 1366px) {
}

/* =================================================
                TABLET, and down
================================================= */
@media only screen and (max-width: 992px) {
  /*********************************/
  /*  START :: Post Grid + Filter  */
  /*********************************/
  /*****filter*******/
  .post img {
    height: 300px;
  }

  .posts,
  .post-wedget {
    display: grid;
    flex-wrap: initial;
    grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 3fr);
    gap: 25px;
    width: 100%;
  }

  .imgBox .defaultImg {
    height: 300px;
  }

  .infoBox h3 {
    margin: 16px 0 8px;
  }

  .post-list .postLeft {
    margin-top: 0px;
  }

  .posts .post .tags {
    margin-right: 13px;
  }

  .infoBox .h4 {
    font-size: 24px;
    font-size: 1.2rem;
    line-height: 36px;
    line-height: 1.8rem;
  }
  /********post filter********/
  .fl-archive--filter-items {
    float: left;
    width: 100%;
    vertical-align: text-top;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    top: unset;
  }

  div.filter-item {
    list-style-type: none;
    margin: 0;
    padding: 0px 0px 0;
    display: inline-block;
    position: relative;
    width: 100%;
  }

  /* .filter-item ul li {
    padding-top: 8px;
  } */
  .posts.card .post .postBox .imgBox,
  .post-card .post .postBox .imgBox {
    flex-direction: row;
  }
  .fl-archive--filter-search input {
    height: 50px;
    /* padding-left: 18px; */
    padding-right: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .posts.card .post .postBox .postTop,
  .post-card .post .postBox .postTop {
    flex-basis: 143px;
  }
  /* .posts.card .post img,
  .post-card .post img {
    max-width: 152px;
    max-height: 143px;
  } */
  .posts.card .post .postBox,
  .post-card .post .postBox {
    flex-direction: column;
    justify-content: flex-start;
  }

  body:not(.fl-builder-edit) .background-shape-resp .fl-col-group:nth-child(2),
  .resource-col .fl-col-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
    gap: 36px 36px;
  }
  .unfoldable div.filter-item {
    width: 100%;
    padding: 22px 42px;
  }
  .unfoldable div.filter-item.visible .hint {
    padding-top: 16px;
    padding-bottom: 8px;
  }
  .card.posts,
  .post-card {
    display: grid;
    gap: 16px 16px;
  }
  .posts.card .post .infoBox,
  .post-card .post .infoBox {
    flex-direction: row;
    align-items: center;
  }
  .unfoldable .fl-archive--filter-search {
    /* flex-direction: column;
    align-items: center; */
    padding: 16px 36px;
    gap: 10px;
  }

  .unfoldable .fl-archive--filter-search > div label {
    flex-basis: unset;
    font-size: 22px;
    font-size: 1.38rem;
    line-height: 34px;
    line-height: 2.13rem;
    flex-basis: 124px;
  }
  .category-filters--go button {
    width: 100%;
    padding: 15px 30px;
    font-size: 18px;
    font-size: 0.95rem;
    line-height: 26px;
    line-height: 1.37rem;
    width: 100%;
  }
  .unfoldable div.filter-item .filter-item--label-title {
    font-size: 21px;
    font-size: 1.31rem;
    line-height: 24px;
    line-height: 1.5rem;
    padding: 16px;
  }
  .unfoldable div.filter-item {
    width: 100%;
    padding: 0;
  }
  .unfoldable div.filter-item .hint {
    padding-left: 16px;
    padding-right: 16px;
  }
  .unfoldable div.filter-item.visible .hint {
    padding-top: 8px;
    padding-bottom: 0px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .unfoldable .filter-item ul { 
    padding-left: 16px;
    padding-right: 16px;
  }
  .unfoldable .filter-item.visible ul { 

  }
  .unfoldable form {
    gap: 16px;
  }
  .posts.card .post,
  .post-card .post {
    border-radius: 20px;
  }
  .filter-item ul li {
    margin-bottom: 0px;
    /* padding-top: 8px; */
  }
  /* .filter-item ul li label .checkmark {
    top: 6px;
  } */
  /*********************************/
  /*  END   :: Post Grid + Filter  */
  /*********************************/
  /**************************/
  /*  START :: Post Styles  */
  /**************************/
  /**************************/
  /*  END   :: Post Styles  */
  /**************************/
}

/* =================================================
                MOBILE, only
================================================= */
@media only screen and (max-width: 768px) {
  /*********************************/
  /*  START :: Post Grid + Filter  */
  /*********************************/
  /***posts***/
  .post img {
    width: 100%;
    object-fit: cover;
    transition: all 1s ease;
    height: 300px;
  }

  .hiddenfilters {
    margin-bottom: 0px;
  }

  .post_btn {
    margin-top: 16px;
  }

  div.loadMore {
    margin-top: 26px;
  }

  .posts-list {
    padding-bottom: 44px;
  }

  .fl-archive--content .posts {
    margin-bottom: 0;
  }

  .fl-archive .fl-archive--content {
    margin-top: 66px;
    margin-bottom: 36px;
  }
  .unfoldable div.filter-item {
    border-radius: 8px;
  }
  .category-filters--go button,
  div.loadMore button,
  .colorbgButton a.fl-button {
    padding: 15px 26px;
  }

  .category-filters--go {
    margin-top: 13px;
  }

  .fl-archive--header .fl-archive--header-title {
    width: 100%;
    margin-top: 36px;
    margin-bottom: 23px;
  }

  .fl-archive--filter-search {
    width: 100%;
  }
  .unfoldable .fl-archive--filter-search {
    flex-direction: column;
    align-items: center;
    padding: 16px;
  }
  .unfoldable .fl-archive--filter-search > div {
    width: 100%;
    flex-basis: 100%;
    justify-content: start;
  }
  .unfoldable .fl-archive--filter-search > div:not(.category-filters--go) {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .fl-archive--header .fl-archive--header-description {
    padding-bottom: 23px;
  }
  
  .fl-archive--filter {
    padding: 21px 18px 26px;
  }

  .fl-archive--filter-refine {
    width: 70%;
  }

  .fl-archive--filter-items {
    flex-direction: column;
  }

  .fl-archive--filter-refine .h3,
  div.filter-item .filter-item--label-title,
  div.fl-archive--filter-search .filter-item--label-title {
    font-size: 18px;
    font-size: 1rem;
    line-height: 30px;
    line-height: 1.667rem;
  }

  .fl-archive--filter-clear {
    width: 30%;
  }

  .filter-form--content {
    padding-top: 13px;
    flex-direction: column;
  }

  .filter-item ul {
    padding: 0px 0 12px;
  }

  .filter-item ul li label .checkmark {
    top: 2px;
  }
  .infoBox h3 {
    margin: 16px 0 16px;
  }

  .post-wedget,
  .posts {
    display: grid;
    flex-wrap: initial;
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
    width: 100%;
  }
  /***********post grid*************/
  .post0.post-row .post-col {
    width: 100%;
    float: left;
  }
  .post0.post-row .post-col.title-col {
    margin-right: 0;
  }
  .post0.post-row .post-col {
    width: 100%;
    float: left;
  }
  .post-grid {
    grid-template-areas:
      "post0"
      "post1"
      "post2";
    gap: 36px 54px;
  }
  .post2 img,
  .post1 img {
    width: 100%;
    margin-bottom: 26px;
    height: 300px;
  }
  .post2 .defaultImg,
  .post1 .defaultImg {
    margin-bottom: 26px;
    height: 300px;
  }
  .title-col h3 {
    font-size: 28px;
    font-size: 1.556rem;
    line-height: 36px;
    line-height: 2rem;
  }
  .post0 img {
    margin-bottom: 26px;
    height: 300px;
  }
  .post0 .defaultImg {
    margin-bottom: 26px;
    height: 300px;
  }
  .post0 .post-desc {
    margin-bottom: 16px;
  }

  .hiddenfilters {
    margin-bottom: 0px;
  }
  .post_btn {
    margin-top: 16px;
  }
  div.loadMore {
    margin-top: 26px;
  }
  .posts-list {
    padding-bottom: 44px;
  }
  .fl-archive--content .posts {
    margin-bottom: 0;
  }
  .fl-archive .fl-archive--content {
    margin-top: 66px;
    margin-bottom: 36px;
  }
  .category-filters--go button,
  div.loadMore button,
  .colorbgButton a.fl-button {
    padding: 15px 26px;
    width: auto;
  }
  .category-filters--go {
    margin-top: 13px;
  }
  .fl-archive--header .fl-archive--header-title {
    width: 100%;
    margin-top: 36px;
    margin-bottom: 23px;
  }
  .unfoldable .fl-archive--filter-search {
    border-radius: 8px;
    gap: 10px;
    width: 100%;
  }
  .fl-archive--filter-search input {
    background-position: 8px center;
    padding: 8px 16px;
    padding-left: 36px;
  }
  .unfoldable .fl-archive--filter-search > div label {
    flex-basis: unset;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 30px;
    line-height: 1.88rem;
  }
  .fl-archive--header .fl-archive--header-description {
    padding-bottom: 23px;
  }
  .fl-archive--filter {
    padding: 21px 18px 26px;
  }
  .fl-archive--filter-refine {
    width: 70%;
  }
  .unfoldable .fl-archive--filter-refine .h3,
  .unfoldable div.filter-item .filter-item--label-title,
  .unfoldable div.fl-archive--filter-search .filter-item--label-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 30px;
    line-height: 1.88rem;
    padding: 16px;
  }
  
  .unfoldable div.filter-item .hint {
    padding-left: 16px;
    padding-right: 16px;
  }
  .unfoldable div.filter-item.visible .hint {
    padding-top: 0;
    padding-bottom: 16px;
  }
  .unfoldable .filter-item ul {
    padding-left: 16px;
    padding-right: 16px;
  }
  .unfoldable .filter-item.visible ul {
    padding-top: 0;
    padding-bottom: 16px;
  }
  .fl-archive--filter-clear {
    width: 30%;
  }
  .filter-form--content {
    padding-top: 13px;
    flex-direction: column;
  }
  .filter-item ul {
    padding: 0px 0 12px;
  }
  .filter-item ul li label .checkmark {
    top: 2px;
  }
  .infoBox h3 {
    margin: 16px 0 16px;
  }
  .post-wedget,
  .posts {
    display: grid;
    flex-wrap: initial;
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
    width: 100%;
  }

  .smallLeft a.fl-button,
  .smallLeft .fl-button-wrap {
    text-align: left;
  }
  .fl-archive--filter-refine {
    width: 70%;
  }
  .fl-archive--filter-clear {
    width: 30%;
  }
  .posts.list .post {
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .posts.list img {
    width: 100%;
    height: 100%;
  }
  .posts.list .postBox .imgBox {
    width: 100%;
    height: 240px;
    flex-basis: 240px;
    flex-shrink: 0;
    max-width: 320px;
  }
  body:not(.fl-builder-edit) .background-shape-resp .fl-col-group:nth-child(2) {
    gap: 16px 16px;
  }
  .posts.card .post,
  .post-card .post {
    padding: 16px;
    border-radius: 20px;
  }
  .fl-archive--filter {
    padding: 16px;
  }
  /*********************************/
  /*  END   :: Post Grid + Filter  */
  /*********************************/
  /**************************/
  /*  START :: Post Styles  */
  /**************************/
  .posts.card .post .postBox .postTop,
  .post-card .post .postBox .postTop {
    flex-basis: unset;
  }
  .card.posts,
  .post-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px 16px;
  }
  .posts.list .postTop {
    flex-direction: column-reverse;
  }
  /**************************/
  /*  END   :: Post Styles  */
  /**************************/
}

@media only screen and (max-width: 600px) {
  /**************************/
  /*  START :: Post Styles  */
  /**************************/
  .posts.list .post {
    padding-left: 0;
    padding-right: 0;
  }
  .fl-archive--filter-refine span {
    font-size: 20px;
    line-height: 32px;
  }
  .posts.card .post .postBox,
  .post-card .post .postBox {
    flex-direction: column;
  }
  .unfoldable .filter-item ul {
    column-count: 1;
  }
  /**************************/
  /*  END   :: Post Styles  */
  /**************************/
}
/*********************************************/
/*  END   :: Post Grid + Filter - RESPONSIVE */
/*********************************************/
