@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700&family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --main-color: #f7f7f7;
  --second-color: #1b4074;
  --body-color: #f0f5f8;

  --main-font: "Montserrat";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Inter", sans-serif;
}

body {
  background-color: var(--body-color);
  font-family: var(--main-font);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/* Uncomment and set these variables to customize the grid. */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem;
  }

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-1 {
    margin-left: 8.333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.667%;
  }

  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem;
  }

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-1 {
    margin-left: 8.333%;
  }

  .col-md-offset-2 {
    margin-left: 16.667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.333%;
  }

  .col-md-offset-5 {
    margin-left: 41.667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.333%;
  }

  .col-md-offset-8 {
    margin-left: 66.667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.333%;
  }

  .col-md-offset-11 {
    margin-left: 91.667%;
  }

  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem;
  }

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-1 {
    margin-left: 8.333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.667%;
  }

  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

.inter {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.breadcumbs {
  font-family: var(--nav-font);
}

.navbar {
  background-color: var(--main-color);
}

.navbar .nav-wrapper {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}

.nav-wrapper .menu-toggle {
  display: none;
}

.nav-wrapper .logo {
  color: var(--main-color);
}

.nav-wrapper .logo img {
  color: var(--second-color);
}

.nav-wrapper .menu-wrapper {
  display: flex;
  gap: 50px;
}

.nav-wrapper .menu-wrapper .menu {
  display: flex;
  align-items: center;
  gap: 70px;
}

.menu-wrapper .menu .menu-link {
  font-size: 1.25rem;
  color: var(--main-color);
  font-family: var(--heading-font);
  font-weight: 500;
}

.menu-wrapper .menu .menu-link.active {
  font-weight: 700;
  color: var(--second-color);
}

.menu-wrapper .btn-member {
  font-family: var(--heading-font);
  color: #fff;
  font-weight: 600;
  background-color: var(--second-color);
  padding: 25px 30px;
  border-radius: 50px;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
}

#pagination .hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between > div:first-child {
  display: none;
}

#pagination a.relative {
  background: none;
  margin: 0 3px;
  border-radius: 3px;
  overflow: hidden;
  border-color: #1B4074;
}

h1.page-title {
  font-weight: 500;
  font-size: 52px;
}

.hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between {
}

#pagination span span {
  background: #1B4074;
  color: #fff;
  border-radius: 3px;
  overflow: hidden;
  border: none;
  height: 40px;
}

#pagination .shadow-sm {
  box-shadow: none;
}

#pagination a.relative.inline-flex.items-center.px-2.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-r-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150 {
  border: none;
  padding: 0;
}

#pagination a.relative.inline-flex.items-center.px-2.py-2.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-l-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150 {
  border: none;
  padding: 0;
}

#pagination a.relative.inline-flex.items-center.px-2.py-2.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-l-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150 svg {
  width: 30px;
  height: 40px;
  fill: #1B4074;
}

#pagination a.relative.inline-flex.items-center.px-2.py-2.-ml-px.text-sm.font-medium.text-gray-500.bg-white.border.border-gray-300.rounded-r-md.leading-5.hover\:text-gray-400.focus\:z-10.focus\:outline-none.focus\:ring.ring-gray-300.focus\:border-blue-300.active\:bg-gray-100.active\:text-gray-500.transition.ease-in-out.duration-150 svg {
  width: 30px;
  height: 40px;
  fill: #1B4074;
}

#pagination span[aria-disabled="true"], #pagination span[aria-disabled="true"] span {
  background: none;
  color: #1B4074;
}

span.select2-selection__arrow {
  display: none;
}

#pagination span[aria-disabled="true"] {
  border: solid 1px;
}

#pagination span[aria-label="&laquo; Previous"], #pagination span[aria-label="Next &raquo"] {
  display: none;
}

.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
  border-color: #E1E1E1 !important;
  border-radius: 1px !important;
  padding-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px !important;
  font-size: 14px !important;
  padding-left: 15px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: rgb(41 205 155 / 20%);
  border-color: #078743;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  font-size: 12px;
  padding: 0 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: rgb(41 205 155 / 20%);
  border-color: #078743;
  margin-bottom: 5px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  font-size: 12px;
  padding: 0 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #D7E3D7;
  color: #222;
}

.select2-results__option {
  font-size: 13px;
}

.sidebar {
  background: #fff;
  padding: 0;
}

.text-base {
  font-size: 15px !important;
  line-height: 1.5rem;
}

.slide-read-more {
  overflow: hidden;
}

.select2-container .select2-search--inline .select2-search__field {
  height: 33px;
  padding: 3px 10px;
}

.select2-container .select2-search--inline .select2-search__field::placeholder {
  font-size: 14px;
}

