/*
0-600px: Phone
600 - 900px: Tablet portrait
900 - 1200px: Tablet landscape
1200-1800px: Our normal desktop styles
1800px +: big desktop
ORDER:  Base + typography > general layout + grid >
        page layout > components
$breakpoint arguments choices:
-phone
-tab-prt
-tab-land
-big-desktop
1em = 16px
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }

body {
  box-sizing: border-box; }

@font-face {
  font-family: HKGrotesk;
  src: url("../assets/fonts/HKGrotesk-Light.woff") format("woff"), url("../assets/fonts/HKGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: HKGrotesk;
  src: url("../assets/fonts/HKGrotesk-Regular.woff") format("woff"), url("../assets/fonts/HKGrotesk-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: HKGrotesk;
  src: url("../assets/fonts/HKGrotesk-Medium.woff") format("woff"), url("../assets/fonts/HKGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: HKGrotesk;
  src: url("../assets/fonts/HKGrotesk-SemiBold.woff") format("woff"), url("../assets/fonts/HKGrotesk-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: HKGrotesk;
  src: url("../assets/fonts/HKGrotesk-Bold.woff") format("woff"), url("../assets/fonts/HKGrotesk-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: HKGrotesk;
  src: url("../assets/fonts/HKGrotesk-Black.woff") format("woff"), url("../assets/HKGrotesk-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap; }

body {
  font-family: HKGrotesk, Helvetica, sans-serif !important; }

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif; }

p, textarea, select {
  font-family: HKGrotesk, Helvetica, sans-serif !important; }

.container {
  max-width: 1440px;
  padding: 0 10rem;
  margin: 0 auto; }
@media (max-width: 75em) {
  .container {
    padding: 0 6rem; } }
@media (max-width: 37.5em) {
  .container {
    padding: 0 2.4rem; } }

.main {
  background-color: #F7F8FB; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4.2rem;
  padding-bottom: 3.4rem; }
.nav-logo {
  width: 23.2rem;
  z-index: 9; }
@media (max-width: 37.5em) {
  .nav-logo {
    width: 17.5rem; } }
.nav-logo img {
  width: 100%;
  height: auto; }
.nav-list {
  display: flex;
  align-items: center; }
.nav-link {
  display: inline-block;
  margin-right: 3.3rem; }
.nav-link a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
  color: #171C2C !important;
  transition: all 0.2s;
  display: inline-block; }
.nav-link a:hover {
  font-weight: 700; }
.nav-link-contact {
  display: inline-block; }
.nav-link-contact a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
  color: white !important;
  background-color: #2E94CD;
  height: 5.3rem;
  width: 15.7rem;
  display: inline-block;
  text-align: center;
  padding: 1.3rem 0;
  border-radius: 3.3rem;
  transition: all 0.3s;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
.nav-link-contact a:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
.nav-box {
  display: flex; }
@media (max-width: 75em) {
  .nav-box {
    display: none; } }

.mobile-nav-box {
  width: 0;
  display: none;
  transition: all 0.3s; }
@media (max-width: 75em) {
  .mobile-nav-box {
    display: block;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 6; } }

.mobile-nav-button {
  display: none;
  z-index: 9;
  background: none;
  border: none; }
@media (max-width: 75em) {
  .mobile-nav-button {
    display: block; } }
.mobile-nav-button:focus {
  outline: none; }

.mobile-nav-span {
  width: 40px;
  margin-bottom: 7px;
  height: 4px;
  background-color: #222222;
  display: block;
  border: 2px solid #222222;
  transition: all 0.3s; }
@media (max-width: 37.5em) {
  .mobile-nav-span {
    width: 32px;
    margin-bottom: 4px; } }

.mobile-nav-list {
  padding: 10rem;
  text-align: right;
  margin-top: 15rem;
  display: none; }
@media (max-width: 75em) {
  .mobile-nav-list {
    padding: 6rem;
    display: block; } }
@media (max-width: 37.5em) {
  .mobile-nav-list {
    padding: 2.4rem; } }

.mobile-nav-link {
  list-style-type: none; }
.mobile-nav-link a {
  display: block;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  color: #171C2C;
  margin-bottom: 3rem; }
.mobile-nav-link a:hover {
  font-weight: 700; }

.footer {
  background-color: #F2F2F2; }
.footer-one {
  display: flex;
  justify-content: space-between;
  padding-top: 11.9rem; }
@media (max-width: 56.25em) {
  .footer-one {
    flex-direction: column; } }
.footer-text {
  max-width: 36.2rem; }
@media (max-width: 56.25em) {
  .footer-text {
    max-width: 100%;
    margin-bottom: 5rem; } }
.footer-text h4 {
  color: #171C2C;
  font-size: 4.5rem;
  line-height: 5rem;
  font-weight: 300; }
.footer-text p {
  font-size: 1.8rem;
  line-height: 2.75rem;
  font-weight: 400;
  margin-top: 2rem; }
.footer-form {
  min-width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  row-gap: 2rem; }
@media (max-width: 56.25em) {
  .footer-form {
    grid-template-columns: repeat(1, 1fr); } }
.footer-form input {
  height: 6.3rem;
  border-radius: 5px;
  background-color: white;
  font-size: 1.8rem;
  border: none;
  font-weight: 500;
  padding: 0 2.5rem; }
.footer-form input:placeholder {
  color: #828282; }
.footer-form input:focus {
  border: 1px solid #2E94CD;
  outline: none; }
.footer-form button {
  background-color: #B0E5C6;
  border: none;
  height: 5.3rem;
  width: 15.7rem;
  border-radius: 3.5rem;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  transition: all 0.3s;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
.footer-form button:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
.footer-two {
  padding-top: 6.7rem; }
.footer-two-nav {
  display: flex;
  justify-content: space-between; }
@media (max-width: 56.25em) {
  .footer-two-nav {
    flex-direction: column; } }
@media (max-width: 56.25em) {
  .footer-two-nav ul {
    text-align: center;
    margin-bottom: 2rem; } }
.footer-two-nav ul li {
  display: inline-block; }
@media (max-width: 37.5em) {
  .footer-two-nav ul li {
    display: block; } }
.footer-two-nav ul li:not(:last-child) {
  margin-right: 3.3rem; }
@media (max-width: 37.5em) {
  .footer-two-nav ul li:not(:last-child) {
    margin-right: 0rem;
    margin-bottom: 2rem; } }
.footer-two-nav ul li a {
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 600;
  color: #171C2C; }
.footer-two-note {
  display: flex;
  justify-content: space-between;
  margin-top: 3.4rem;
  padding-bottom: 4rem; }
@media (max-width: 37.5em) {
  .footer-two-note {
    flex-direction: column;
    width: 75%;
    text-align: center;
    margin: 0 auto;
    margin-top: 2rem; } }
.footer-two-note p, .footer-two-note a {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: #828282; }
@media (max-width: 37.5em) {
  .footer-two-note p, .footer-two-note a {
    margin-bottom: 2.2rem; } }
@media (max-width: 37.5em) and (max-width: 37.5em) {
  .footer-two-note p span, .footer-two-note a span {
    display: block; } }

.home-heading {
  display: flex;
  align-items: center; }
@media (max-width: 75em) {
  .home-heading {
    flex-direction: column-reverse;
    margin-top: 5rem; } }
.home-heading-text {
  margin-right: 5rem;
  margin-top: -10rem; }
@media (max-width: 75em) {
  .home-heading-text {
    margin-right: 0;
    margin-top: 5rem;
    text-align: center; } }
.home-heading-text h1 {
  font-size: 4rem;
  line-height: 4.9rem;
  font-weight: 300;
  margin-bottom: 2.9rem;
  color: #171C2C; }
@media (max-width: 37.5em) {
  .home-heading-text h1 {
    font-size: 3rem;
    line-height: 4rem; } }
.home-heading-text a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
  color: white !important;
  background-color: #12789A;
  height: 5.3rem;
  width: 15.7rem;
  display: inline-block;
  border-radius: 8.1rem;
  text-align: center;
  padding: 1.3rem 0;
  transition: all 0.3s;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
.home-heading-text a:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
.home-heading-image {
  min-width: 56%; }
@media (max-width: 75em) {
  .home-heading-image {
    min-width: 100%; } }
.home-heading-image img {
  width: 100%; }

.health {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4.6rem;
  padding-left: 0; }
@media (max-width: 75em) {
  .health {
    flex-direction: column;
    padding-left: 6rem; } }
@media (max-width: 37.5em) {
  .health {
    padding-left: 2.4rem; } }
.health-img {
  min-width: 48%;
  margin-right: 8rem;
  height: 53.2rem; }
@media (max-width: 75em) {
  .health-img {
    margin-right: 0;
    margin-bottom: 5rem;
    min-width: 100%; } }
.health-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }
.health-text h4 {
  font-size: 4.5rem;
  line-height: 5.9rem;
  font-weight: 300;
  color: #171C2C; }
@media (max-width: 37.5em) {
  .health-text h4 {
    font-size: 3rem;
    line-height: 4rem; } }
.health-text p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
  color: #4F4F4F;
  margin: 1.8rem 0; }
.health-text a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.7rem;
  color: white;
  background-color: #12789A;
  height: 5.3rem;
  width: 15.7rem;
  display: inline-block;
  border-radius: 8.1rem;
  text-align: center;
  padding: 1.3rem 0;
  transition: all 0.3s;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
.health-text a:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }

.panel {
  background-color: #F7F7F7;
  margin-top: 9.8rem;
  color: #171C2C;
  padding: 8.2rem 0 10.2rem 0; }
.panel-title {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 600; }
.panel-container {
  display: flex;
  justify-content: space-between; }
@media (max-width: 75em) {
  .panel-container {
    flex-direction: column; } }
.panel-primary {
  min-width: 46%;
  max-width: 46%; }
@media (max-width: 75em) {
  .panel-primary {
    min-width: 100%; } }
.panel-primary h4 {
  font-size: 4.5rem;
  line-height: 5.9rem;
  font-weight: 300;
  margin-bottom: 4.4rem; }
@media (max-width: 75em) {
  .panel-primary h4 {
    margin-bottom: 3rem; } }
@media (max-width: 37.5em) {
  .panel-primary h4 {
    font-size: 3rem;
    line-height: 4rem; } }
.panel-primary p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
  color: #4F4F4F; }
.panel-secondary {
  max-width: 50%;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
  color: #4F4F4F; }
@media (max-width: 75em) {
  .panel-secondary {
    min-width: 100%; } }
.panel-feedback {
  margin-top: 5.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../assets/images/feedback.png);
  background-size: cover;
  border-radius: 10px;
  height: 34.9rem;
  padding: 0 5.4rem; }
@media (max-width: 56.25em) {
  .panel-feedback {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 3rem; } }
@media (max-width: 37.5em) {
  .panel-feedback {
    padding-top: 7rem; } }
.panel-feedback-text {
  font-size: 2.5rem;
  line-height: 3.5rem;
  color: white;
  max-width: 78.4rem;
  font-weight: 200; }
@media (max-width: 56.25em) {
  .panel-feedback-text {
    max-width: 100%;
    margin-bottom: 5.8rem; } }
@media (max-width: 37.5em) {
  .panel-feedback-text {
    font-size: 1.6rem;
    line-height: 2.5rem; } }
.panel-feedback-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 18.9rem;
  height: 5.3rem;
  background-color: white;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 600;
  text-decoration: none;
  color: #171C2C;
  border-radius: 3.5rem;
  transition: all 0.3s;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
@media (max-width: 37.5em) {
  .panel-feedback-link {
    margin-bottom: 3rem;
    width: 21.5rem;
    height: 5.1rem; } }
.panel-feedback-link:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }

.home-updates {
  margin-top: 15.2rem; }
.home-updates-title {
  display: flex;
  justify-content: space-between;
  color: #171C2C;
  margin-bottom: 4.4rem; }
.home-updates-title h4 {
  font-size: 4.5rem;
  line-height: 6.398rem;
  font-weight: 300; }
.home-updates-title a {
  font-size: 1.8rem;
  line-height: 6.398rem;
  font-weight: 600;
  text-decoration: none;
  color: #171C2C; }
.home-updates-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  row-gap: 2rem;
  background-size: cover; }
@media (max-width: 75em) {
  .home-updates-container {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 37.5em) {
  .home-updates-container {
    grid-template-columns: repeat(1, 1fr); } }
.home-updates-item {
  height: 38.7rem;
  background-color: #2E94CD;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  position: relative;
  background-size: cover; }
@media (max-width: 56.25em) {
  .home-updates-item {
    min-height: 45.5rem; } }
.home-updates-item::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0); }
.home-updates-item-wrapper {
  background-color: white;
  margin: 1.6rem;
  border-radius: 8px;
  padding: 2.4rem;
  z-index: 1; }
.home-updates-item-wrapper h4 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.099rem;
  color: #171C2C; }
.home-updates-item-wrapper p {
  color: #4F4F4F;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
  height: 0;
  overflow: hidden;
  transition: all 0.2s; }
.home-updates-item-wrapper a {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #2E94CD;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 0;
  overflow: hidden;
  transition: all 0.1s; }
.home-updates-item-wrapper a svg {
  margin-left: 1rem; }
@media (hover: none) {
  .home-updates-item::after {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); }
  .home-updates-item .home-updates-item-wrapper p {
    height: 100%;
    margin-top: 1.4rem; }
  .home-updates-item .home-updates-item-wrapper a {
    height: 100%;
    margin-top: 2.6rem; } }
.home-updates-item:hover::after {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); }
.home-updates-item:hover .home-updates-item-wrapper p {
  height: 100%;
  margin-top: 1.4rem; }
.home-updates-item:hover .home-updates-item-wrapper a {
  height: 100%;
  margin-top: 2.6rem; }

.timeline {
  padding-top: 15rem;
  padding-bottom: 15rem;
  color: #171C2C; }
@media (max-width: 37.5em) {
  .timeline {
    padding-top: 13rem;
    padding-bottom: 13.5rem; } }
.timeline-text-primary {
  font-weight: 300;
  font-size: 4.8rem;
  line-height: 5.3rem; }
@media (max-width: 37.5em) {
  .timeline-text-primary {
    font-size: 3rem;
    line-height: 5.3rem; } }
.timeline-text-secondary {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8.5rem; }
@media (max-width: 37.5em) {
  .timeline-text-secondary {
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem; } }
.timeline-text-secondary p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  max-width: 44.5rem;
  margin-top: 3.8rem; }
@media (max-width: 37.5em) {
  .timeline-text-secondary p {
    margin-bottom: 4rem;
    margin-top: 1.9rem; } }
.timeline-text-button {
  display: none; }
@media (max-width: 56.25em) {
  .timeline-text-button {
    display: block; } }
.timeline-text-button-1 {
  background: none;
  border: none; }
.timeline-text-button-1:focus {
  outline: none; }
.timeline-text-button-2 {
  background: none;
  border: none; }
.timeline-text-button-2:focus {
  outline: none; }
.timeline-text-button-2 svg {
  transform: rotate(180deg);
  margin-left: 5.1rem; }
.timeline-parent {
  border-top: 1px solid #4F4F4F;
  position: relative; }
@media (max-width: 37.5em) {
  .timeline-parent .container {
    padding: 0; } }
.timeline-stroke {
  height: 1.8rem;
  width: 1px;
  background-color: #4F4F4F;
  position: absolute;
  top: -4.3rem;
  left: 50%;
  transform: translateX(-50%); }
.timeline-grid {
  display: flex;
  padding-top: 4.3rem;
  overflow: hidden; }
.timeline-item {
  position: relative;
  display: flex;
  min-width: calc(100% / 3);
  transition: all 0.3s;
  align-items: end; }
@media (max-width: 56.25em) {
  .timeline-item {
    min-width: calc(100% / 2); } }
@media (max-width: 37.5em) {
  .timeline-item {
    min-width: calc(85% / 1); } }
.timeline-date {
  font-weight: 100;
  font-size: 7.2rem;
  line-height: 12rem;
  transform: rotate(-90deg);
  height: 20rem;
  min-width: 20rem; }
.timeline-content {
  margin-left: -9rem;
  margin-top: auto;
  position: relative; }
.timeline-content h4 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.08rem;
  margin-bottom: 1.4rem; }
.timeline-content p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  max-width: 18.2rem; }

.about-heading {
  display: flex;
  justify-content: space-between;
  align-items: center; }
@media (max-width: 75em) {
  .about-heading {
    flex-direction: column;
    align-items: normal; } }
.about-heading h1 {
  font-size: 4.5rem;
  line-height: 6.05rem;
  font-weight: 300;
  max-width: 71%;
  margin: 8.8rem 0 17.5rem 0;
  background-color: white; }
@media (max-width: 75em) {
  .about-heading h1 {
    max-width: 100%;
    padding: 0;
    margin: 8.8rem 0 17.5rem 0; } }
@media (max-width: 37.5em) {
  .about-heading h1 {
    font-size: 3rem;
    line-height: 4.5rem; } }
.about-heading-svg {
  min-width: 68.3rem;
  position: absolute;
  top: 0;
  right: 4.7rem;
  z-index: -1; }
@media (max-width: 56.25em) {
  .about-heading-svg {
    max-width: calc(100% - 2rem);
    min-width: calc(100% - 2rem);
    left: 2rem; } }
@media (max-width: 56.25em) {
  .about-heading-svg svg {
    width: 100%; } }

.about-tab {
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
@media (max-width: 75em) {
  .about-tab {
    flex-direction: column; } }
.about-tab-button {
  margin-bottom: 3rem; }
@media (max-width: 75em) {
  .about-tab-button {
    max-width: 100%;
    min-width: auto;
    margin-right: 0; } }
@media (max-width: 37.5em) {
  .about-tab-button {
    display: flex; } }
.about-tab-button .tab-active h4 {
  color: #12789A;
  font-weight: 600;
  border-bottom: 4px solid #12789A; }
.about-tab-button .tab-active:focus {
  outline: none; }
.about-tab-button button {
  background: none;
  border: none;
  transition: all 0.1s;
  cursor: pointer;
  margin-right: 4rem; }
@media (max-width: 75em) {
  .about-tab-button button {
    margin-right: 4rem; } }
.about-tab-button button h4 {
  font-size: 1.8rem;
  margin-bottom: 2.3rem;
  font-weight: 400;
  color: #828282;
  transition: all 0.1s; }
.about-tab-content {
  padding-top: 9.3rem; }
.about-tab-content #terms {
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
  color: #4F4F4F;
  padding-bottom: 4.1rem; }
.about-tab-content #terms ul {
  margin-left: 4rem; }
.about-tab-content #terms a {
  text-decoration: none;
  word-break: break-word; }
.about-tab-content #terms a:hover {
  text-decoration: underline; }
.about-tab-content #members {
  display: none; }

.members-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1.3rem;
  column-gap: 1.3rem;
  row-gap: 7rem; }
@media (max-width: 56.25em) {
  .members-wrapper {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 37.5em) {
  .members-wrapper {
    grid-template-columns: repeat(1, 1fr); } }

.members-item {
  text-align: center; }
.members-item-button {
  border: none;
  background: none;
  width: 100%;
  cursor: pointer; }
.members-item-button:focus {
  outline: none; }
.members-item-button img {
  width: 100%;
  height: 28.8rem;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 7.9rem; }
@media (max-width: 75em) {
  .members-item-button img {
    height: 35.668rem; } }
@media (max-width: 37.5em) {
  .members-item-button img {
    height: 21.668rem;
    width: 22.2rem; } }
.members-item-name {
  margin: 2.4rem 0 0.7rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.52rem;
  text-align: left; }
@media (max-width: 37.5em) {
  .members-item-name {
    text-align: center; } }
.members-item-title {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.52rem;
  text-align: left; }
@media (max-width: 37.5em) {
  .members-item-title {
    text-align: center; } }
.members-item-details {
  position: fixed;
  display: flex;
  transform: scale(0);
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.1s; }
.members-item-details-wrapper {
  display: flex;
  background-color: white;
  max-width: 102rem;
  align-self: center;
  margin: 0 auto;
  position: relative;
  max-width: 80%;
  max-height: 80%; }
@media (max-width: 75em) {
  .members-item-details-wrapper {
    max-width: 80%;
    max-height: 80%; } }
@media (max-width: 56.25em) {
  .members-item-details-wrapper {
    flex-direction: column; } }
@media (max-width: 37.5em) {
  .members-item-details-wrapper {
    max-width: 90%; } }
.members-item-details img {
  min-width: 45%;
  max-width: 45%;
  -o-object-fit: cover;
  object-fit: cover; }
@media (max-width: 56.25em) {
  .members-item-details img {
    max-width: 100%;
    min-width: 100%;
    max-height: 25rem;
    -o-object-position: 100% 30%;
    object-position: 100% 30%; } }
.members-item-details-text {
  padding: 6rem 6.9rem 5.9rem 5.1rem;
  text-align: left;
  overflow: scroll; }
@media (max-width: 75em) {
  .members-item-details-text {
    padding: 3rem;
    overflow: scroll; } }
.members-item-details-name {
  font-size: 2.4rem;
  line-height: 3.36rem;
  font-weight: 600; }
.members-item-details-title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.24rem;
  margin-bottom: 3.4rem; }
.members-item-details-content {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3rem;
  color: #222222; }
.members-item-details-button {
  position: absolute;
  right: -1.6rem;
  top: -1.6rem;
  height: 6.4rem;
  width: 6.4rem;
  background-color: #222222;
  color: white;
  border: none;
  border-radius: 50%; }
.members-item-details-button::before {
  content: "";
  width: 3px;
  height: 3.4rem;
  background-color: white;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg); }
.members-item-details-button::after {
  content: "";
  width: 3px;
  height: 3.4rem;
  background-color: white;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg); }

.members-note {
  font-size: 1.8rem;
  line-height: 2.52rem;
  margin-top: 7rem;
  padding-top: 6.3rem;
  padding-bottom: 8.8rem;
  background-color: #fff; }
@media (max-width: 37.5em) {
  .members-note {
    margin-top: 4rem; } }
.members-note-title {
  color: #56CCF2; }
.members-note h4 {
  font-size: 1.8rem;
  line-height: 2.52rem;
  font-weight: 600; }
.members-note-flex {
  display: flex;
  font-size: 1.8rem;
  line-height: 2.52rem; }
.members-note-flex h4 {
  margin-bottom: 2.7rem;
  text-decoration: underline;
  font-weight: 600; }
.members-note-flex p {
  font-size: 1.8rem;
  line-height: 2.52rem; }
.members-note-div {
  margin-right: 8.9rem; }
.members-note a {
  text-decoration: none;
  color: #56CCF2; }
.members-note a:hover {
  text-decoration: underline; }

.resources {
  padding-bottom: 13.5rem; }
.resources-text {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #4F4F4F;
  padding-top: 6.3rem;
  padding-bottom: 7rem; }
.resources-text a {
  text-decoration: none;
  color: #2E94CD;
  font-weight: 700; }
.resources-text a:hover {
  text-decoration: underline; }
.resources-container {
  margin-top: 7.7rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 2rem; }
@media (max-width: 75em) {
  .resources-container {
    grid-template-columns: repeat(3, 1fr);
    margin-right: 4rem; } }
@media (max-width: 56.25em) {
  .resources-container {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 37.5em) {
  .resources-container {
    grid-template-columns: repeat(1, 1fr);
    margin-right: 0; } }
.resources-view-more {
  display: block;
  margin: 0 auto;
  margin-top: 18.2rem;
  width: 15.7rem;
  height: 5.3rem;
  border: none;
  border-radius: 8.1rem;
  color: white;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 600; }
.resources-view-more:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
.resources-view-more:focus {
  outline: none; }
.resources #key-pub-btn {
  background-color: #12789A; }
.resources #articles-btn {
  background-color: #2E94CD;
  display: none; }
.resources-container-two {
  grid-template-columns: repeat(3, 1fr);
  align-self: flex-start; }
@media (max-width: 75em) {
  .resources-container-two {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 56.25em) {
  .resources-container-two {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 37.5em) {
  .resources-container-two {
    grid-template-columns: repeat(1, 1fr); } }
.resources-container-b {
  display: none; }
@media (max-width: 56.25em) {
  .resources-container-b {
    flex-direction: column; } }
.resources-container-b-check {
  margin-top: 7.7rem;
  margin-right: 7.8rem;
  max-width: 24rem;
  min-width: 24rem; }
@media (max-width: 56.25em) {
  .resources-container-b-check {
    max-width: 100%;
    min-width: 100%; } }
.resources-container-b-checkbox {
  margin-bottom: 3.75rem;
  display: flex;
  align-items: center; }
@media (max-width: 56.25em) {
  .resources-container-b-checkbox {
    margin-right: 4rem; } }
.resources-container-b-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  z-index: 9; }
.resources-container-b-checkbox input:checked ~ span {
  background-color: #12789A;
  border-color: #12789A; }
.resources-container-b-checkbox input:checked ~ span::after {
  opacity: 1; }
.resources-container-b-checkbox label {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.996rem;
  color: #4F4F4F;
  margin-left: 3.2rem; }
.resources-container-b-checkbox span {
  position: absolute;
  cursor: pointer;
  height: 1.5rem;
  border: 2px solid #333333;
  border-radius: 2px;
  width: 1.5rem; }
.resources-container-b-checkbox span::after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg); }
.resources-container-b .resources-linkbox {
  background-color: #2E94CD; }
.resources-button {
  font-size: 1.8rem;
  line-height: 2.7rem;
  background: none;
  border: none;
  color: #828282;
  margin-top: 7rem;
  margin-right: 4.9rem;
  padding-bottom: 2px;
  transition: all 0.3s;
  text-align: left;
  cursor: pointer; }
.resources-button:focus {
  outline: none; }
@media (max-width: 56.25em) {
  .resources-button {
    margin-top: 3.7rem;
    margin-right: 0; } }
.resources .resources-date {
  display: flex;
  justify-content: space-between; }
.resources .resources-button-active {
  color: #12789A;
  border-bottom: 4px solid #12789A;
  font-weight: 700; }
.resources-linkbox {
  margin-bottom: 3rem;
  min-height: 31.7rem;
  background-color: #12789A;
  border-radius: 10px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  text-decoration: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
.resources-linkbox:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
@media (max-width: 37.5em) {
  .resources-linkbox {
    height: auto; } }
.resources-linkbox-title {
  font-size: 1.6rem;
  line-height: 2.24rem;
  font-weight: 500;
  color: white;
  margin-top: 3rem;
  margin-bottom: 3rem; }
.resources-linkbox-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.96rem;
  color: white;
  margin-bottom: 3.8rem;
  font-family: 'Poppins' !important; }
.resources-linkbox-link {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: white;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center; }
.resources-linkbox-link svg {
  margin-left: 1rem; }

.get-heading {
  display: flex;
  justify-content: flex-end;
  position: relative; }
@media (max-width: 75em) {
  .get-heading {
    padding: 0; } }
.get-heading-text {
  font-size: 4.5rem;
  line-height: 6.05rem;
  font-weight: 300;
  max-width: 56.6rem;
  position: absolute;
  left: 10rem;
  bottom: 8.8rem;
  z-index: 1; }
@media (max-width: 75em) {
  .get-heading-text {
    left: 0;
    max-width: 80%; } }
@media (max-width: 56.25em) {
  .get-heading-text {
    font-size: 3rem;
    line-height: 4.5rem; } }
@media (max-width: 37.5em) {
  .get-heading-text {
    bottom: 5rem;
    left: 2.4rem; } }
.get-heading-text span {
  background-color: white;
  padding-right: 3rem;
  padding-bottom: 1rem; }
@media (max-width: 75em) {
  .get-heading-text span {
    padding-left: 6rem; } }
@media (max-width: 37.5em) {
  .get-heading-text span {
    padding-left: 2rem;
    padding-right: 1rem;
    padding-top: 1rem;
    margin-left: -2.4rem; } }
.get-heading-img {
  min-width: 60%;
  max-width: 70%; }
@media (max-width: 75em) {
  .get-heading-img {
    min-width: 100%;
    max-width: 100%; } }
@media (max-width: 37.5em) {
  .get-heading-img {
    height: 30rem; } }
.get-heading-img img {
  width: 100%; }
@media (max-width: 37.5em) {
  .get-heading-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; } }

.survey {
  padding-top: 8rem;
  padding-bottom: 11.7rem;
  display: flex; }
@media (max-width: 56.25em) {
  .survey {
    flex-direction: column; } }
.survey-linkbox {
  max-width: 22.4rem;
  min-width: 22.4rem;
  margin-right: 7rem; }
@media (max-width: 56.25em) {
  .survey-linkbox {
    margin-right: 0;
    margin-bottom: 5rem; } }
@media (max-width: 37.5em) {
  .survey-linkbox {
    max-width: 100%;
    text-align: center; } }
.survey-linkbox h4 {
  font-size: 1.8rem;
  line-height: 2.9rem;
  font-weight: 500;
  margin-bottom: 3.4rem; }
.survey-linkbox a {
  width: 22.3rem;
  height: 5.3rem;
  background-color: #12789A;
  display: inline-block;
  display: flex;
  align-items: center;
  border-radius: 5rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.7rem;
  color: white;
  text-decoration: none;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
.survey-linkbox a:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
@media (max-width: 37.5em) {
  .survey-linkbox a {
    margin: 0 auto; } }
.survey-details ul {
  margin-left: 4rem; }
.survey-details p, .survey-details li {
  font-weight: 400;
  line-height: 2.7rem;
  font-size: 1.8rem;
  color: #4F4F4F; }
.survey-details a {
  color: #2E94CD;
  text-decoration: none; }
.survey-details a:hover {
  text-decoration: underline; }

.contact-heading {
  display: flex;
  justify-content: space-between;
  align-items: center; }
.contact-heading h1 {
  font-size: 4.5rem;
  line-height: 6.05rem;
  font-weight: 300;
  max-width: 55.5rem;
  background-color: white; }
@media (max-width: 37.5em) {
  .contact-heading h1 {
    line-height: 5.05rem; } }
.contact-heading p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  max-width: 46rem;
  background-color: white;
  margin: 2rem 0 5rem 0; }

.contact-svg1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1; }

.contact-svg2 {
  position: absolute;
  left: 0;
  z-index: -1; }
@media (max-width: 56.25em) {
  .contact-svg2 {
    display: none; } }

@media (max-width: 56.25em) {
  .contact-svg3 {
    position: absolute;
    right: 2rem;
    top: 13rem;
    z-index: -1; } }

@media (max-width: 37.5em) {
  .contact-svg3 {
    right: 0; } }

.form-tab {
  padding-top: 7.8rem;
  padding-bottom: 7rem;
  display: flex;
  justify-content: space-between; }
@media (max-width: 56.25em) {
  .form-tab {
    flex-direction: column; } }
.form-tab .success {
  font-size: 2.4rem;
  line-height: 5rem;
  margin: 0 auto;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }
@media (max-width: 37.5em) {
  .form-tab .success {
    line-height: 3.5rem; } }

@media (max-width: 56.25em) {
  .form-title {
    margin-bottom: 4rem; } }

.form-title-button-active {
  border-left: 4px solid #2E94CD !important; }
.form-title-button-active h4 {
  color: #171C2C !important; }

.form-title button {
  display: block;
  border: none;
  background: none;
  margin-bottom: 3.5rem;
  padding-left: 2rem; }
.form-title button:focus {
  outline: none; }
.form-title button h4 {
  font-size: 3rem;
  line-height: 4.5rem;
  font-weight: 300;
  color: #828282;
  text-align: left; }

.form-content {
  width: 60%; }
@media (max-width: 56.25em) {
  .form-content {
    width: 100%; } }
.form-content-flex {
  display: flex;
  justify-content: space-between; }
@media (max-width: 37.5em) {
  .form-content-flex {
    flex-direction: column; } }
.form-content-flex-div {
  width: 48%; }
@media (max-width: 37.5em) {
  .form-content-flex-div {
    width: 100%; } }
.form-content-flex input {
  margin-right: 2rem; }
@media (max-width: 37.5em) {
  .form-content-flex input {
    margin-right: 0; } }
.form-content h4 {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 1.8rem;
  font-weight: 500; }
.form-content input {
  height: 5.6rem;
  display: inline-block;
  width: 100%;
  background: white;
  border: 1px solid #DCDCDC;
  border-radius: 8px;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2rem;
  padding-left: 1.8rem; }
.form-content input::-moz-placeholder {
  color: #999999; }
.form-content input:-ms-input-placeholder {
  color: #999999; }
.form-content input::placeholder {
  color: #999999; }
.form-content input:focus {
  border: 1px solid #2E94CD;
  outline: none; }
.form-content textarea {
  display: inline-block;
  width: 100%;
  border: 1px solid #DCDCDC;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2rem;
  padding-left: 1.8rem;
  padding-top: 2.5rem; }
.form-content textarea::-moz-placeholder {
  color: #999999; }
.form-content textarea:-ms-input-placeholder {
  color: #999999; }
.form-content textarea::placeholder {
  color: #999999; }
.form-content textarea:focus {
  border: 1px solid #2E94CD;
  outline: none; }
.form-content button {
  width: 22.3rem;
  height: 5.3rem;
  background-color: #2E94CD;
  display: inline-block;
  display: flex;
  align-items: center;
  border-radius: 5rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.7rem;
  color: white;
  text-decoration: none;
  justify-content: center;
  margin-top: 6.3rem;
  margin-left: auto;
  border: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); }
.form-content button:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
.form-content button:focus {
  outline: none; }
@media (max-width: 56.25em) {
  .form-content button {
    margin-left: 0; } }

.contact-details {
  display: flex;
  justify-content: space-evenly;
  padding-top: 10.3rem;
  padding-bottom: 10.3rem; }
@media (max-width: 56.25em) {
  .contact-details {
    flex-direction: column; } }

.contact-detail {
  display: flex;
  align-items: center; }
@media (max-width: 56.25em) {
  .contact-detail {
    margin-bottom: 4.8rem; } }
.contact-detail svg {
  height: 100%; }
.contact-detail-title {
  font-size: 1.8rem;
  line-height: 2.75rem;
  color: #171C2C;
  margin-left: 2.3rem; }
.contact-detail-content {
  font-size: 2.4rem;
  line-height: 5rem;
  font-weight: 500;
  margin-left: 2.3rem; }
@media (max-width: 37.5em) {
  .contact-detail-content {
    line-height: 3.5rem; } }

.privacy-content {
  padding-top: 8rem;
  padding-bottom: 23rem;
  font-size: 1.8rem;
  line-height: 2.7rem; }
@media (max-width: 37.5em) {
  .privacy-content {
    font-size: 1.6rem;
    line-height: 2.5rem; } }
.privacy-content ul {
  margin-left: 4rem; }
.privacy-content table {
  border-collapse: collapse;
  width: 100%; }
.privacy-content td,
.privacy-content th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px; }
.privacy-content tr:nth-child(even) {
  background-color: #dddddd; }

.updates-heading {
  margin-top: 2.1rem;
  margin-bottom: 6.7rem;
  display: flex;
  align-items: center; }
@media (max-width: 56.25em) {
  .updates-heading {
    flex-direction: column-reverse; } }
.updates-heading-text {
  margin-right: 5.3rem;
  color: #171C2C; }
@media (max-width: 56.25em) {
  .updates-heading-text {
    margin-top: 5rem;
    margin-right: 0; } }
.updates-heading-primary {
  font-size: 4.5rem;
  line-height: 4.799rem;
  font-weight: 300; }
@media (max-width: 37.5em) {
  .updates-heading-primary {
    font-size: 3rem;
    line-height: 4.5rem; } }
.updates-heading-secondary {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #4F4F4F;
  margin: 2.4rem 0 4rem 0; }
.updates-heading a {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #2E94CD;
  text-decoration: none;
  display: block;
  align-items: center; }
.updates-heading a svg {
  margin-left: 1rem;
  transition: all 0.2s; }
.updates-heading a:hover {
  font-weight: 800; }
.updates-heading a:hover svg {
  margin-left: 1.5rem; }
.updates-heading-image {
  min-width: 50%;
  height: 38.2rem; }
@media (max-width: 56.25em) {
  .updates-heading-image {
    min-width: 100%; } }
.updates-heading-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.updates-filter {
  margin-bottom: 3.3rem; }
.updates-filter select {
  background-color: #F7F7F7;
  border: none;
  border-radius: 8px;
  padding: 1rem 1.8rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.1rem;
  margin-right: 1.3rem; }

.updates-main {
  padding: 7.5rem 0; }

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  row-gap: 1.4rem;
  margin-bottom: 11.4rem; }
@media (max-width: 56.25em) {
  .updates-grid {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 37.5em) {
  .updates-grid {
    grid-template-columns: repeat(1, 1fr); } }

.updates-item {
  min-height: 38.7rem;
  background-color: #2E94CD;
  display: flex;
  align-items: flex-end;
  border-radius: 8px;
  position: relative;
  background-size: cover;
  overflow: hidden; }
@media (max-width: 37.5em) {
  .updates-item {
    height: auto; } }
.updates-item::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 8px; }
.updates-item-text {
  background-color: #fff;
  margin: 1.6rem;
  padding: 2.7rem 2.4rem;
  border-radius: 8px;
  z-index: 1;
  overflow: hidden; }
@media (max-width: 56.25em) {
  .updates-item-text {
    max-height: 100%;
    margin-top: 10rem; } }
.updates-item-text h4 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3.199rem;
  color: #171C2C; }
@media (max-width: 37.5em) {
  .updates-item-text h4 {
    font-size: 1.8rem;
    line-height: 2.5rem; } }
@media (hover: none) {
  .updates-item-text h4 {
    margin: 1.4rem 0 2.6rem 0; } }
.updates-item-text a {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #2E94CD;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 0;
  overflow: hidden;
  transition: all 0.1s; }
@media (hover: none) {
  .updates-item-text a {
    height: 100%; } }
.updates-item-text a svg {
  margin-left: 1rem; }
@media (hover: none) {
  .updates-item::after {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); } }
.updates-item:hover::after {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); }
.updates-item:hover .updates-item-text {
  padding: 3rem 2.4rem; }
.updates-item:hover .updates-item-text h4 {
  margin: 1.4rem 0 2.6rem 0; }
.updates-item:hover .updates-item-text a {
  height: 3rem; }

.pagination {
  margin-bottom: 6.6rem;
  text-align: center; }
.pagination button {
  height: 4.4rem;
  padding: 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  border: none;
  color: #fff;
  border-radius: 50px;
  background-color: #2E94CD;
  margin-right: 2.3rem; }
.pagination button:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }
@media (max-width: 37.5em) {
  .pagination button {
    display: block;
    margin: 0 auto; } }
.pagination button:focus {
  outline: none; }
.pagination .page-number {
  background: none;
  color: #171C2C;
  border-radius: 50%;
  margin: 2rem 0;
  display: inline;
  width: 4.4rem; }
.pagination .page-number-active {
  background-color: #edf2f7; }

.inner-heading {
  margin-left: 10.3rem;
  margin-right: 10.3rem; }
@media (max-width: 75em) {
  .inner-heading {
    margin-left: 0;
    margin-right: 0; } }
.inner-heading-text {
  max-width: 91.5rem;
  text-align: center;
  margin: 7.8rem auto; }
@media (max-width: 37.5em) {
  .inner-heading-text {
    text-align: left;
    margin: 2.8rem auto; } }
.inner-heading-primary {
  font-size: 4.5rem;
  line-height: 5.549rem;
  font-weight: 300;
  margin-bottom: 3rem; }
@media (max-width: 37.5em) {
  .inner-heading-primary {
    font-size: 3rem;
    line-height: 4.5rem;
    margin-bottom: 1rem; } }
.inner-heading-secondary {
  font-size: 1.8rem;
  line-height: 5.549rem; }
@media (max-width: 37.5em) {
  .inner-heading-secondary {
    text-align: center; } }
.inner-heading-category {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #2E94CD; }
@media (max-width: 37.5em) {
  .inner-heading-category {
    text-align: center; } }
.inner-heading-image {
  height: 49rem; }
@media (max-width: 37.5em) {
  .inner-heading-image {
    height: 30rem; } }
.inner-heading-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.inner-article {
  margin: 6.5rem 15.2rem;
  font-size: 1.8rem;
  line-height: 2.7rem; }
@media (max-width: 75em) {
  .inner-article {
    margin: 6.5rem 7.2rem; } }
@media (max-width: 56.25em) {
  .inner-article {
    margin: 5.1rem 0; } }

.inner-backlink {
  display: block;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.52rem;
  color: #222222;
  text-decoration: none;
  margin-bottom: 9.4rem; }
.inner-backlink svg {
  margin-right: 9px; }

.report-heading {
  display: flex;
  justify-content: space-between;
  align-items: center; }
@media (max-width: 75em) {
  .report-heading {
    flex-direction: column;
    align-items: normal; } }
.report-heading h1 {
  font-size: 4.5rem;
  line-height: 6.05rem;
  font-weight: 300;
  max-width: 71%;
  margin: 8.8rem 0 6.7rem 0;
  max-width: 57.8rem;
  background-color: white; }
@media (max-width: 75em) {
  .report-heading h1 {
    max-width: 100%;
    padding: 0;
    margin: 8.8rem 0 5rem 0; } }
@media (max-width: 37.5em) {
  .report-heading h1 {
    font-size: 3rem;
    line-height: 4.5rem; } }
.report-heading a {
  display: flex;
  width: 29.3rem;
  height: 5.3rem;
  background-color: #12789A;
  color: white !important;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 3rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-bottom: 10.1rem; }
.report-heading a:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }

.report-content {
  display: flex;
  margin-bottom: 14.5rem; }
@media (max-width: 56.25em) {
  .report-content {
    flex-direction: column; } }

.report-buttons {
  min-width: 26rem;
  margin-right: 9.7rem; }
@media (max-width: 37.5em) {
  .report-buttons {
    min-width: 100%; } }
.report-buttons .active {
  background-color: #F7F8FB; }
.report-buttons p {
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 2.95rem;
  margin-bottom: 3rem; }
.report-buttons button {
  font-weight: 700;
  font-size: 1.2rem;
  color: #222222;
  /*padding: 1rem 2.4rem;*/
  padding: 0 !important;
  height: 5.7rem;
  border: none;
  background: none;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  text-align: left;
  cursor: pointer;
