.listing-ce {
  padding: 24px 0 64px;
}
.additional-information{
  display:none;
}
.filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background-color: #FFF;
  border-radius: 10px;
  max-width: 1163px;
  margin: 0 auto 48px;
  padding: 24px;
}
.filter-wrapper .search-box{
  /*   min-width: 250px;
  max-width: 345px; */
  min-width: 200px;
  flex: 1;
  position: relative;
}
.filter-wrapper .search-box .magnifying-glass {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  cursor: pointer;
}
.filter-wrapper .search-box .magnifying-glass svg {
  width: 100% !important;
  height: 100% !important;
}

.filter-wrapper .search-box input {
  width: 100%;
  padding: 16px 44px;
  background-color: #EBF2FF;
  border: none;
  border-bottom: 1px solid #777A7E;
  color: #141415;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Fustat', sans-serif;
  outline: none;
}
.filter-wrapper .filters {
  width: 100%;
  max-width: max-content;
}
.filter-wrapper .filters-mobile {
  display: none;
}
.filter-wrapper .filters-desktop {
  display: block;
}
.filter-wrapper .filter-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.filter-wrapper .filter-list li {
  padding: 14.5px 24px;
  background-color: transparent;
  border-radius: 100px;
  color: #141415;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: 'Fustat', sans-serif;
  text-wrap: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}
.filter-wrapper .filter-list li:first-child{

}
.filter-wrapper .filter-list li:nth-child(2){

}
.filter-wrapper .filter-list li:hvoer {
  color: #FFF;
  background-color: #00235C;
}
.filter-wrapper .filter-list li.active {
  color: #FFF;
  background-color: #00235C;
}
.filter-wrapper .filter-list li.active:hover{
  color: #141415;
}

.additional-information {
  max-width: 764px;
  margin: 0 0 48px;
}
.additional-information span {
  display: block;
  color: #0047BC;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Bossa', sans-serif;
  letter-spacing: 5%;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.additional-information h2 {
  color: #141415;
  font-size: 46px;
  line-height: 55.2px;
  font-weight: 400;
  font-family: 'Bossa', sans-serif;
  margin: 0 0 16px;
}
.additional-information p {
  color: #383A3D;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: 'Fustat', sans-serif;
  letter-spacing: 0%;
  margin: 0;
}
.additional-information p a {
  color: #0564FF;
  text-decoration: underline;
}


.listing-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 -16px -32px;
}
.listing-wrapper .card {
  width: calc(100%/4 - 32px);
  margin: 0 16px 32px;
  background-color: #FFF;
}
.listing-wrapper .card:nth-child(n + 13) {
  display: none;
}
.card .card-link {
  display: block;
  height: 100%;
  text-decoration: none;
}
.card .card-link:hover .card-image {
  background-size: 118%;
}

.learn-more:hover .card-image {
  /*   height: 200px; */
}
.learn-more:hover .spacer {
  /*   padding: 0 0 50px; */
}
.card .spacer {
  transition: all 0.8s ease-in-out;
}
.card .card-image {
  background-position: center;
/*   background-size: cover; */
  background-size: 100%;
  background-repeat: no-repeat;
  /*   min-height: 250px; */
  height: 250px;
  transition: all 0.8s ease-in-out;
}
.card .card-image img {
  visibility: hidden;
  max-width: 100%;
}
.card .card-content {
  padding: 16px 24px;
}
/* .card .card-content h3 {
color: #141415;
font-size: 22px;
line-height: 26.4px;
font-weight: 400;
font-family: 'Bossa', sans-serif;
letter-spacing: 0%;
margin: 0 0 8px;
} */
.card .card-content span.card-title {
  display: block;
  color: #141415;
  font-size: 22px;
  line-height: 26.4px;
  font-weight: 400;
  font-family: 'Bossa', sans-serif;
  margin: 0 0 8px;
}
.card .card-content a {
  display: inline-block;
  color: #141415;
  font-size: 22px;
  line-height: 26.4px;
  font-weight: 400;
  font-family: 'Bossa', sans-serif;
  margin: 0 0 8px;
}
.card .card-content a:hover{
  color: #141415;
}
.card-content .details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.details-list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px 0;
}
.details-list li .icon {
  width: 32px;
  height: 32px;
  margin-right: 16px;
}
.details-list li .icon .svg-bg-fallback {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 4px;
  border-radius: 100%;
}
.details-list li span {
  color: #383A3D;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: 'Fustat', sans-serif;
  margin-top: 4px;
}