.group.relative.inline-block.flex-1 span {
  cursor: pointer;
}

.break-all a {
  text-decoration: underline;
}

.group.relative.inline-block.flex-1 > div {
  background: #2B2A29;
}

.group.relative.inline-block.flex-1 > div p {
  color: #fff;
  font-size: 14px;
}

input#headlessui-combobox-input-18:focus {
  background: #fff;
}

.img-email img {
  display: unset;
}

span.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.contact-box p {
  font-size: 13px !important;
}

.advance {
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.advance > span {
  top: 0;
}

.advance {
  cursor: pointer;
}

.advance.active > span {
  transform: rotate(180deg);
}

a.links {
  color: #0768b0;
}

@media (min-width: 1536px) {
  .container {
    max-width: 1300px !important;
  }
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 90%;
  }
}

.funding-alert select, .funding-alert input {
  border-color: #E1E1E1;
  border-radius: 5px;
  line-height: 35px;
  font-size: 15px;
}

.funding-alert .select2-container--default .select2-selection--multiple {
  border-radius: 5px !important;
  line-height: 50px;
}

.funding-alert .select2-container .select2-search--inline .select2-search__field {
  height: 40px;
}

.funding-alert span.material-symbols-outlined.pointer-events-none.absolute.top-2.right-4.h-6.w-6.fill-slate-400.text-wsmoke-200 {
  margin-top: 6px;
}

.funding-alert .select2-container .select2-selection--multiple .select2-selection__rendered {
  line-height: 35px;
}

.funding-alert li.select2-selection__choice {
  height: 40px;
}

.funding-alert > button {
  background: #1B4074;
  border: solid 1px #000000;
  line-height: 45px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 10px;
}

.green-box {
  background: #29CD9B !important;
  border-radius: 10px !important;
  padding: 40px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.green-box > h2 {
  color: #21342B;
  font-size: 49px;
  font-weight: 800;
  line-height: 54px;
  text-align: left;
}

.green-box > h2 span {
  display: block;
  font-weight: 300;
  text-transform: uppercase;
}

.green-box > div {
  color: #fff;
  text-align: left;
}

.green-box .counter span {
  font-size: 18px;
  margin-left: 15px;
}

.green-box .counter {
  display: flex;
  align-items: center;
}

.green-box p {
  font-weight: 200;
  font-size: 17px;
}

.green-box p.desc {
  color: #CAF3DF;
  font-size: 18px;
}

.notice .error {
  background: #f7b4af;
  padding: 15px;
  border-radius: 5px;
  color: #9f1208;
}

.notice .success {
  background: #d2f7a6;
  padding: 15px;
  border-radius: 5px;
  color: #1b7c1f;
}

#mood-1:checked ~ .emoji-1,
#mood-2:checked ~ .emoji-2,
#mood-3:checked ~ .emoji-3,
#mood-4:checked ~ .emoji-4,
#mood-5:checked ~ .emoji-5 {
  font-weight: bold;
}

.satisfaction {
  display: flex;
  gap: 30px;
}

.satisfaction .radio {
  display: none;
}

.satisfaction label {
  cursor: pointer;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #7A7A7A;
  font-size: 15px;
  font-weight: 400;
}

.satisfaction label img {
  width: 40px;
}

.radio-option {
  display: flex;
  gap: 30px;
}

.radio-option input {
  border-radius: 40px;
  margin-right: 10px;
  border: solid 1px #9BB5A7;
}

.radio-option label {
  cursor: pointer;
}

div#dropdownForm {
  right: 0;
  background: #F7F7F7;
  margin-top: 0;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  top: 35px;
}

.dropbox {
  position: relative;
}

label#dropdownButton {
  cursor: pointer;
  padding: 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  gap: 10px
}

label#dropdownButton.active {
  background: #F7F7F7;
}

div#dropdownForm > div > div {
  border-bottom: solid 1px #DCDCDC;
  padding-bottom: 15px;
}

div#dropdownForm > div > div:last-child {
  border: none;
}

div#dropdownForm p {
  font-weight: bold;
  color: #999999;
  font-size: 14px;
}

div#dropdownForm span {
  font-weight: 400;
  color: #3C3C3C;
  font-size: 13px;
}

.satisfaction.viewas label img {
  width: 17px;
}

.satisfaction.viewas label {
  padding: 0;
}

.satisfaction.viewas {
  gap: 10px;
}

.top-filter form > div, #dropdownButton {
  display: flex;
  align-items: center;
}

.top-filter select {
  border-color: #D1D9DD;
  border-radius: 5px;
  line-height: 36px;
  color: #323232;
}

.square-image {
  width: 60px;
  height: 60px;
}

.square-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.share-box .flex {
  flex-direction: column;
  /* gap: 10px; */
  /* margin-top: 20px; */
  border: solid 1px #ddd;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  background: #fff;
  width: 150px;
  display: none;
}