height: fit-content;}

.report-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6.686rem; }
@media (max-width: 75em) {
  .report-title {
    flex-direction: column; } }
.report-title h3 {
  font-size: 2.4rem;
  line-height: 5.4rem;
  font-weight: 500;
  color: #333333; }
@media (max-width: 75em) {
  .report-title h3 {
    margin-bottom: 4rem; } }
@media (max-width: 75em) {
  .report-title h3 {
    margin-bottom: 2rem;
    margin-top: 4rem; } }
@media (max-width: 37.5em) {
  .report-title h3 {
    font-size: 2.8rem;
    line-height: 4.4rem; } }
.report-title a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25rem;
  height: 5.3rem;
  color: #12789A !important;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #12789A;
  border-radius: 3rem; }
.report-title a:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); }

.report-body {
  line-height: 2.4rem;
  font-size: 1.6rem;
  color: #333333; }





/*  WP Custom Classes */

.btn-submit{
  width: 22.3rem !important;
  height: 5.3rem !important;
  background-color: #2E94CD !important;
  display: inline-block !important;
  display: flex !important;
  align-items: center !important;
  border-radius: 5rem !important;
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  line-height: 2.7rem !important;
  color: white !important;
  text-decoration: none !important;
  justify-content: center !important;
  margin-top: 6.3rem !important;
  margin-left: auto !important;
  border: none !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)) !important;
}