.card-content .tags-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  transition: all 0.8s ease-in-out;
}
.tags-list li {
  background-color: #E7E8E9;
  color: #141415;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  font-family: 'Fustat', sans-serif;
  letter-spacing: 0%;
  /*   margin: 0 0 12px; */
  padding: 4px 12px 4px 28px;
  border-radius: 100px;
  position: relative;
}
.tags-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #40BF89;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.tags-list li:last-child {
  margin: 0;
}

.pagination-wrapper{
  padding-top: 24px;
}
.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  margin: 0 8px;
  width: 56px;
  height: 48px;
  border-radius: 2px;
  border: 1px solid transparent;
  background-color: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.pagination li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #141415;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: 'Fustat', sans-serif;
  letter-spacing: 0%;
  text-align: center;
}
.pagination li a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li.active {
  border: 1px solid #141415;
}
.pagination li.first .icon svg path,
.pagination li.last .icon svg path {
  stroke: #FFF;
}
.pagination li.first.disable .icon svg path,
.pagination li.last.disable .icon svg path {
  stroke: #67A1FF;
}
.pagination li.first ,
.pagination li.last {
  background-color: #003284;
  border: 1px solid #003284;
}
.pagination li.disable {
  background-color: #CCDFFF;
  border: 1px solid #CCDFFF;
}
.pagination li.disable:hover {
  border: 1px solid #CCDFFF;
}
.pagination li:hover {
  border: 1px solid #141415;
}
.pagination li.disabled-link {
  border: 1px solid transparent;
}
.pagination li.disabled-link a {
  cursor: default;
}

.listing-ce .button-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}
.listing-ce .button-wrapper .load-data-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #FFF;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: 'Fustat', sans-serif;
  background-color: #00235C;
  /*   border: 2px solid #00235C; */
  border-radius: 2px;
  border: none !important;
  padding: 10.5px 24px;
  min-height: 48px;
  /*   min-width: 250px; */
  transition: all 0.3s ease-in-out;
}
.listing-ce .button-wrapper .load-data-btn:focus {
  outline: none;
}
.listing-ce .button-wrapper .load-data-btn .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}
/* .listing-ce .button-wrapper .load-data-btn:hover {
background-color: rgba(204, 223, 255, 100);
color: #00235C;
} */
.warning {
  padding: 50px;
  width: 100%;
  text-align: center;
}
.warning h3 {
  color: #141415;
  font-size: 36px
    line-height: 43px
    font-weight: 400;
  font-family: 'Bossa', sans-serif;
}

/* CSS Loader */
.overflow-hidden {
  overflow: hidden;
}
.loader-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
}
.loader-overlay.active {
  display: block;
}
.loader-overlay .inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px;
  background: rgba(0, 0, 0, 0.3);
}
.loader {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}
.loader span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #3498db;
  margin: 35px 5px;
}

.loader span:nth-child(1){
  animation: bounce 1s ease-in-out infinite;
}

.loader span:nth-child(2){
  animation: bounce 1s ease-in-out 0.33s infinite;
}