.share-box .flex a {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.burgermenumobilebox {
  display: none;
}


.share-box .flex a img {
  width: 25px;
  height: auto;
}

.share-box {
  text-align: right;
  position: relative;
}

.share-box .share {
  cursor: pointer;
}

.share-box:hover .flex {
  display: block;
}

a.rounded-\[10px\]:hover {
  position: relative;
  overflow: hidden;
}

a.rounded-\[10px\]:hover:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.05);
  right: 0;
  opacity: 0;
  animation: fadein 0.5s forwards;
}

.filtered-items__item > a {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.filtered-items__item img {
  transition: transform 0.3s ease-in-out;
}

.filtered-items__item:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.filter a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.filter a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--second-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.filter a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.filter a.active:hover::after {
  display: none;
}


.sidebar li a {
  position: relative;
}

a.no-underline.rounded-\[10px\] {
  position: relative;
  overflow: hidden;
}

#argentina .dark {
  position: relative;
  overflow: hidden;
  border: none;
  transition: background 0.25s ease-out;
}

#argentina a.no-underline.rounded-\[10px\].dark:hover, #argentina .dark:hover {
  background: #eee !important;
  transition: background 0.25s ease-in;
  color: #1B4074;
  border: none;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.flex.bg-white.gap-3 p {
  margin-bottom: 20px;
}

.flex.bg-white.gap-3 ol {
  list-style: decimal;
  padding-left: 30px;
}

.flex.bg-white.gap-3 ol li {
  list-style: inherit;
  line-height: 28px;
}

.flex.bg-white.gap-3 td {
  padding: 16px;
}

.flex.bg-white.gap-3 td:first-child {
  padding-left: 0;
}

.flex.bg-white.gap-3 td:last-child {
  padding-right: 0;
}

.flex.bg-white.gap-3 td {
  padding: 16px;
}

.flex.bg-white.gap-3 td:first-child {
  padding-left: 0;
}

.flex.bg-white.gap-3 td:last-child {
  padding-right: 0;
}

.flex.bg-white.gap-3 ul, .flex.bg-white.gap-3 ul li {
  list-style: disc !important;
  line-height: 28px;
}

.flex.bg-white.gap-3 ul {
  padding-left: 30px;
  margin-bottom: 20px;
  list-style-type: disc;
  list-style-position: inside; /* Moves bullets inside the list item */
}

.flex.bg-white.gap-3 ol {
  margin-bottom: 20px;
}


.flex.bg-white.gap-3 a {
  text-decoration: underline;
  color: #1d75b7;
}

b, strong {
  font-weight: 600 !important;
}