.members-item-details-text p{
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3rem;
  color: #222222;
}

main section  p{
  font-size: 1.8rem;
  line-height: 2.7rem;
  /*color: #4F4F4F;*/
}

main section a{
  font-size: 1.8rem;
  line-height: 2.7rem;
  text-decoration: none;
  color: #2E94CD;
  font-weight: 700;
}

 /* Pagination */



 a.prev.page-numbers,
 a.next.page-numbers
 {
   /*font-family: HKGrotesk;*/
  height: 4.4rem;
  /*padding: 0 1.6rem;*/
  padding: 1.5rem 1.6rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  border: none;
  color: #fff;
  border-radius: 50px;
  background-color: #2E94CD;
  margin-right: 2.3rem;
  text-decoration: none;

}

 a.prev.page-numbers:hover{
   background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
 }
 a.next.page-numbers:hover{
   background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
 }

.page-numbers.current > span{
  background-color: #edf2f7;
}
span.page-numbers.current{
  background-color: #edf2f7 !important;
  background: none;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  color:#171C2C;
  border-radius: 50%;
  margin: 2rem 0;
  display: inline;
  width: 4.4rem;
  height: 4.4rem;
  padding: 8px 1.6rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  border: none;
}
span.page-numbers.current:hover{
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

a.page-numbers{
  height: 4.4rem;
  padding: 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  border: none;
  color:#171C2C;
  border-radius: 50%;
  margin: 2rem 0;
  display: inline;
  width: 4.4rem;
  text-decoration: none;
}


/*div.about-tab-content p{*/
/*  padding-bottom: 4.1rem;*/
/*}*/

#terms p{

  padding-bottom: 4.1rem;

}