.loader span:nth-child(3){
  animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@media (max-width: 1919.9px) {
  .additional-information h2 {
    font-size: 36px;
    line-height: 43.2px;
  }
  .card .card-content h3, .card .card-content h3 a {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 1919.9px) {
  .filter-wrapper {
    margin: 0 auto 24px;
  }
  .listing-wrapper {
    margin: 0 -12px -24px;
  }
  .listing-wrapper .card {
    width: calc(100%/3 - 24px);
    margin: 0 12px 24px;
  }
  .card .card-content h3, .card .card-content h3 a {
    font-size: 18px;
    line-height: 22px;
  }
  .card .card-content span.card-title {
    font-size: 18px;
    line-height: 22px;
  }
  
  .listing-ce .button-wrapper .load-data-btn {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 1919.9px) {
  .filter-wrapper .search-box input {
    font-size: 14px;
    line-height: 21px;
    padding: 17px 44px;
  }
  .filter-wrapper .filter-list li {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 1439.9px) {
  /*   .filter-wrapper {
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  margin: 0 auto 32px;
}
  .filter-wrapper .filters-mobile {
  display: block;
  width: 265px;
  height: 100%;
} */
  .filters-mobile .select2.select2-container.select2-container--default {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }
  .filters-mobile .select2-container--default .select2-selection--single {
    height: 100%;
    border-radius: none;
    border: 0px;
    border-bottom: 1px solid #777A7E;
  }
  .filters-mobile .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 40px;
    top: 0 !important;
    bottom: 0;
    height: 100%;
    background: rgba( 246, 247, 248, 100);
    display: flex;
    align-items: center;
  }
  .filters-mobile .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    right: 10px;
    width: 24px;
    transform: translateY(-50%);
  }
  .filters-mobile .select2-container--default .select2-selection--single[aria-expanded="true"] .select2-selection__arrow::after {
    right: 10px;
    top: calc(50% - 2px);
  }
  .filters-mobile .select2-container--default .select2-selection--single .select2-selection__placeholder {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .filters-mobile .select2-dropdown {
    top: 0 !important;
  }
  .filters-mobile .select2-container.select2-container--default.select2-container--open {
    z-index: 999 !important;
  }
  .filters-mobile .select2-results__option.select2-results__option--selectable {
    padding: 12px !important;
    color: #383A3D !important;
    font-size: 14px;
    line-height: 21px;
  }
  .filters-mobile .select2-container--default .select2-results > .select2-results__options {
    padding: 8px;
  }
  .filters-mobile .select2-results__option.select2-results__option--selectable.select2-results__option--selected {
    position: relative;
  }
  .filters-mobile .select2-results__option.select2-results__option--selectable.select2-results__option--selected::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    content: '';
    width: 14px;
    height: 14px;
    background-image: url('https://7405301.fs1.hubspotusercontent-na1.net/hubfs/7405301/Remote Website - 2025/currency_swticher_check_mark.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .filters-mobile .select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;

  }
  .filters-mobile .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
  }

  /*   .filter-wrapper .filters-desktop {
  display: none;
}
  .filter-wrapper .search-box {
  width: 100%;
  max-width: calc(100% - 283px);
} */
  .filter-wrapper .filter-list li {
    /*     padding: 8px 16px; */
    font-size: 14px;
    line-height: 20px;
  }
  .additional-information {
    margin: 0 0 32px;
  }
  .additional-information h2 {
    font-size: 28px;
    line-height: 33.6px;
  }
  .listing-wrapper .card {
    width: calc(100%/2 - 24px);
  }
  .card .card-image {
    height: 200px;
  }
  .card .card-content h3, .card .card-content h3 a {
    font-size: 16px;
    line-height: 19px;
  }
  .card .card-content span.card-title {
    font-size: 16px;
    line-height: 19px;
  }
  .details-list li span {
    margin-top: 8px;
  }
  .learn-more:hover .spacer {
    /*     padding: 0 0 35px; */
  }
  .learn-more:hover .card-image {
    /*     height: 150px; */
  }
  
  .filter-wrapper {
    align-items: stretch;
    gap: 18px;
    padding: 16px;
    margin: 0 auto 32px;
  }
  .filter-wrapper .filters-mobile {
    display: block;
    width: 265px;
    height: 100%;
  }
  .filter-wrapper .filters-desktop {
    display: none;
  }
  .filter-wrapper .search-box {
    width: 100%;
    max-width: calc(100% - 283px);
  }
  
}
{#
@media (max-width: 1129.98px) {
  .filter-wrapper {
    align-items: stretch;
    gap: 18px;
    padding: 16px;
    margin: 0 auto 32px;
  }
  .filter-wrapper .filters-mobile {
    display: block;
    width: 265px;
    height: 100%;
  }
  .filter-wrapper .filters-desktop {
    display: none;
  }
  .filter-wrapper .search-box {
    width: 100%;
    max-width: calc(100% - 283px);
  }
}
#}
@media (max-width: 959.9px) {
  .filter-wrapper {
    flex-direction: column;
  }
  .filter-wrapper .search-box {
    max-width: 100%;
  }
  .filter-wrapper .filters {
    width: 100%;
    max-width: unset;
  }
  .filter-wrapper .filters-mobile {
    width: 100%;
  }

  .filters-mobile .select2-container .select2-selection--single .select2-selection__rendered {
    padding-block: 18.6px;
    font-size: 12px;
    line-height: 18px;
  }
  .filters-mobile .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    padding: 12px !important;
    font-size: 12px;
    line-height: 18px;
  }
  .filters-mobile .select2-results__option.select2-results__option--selectable {
    padding: 12px !important;
    font-size: 12px;
    line-height: 18px;
  }
  .filter-wrapper .filter-list {
    gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .filter-wrapper .search-box input {
    font-size: 12px;
    line-height: 18px;
  }
  .listing-ce .button-wrapper .load-data-btn {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 767.9px) {
  .listing-wrapper {
    margin: 0 0 -24px;
  }
  .listing-wrapper .card {
    width: 100%;
    margin: 0 0 12px;
  }
}