#argentina .burgermenumobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  img.h-11 {
    height: auto;
  }

  a.logo {
    width: 170px;
  }

  .mainmenu a {
    margin-left: 0;
  }

  .space-x-4 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0;
  }

  h1.entry-title {
    padding: 40px 40px;
  }

  .logo img.h-11 {
    height: auto;
  }

  .container.mx-auto {
    padding: 0 0px;
  }

  header.entry-header {
    height: 24vh;
  }

  /* ===== */
  #argentina .hero.slide-read-hero > div.absolute {
    padding-bottom: 40px;
  }

  div#search-box {
    padding: 30px;
  }

  .search-box-item {
    margin: 0;
  }

  div#search-box h4 {
    font-size: 22px;
  }

  .grid.grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  h2.font-medium.text-\[42px\].text-\[\#0A2653\].mb-8.leading-tight {
    font-size: 30px;
    margin: 0;
  }

  .grid.grid-cols-2.gap-\[53px\] {
    gap: 20px;
    margin-bottom: 20px;
  }

  .grid.grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .sidebar {
    position: static !important;
  }

  #argentina .brand img {
    width: auto;
  }

  #argentina .mainmenu, #argentina .burgermenu {
    display: none
  }

  #argentina .burgermenumobile {
    display: block
  }

  #argentina .burgermenumobilebox {
    display: none;
  }

  #argentina .burgermenumobilebox.active {
    display: block;
  }

  #argentina .burgermenumobilebox ul a {
    font-weight: normal;
  }

  #argentina .burgermenumobilebox ul ul {
    margin-left: 20px;
    margin-top: 0;
  }

  .w-full div {
    max-width: 100%;
  }

  #argentina nav#memu {
    padding: 0 20px;
    display: block;
  }

  a.logo {
    width: 40%;
  }

  #memu > .brand {
    justify-content: space-between;
    align-items: center;
  }

  #argentina .burgermenumobile {
    text-align: right;
  }

  h1.entry-title {
    line-height: 60px;
    font-size: 40px;
  }

  #argentina .burgermenumobilebox ul a {
    line-height: 30px;
  }

  button.slide-read-more-button {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  #argentina nav#memu {
    display: inline-block;
    width: 100%;
  }

  /*#argentina .burgermenu {
    display: inline-block;
    float: right;
    margin-top: 5px;
    margin-right: 15px;
  }

  #argentina .mainmenu {
    display: inline-block;
    float: left;
  }
*/
  #argentina .brand img {
    height: auto;
  }

  #argentina .brand .text-black-100.font-bold {
    font-size: 12px;
  }

  #argentina .container.mx-auto {
    max-width: 95%;
  }

  #argentina .hero.slide-read-hero > div.absolute {
    padding: 0;
  }


  #argentina .hero.slide-read-hero > div.absolute h2 {
    font-size: 30px;
    margin-top: 20px;
  }

  /* .hero.slide-read-hero {
      height: 345px;
  } */
  #argentina .max-w-\[600px\] {
    max-width: 90%;
  }

  #argentina .hero.slide-read-hero > div.absolute.top-20 {
    position: relative;
  }

  #argentina .hero.slide-read-hero > img {
    position: absolute;
  }

  #argentina .filtered-items.grid {
    display: block;
  }

  #argentina .filter.flex {
    flex-direction: column;
  }

  #argentina .filter.flex > div {
    overflow: auto;
    padding-bottom: 15px;
  }

  #argentina .filter.flex > div > div {
    width: max-content;
  }

  #argentina footer .h-full.border.bg-white {
    height: 1px;
  }

  #argentina .single h2 {
    font-size: 32px;
  }

  #argentina .radio-option {
    flex-direction: column;
  }

  #argentina h1.page-title {
    line-height: 65px;
  }

  #argentina .max-w-\[600px\] {
    max-width: 95%;
  }

  #argentina .homepost.grid {
    flex-direction: column;
    display: flex;
  }

  .funders.flex.justify-between {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.logo-placeholder img {
  width: 115px;
}

.logo-placeholder {
  display: flex !important;
  justify-content: center;
}

.slick-track {
  display: flex;
  align-items: center;
}

.view-more {
  text-align: right;
}

.search-box-item > div a {
  display: flex;
  text-decoration: none;
  gap: 5px;
  align-items: center;
  border: 1px solid #ffff;
  padding: 20px 20px;
  font-weight: bold;
}

.entry-header {
  position: relative;
  overflow: hidden;
  height: 75vh;
}

.entry-title-container {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
}

@media (min-width: 1536px) {
  .basic-page .container {
    max-width: 1140px !important;
  }
}

.entry-title {
  padding: 58px 0;
  font-size: 60px;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.entry-title {
  font-weight: 700;
  letter-spacing: -.02em;
}

.entry-header:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  content: "";
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .58));
}

.dw-callout {
  background: #286FB7;
  border-radius: 10px;
  padding: 30px 20px;
  color: #ffffff;
}

.dw-callout-outline {
  border-top: 2px solid #333333;
  border-radius: 0;
  padding: 30px 0;
  /* color: #ffffff; */
  margin-bottom: 30px;
}

.dw-callout-green {
  background: #029246;
  border-radius: 10px;
  padding: 30px 20px;
  color: #ffffff;
}

.dw-callout-light-green {
  background: #B9CE34;
  border-radius: 10px;
  padding: 30px 20px;
  color: #ffffff;
}

.dw-callout-dark-blue {
  background: #154578;
  border-radius: 10px;
  padding: 30px 20px;
  color: #ffffff;
}

.dw-callout a {
  color: #ffffff;
  text-decoration: underline;
}

.table_component {
  overflow: auto;
  width: 100%;
}

.table_component {
  border: 1px solid #dededf;
  height: 100%;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
  margin-bottom: 30px;
}

.table_component caption {
  caption-side: top;
  text-align: left;
}

.table_component th {
  border: 1px solid #dededf;
  background-color: #eceff1;
  color: #000000;
  padding: 15px;
}

.flex.bg-white.gap-3 .table_component td:first-child {
  padding-left: 15px;
}

.table_component td {
  border: 1px solid #dededf;
  background-color: #ffffff;
  color: #000000;
  padding: 15px;
}

figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  section {
    padding: 0 32px;
  }

  .text-5xl {
    font-size: 2rem;
    line-height: 1;
  }

  .text-\[42px\] {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  a.logo {
    width: 160px;
  }

  section {
    padding: 0 20px;
  }

  .search-box-item {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  div#search-box {
    padding: 0px 30px 40px 30px !important;
  }
  .search-box-item > div {
    margin-left: 0 !important;
  }
  .search-box-item {
    gap: 8px !important;
  }
  .filtered-items__item {
    margin-bottom: 30px;
  }
}