button#key-pub-btn,
button#articles-btn{
  cursor: pointer;
}

.form-content{
  width: 100%;
}

.btn-submit{
  cursor: pointer;
}

.mobile-nav-list li{
  padding-bottom: 1rem;
}

.current-menu-item a {
  font-weight: 700; }

.wp-block-embed {
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
}

#report-body p {
   line-height: 2.4rem;
   font-size: 1.6rem;
   color: #333333;
}

/** Custom CSS**/
.report-buttons .children {
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}

.report-buttons .children button a{
  padding: 1.2rem;
  line-height: 20px;
  font-family: 'HKGrotesk';

}
.report-buttons .children:not('.page-child') button {

}

.report__title{
max-width: 600px;
}

.report-title-cover{
  width: 100%;
}
.report-title h3{
  line-height: 3.5rem;

}

.wp-block-collapsible-block-container {
  color: #333;
  margin-bottom: -1.375rem;
}

.report-body  h1{
  color: #12789A;
  font-weight: normal;
}


.report-body  h2{
  color: #12789A;
  font-weight: normal;
}
.report-body  h3{
  color: #12789A;
  font-weight: normal;
}
.report-body  h3{
  color: #12789A;
  font-weight: normal;
  max-width: 600px;
}
.report-body  h4{
  color: #12789A;
  font-weight: normal;
}
.report-body  h5{
  color: #12789A;
  font-weight: normal;
}

button + .level-2-children{
  display: none;
}

button.active + .level-2-children{
  display: block;
}
/*figure.wp-block-table > table > tbody{*/
/*  border: 1px solid black;*/
/*}*/

.wp-block-table td, .wp-block-table th {
  border: 1px solid;
}


.wp-block-table td, .wp-block-table th {
  padding: 1.5em;
  word-break: normal;
}

.wp-block-table table {
  border-collapse: collapse;
  border-spacing: none ;
}

.post,
.page {
  margin-bottom: 0 !important;
}

.report-buttons .children button a {
  display: block;
  padding: 1.2rem;
  line-height: 20px;
}

.site{
  overflow: hidden;
}

.report-heading p {
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  color: #171C2C;
  width: 100%;
  max-width: 28.437em;
}

.report-heading h1 {
  margin-bottom: 22px;
}

.header-download-report {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin-bottom: 10.1rem;
}

@media(max-width: 740px) {
  .header-download-report {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-download-report img {
    margin-top: 25px;
  }
}

.header-download-report a {
  margin-bottom: 0;
}

.header-download-report img {
  height: 209px;
  margin-left: 49px;
  object-fit: cover;
  object-position: center;
  max-width: 150px;
  width: 100%;
}


@media(max-width: 992px) {
  .header-download-report img {
    margin-left: 0;
  }
}

.display-on {
  display: block !important;
}

.display-off {
  display: none;
}