* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

body {
  font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

p {
  color: #f1f1e6;
  font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

.h1-gradient,
h1 {
  font: 600 2.5rem/3.25rem "Jacques Francois", serif;
}

.h1-gradient {
  background: -webkit-linear-gradient(#eff5f1, #ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  background: -webkit-linear-gradient(#f79e02, #f1f436);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

span {
  background: -webkit-gradient(linear, left top, right top, from(#833ab4), color-stop(50%, #fd1d1d), to(#fcb045));
  background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  color: #DB8D05;
  font: 600 2rem/2.75rem "Jacques Francois", serif;
}

h3 {
  color: #DB8D05;
  font: 600 1.75rem/2.375rem "Jacques Francois", serif;
}

h4 {
  background: -webkit-gradient(linear, left top, right top, from(#f1f436), color-stop(40%, #f79e02), color-stop(71%, #e7380a));
  background: linear-gradient(90deg, #f1f436 0%, #f79e02 40%, #e7380a 71%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font: 600 1.5rem/2.125rem "Jacques Francois", serif;
}

h5 {
  background: -webkit-gradient(linear, left top, right top, from(#f1f436), color-stop(40%, #f79e02), color-stop(71%, #e7380a));
  background: linear-gradient(90deg, #f1f436 0%, #f79e02 40%, #e7380a 71%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font: 600 1.25rem/1.75rem "Jacques Francois", serif;
}

h6 {
  color: #DB8D05;
  font: 600 1rem/1.5rem "Jacques Francois", serif;
}

.p-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}

li {
  list-style: none;
}

section,
footer {
  padding: 1rem 5rem;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #060606;
  /* Extend the background of an element outside of its container to cover the full screen width*/
  -webkit-box-shadow: 0 0 0 100vmax #060606;
          box-shadow: 0 0 0 100vmax #060606;
  padding: 0rem 5rem;
}

header nav {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

header nav svg.close {
  display: none;
}

header .menu {
  display: none;
}

header .logo-image {
  margin-right: auto;
  cursor: pointer;
}

header .logo-image img {
  width: 16em;
  -o-object-fit: cover;
     object-fit: cover;
}

header .nav-links {
  font-weight: 600;
  font-size: .875rem;
}

header .nav-links li {
  display: inline-block;
  padding: 0px 10px;
}

header .nav-links li a {
  text-decoration: none;
  color: #f1f1e6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

header .nav-links li a:hover {
  color: #F0E68C;
}

header .nav-links li:hover > ul,
header .nav-links li:focus-within > ul,
header .nav-links li .dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

header .nav-links li svg path {
  fill: #f1f1e6;
}

header .nav-links .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -ms-grid-column-align: center;
      justify-self: center;
  display: none;
}

header .nav-links .dropdown-menu li {
  clear: both;
  width: 100%;
  padding: 0rem;
}

.cta {
  display: inline-block;
  margin-left: 10px;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  color: #000;
  background-color: #FEBE10;
  font-weight: 600;
  font-size: .875rem;
  line-height: 0;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.cta:hover {
  background-color: #DB8D05;
}

.primary-button,
.secondary-button {
  margin-left: .375rem;
  padding: 1.5rem 1.7rem;
}

.secondary-button {
  background-color: #F0E68C;
}

.secondary-button:hover {
  background-color: #beb66c;
}

.hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  background: #030303;
  -webkit-box-shadow: 0 0 0 100vmax #030303;
          box-shadow: 0 0 0 100vmax #030303;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}

.hero .text-container {
  display: -ms-grid;
  display: grid;
  text-align: center;
  padding: 0rem 1rem;
  -webkit-animation: move-down-text 1s ease-in-out forwards;
          animation: move-down-text 1s ease-in-out forwards;
  opacity: 0;
}

.hero .text-container .h1-gradient {
  margin-bottom: 0.5rem;
}

.hero .image-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
}

.hero .image-container .image {
  max-width: 30em;
  max-height: 30em;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
}

.hero .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.hero .down-arrow {
  display: none;
}

.hero .p-large {
  margin-bottom: 0.5rem;
}

.intro {
  text-align: center;
  background: #060606;
  -webkit-box-shadow: 0 0 0 100vmax #060606;
          box-shadow: 0 0 0 100vmax #060606;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}

.intro h1 {
  margin-bottom: 1rem;
}

.intro .card {
  border-color: white;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border: 0;
  background-color: transparent;
}

.intro .card-image {
  width: 5.5rem;
  height: 5.5rem;
  margin-right: auto;
  margin-bottom: 1.75rem;
  margin-left: auto;
  border-radius: 50%;
  background-color: #030303;
}

.intro .card-image svg {
  width: 2.5em;
  height: 5.5em;
}

.intro .card-body {
  padding: 0;
}

.intro .card-title {
  margin-bottom: .5rem;
}

.research {
  text-align: center;
  background: #030303;
  -webkit-box-shadow: 0 0 0 100vmax #030303;
          box-shadow: 0 0 0 100vmax #030303;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}

.research .p-large {
  margin-bottom: 1rem;
}

.research img {
  /*Responsive images*/
  width: 100%;
  /*Keeps images in the same proportion.*/
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 15em;
  border-radius: 1rem;
}

.research .desc {
  line-height: 1.5rem;
}

.research .button-container {
  margin-bottom: 1rem;
}

.people {
  text-align: center;
  background: #060606;
  -webkit-box-shadow: 0 0 0 100vmax #060606;
          box-shadow: 0 0 0 100vmax #060606;
}

.people h1 {
  margin-bottom: 1rem;
}

.people .people-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  gap: 1em;
}

.people .people-container .card-container {
  background-color: #030303;
  border-radius: 5px;
  -webkit-box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.75);
  padding: 1.5em 1em;
  position: relative;
  max-width: 100%;
  text-align: center;
  grid-column: span 2;
  /* Dealing with 2 orphan items */
  /* Dealing with single orphan */
}

.people .people-container .card-container h5 {
  font: 600 1.05rem/1.75rem Poppins, sans-serif;
}

.people .people-container .card-container:last-child:nth-child(3n - 1) {
  grid-column-end: -2;
}

.people .people-container .card-container:nth-last-child(2):nth-child(3n+1) {
  grid-column-end: 4;
}

.people .people-container .card-container:last-child:nth-child(3n - 2) {
  grid-column-end: 5;
}

.people .people-container .card-container a {
  color: #F0E68C;
}

.people .people-container .card-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 8em;
  height: 8em;
}

.people .people-container .card-container .round {
  border: 1px solid #F0E68C;
  border-radius: 50%;
  padding: 7px;
}

.social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social-links svg path {
  fill: #F0E68C;
}

.social-icons {
  width: 1.6em;
  height: 1.6em;
  margin: .5em .5em;
}

.join-us {
  background-color: #030303;
  text-align: center;
  -webkit-box-shadow: 0 0 0 100vmax #030303;
          box-shadow: 0 0 0 100vmax #030303;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}

.join-us .join-us-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[4];
      grid-template-columns: repeat(4, auto);
  gap: 1em;
}

.join-us .img-container {
  padding: 1.5rem 1.5rem;
}

.join-us .img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 12em;
  max-height: 12em;
  border-radius: 1rem;
}

.join-us a {
  color: #FEBE10;
}

.advocacy, .funding, .donate, .publications, .news {
  background-color: #030303;
  -webkit-box-shadow: 0 0 0 100vmax #030303;
          box-shadow: 0 0 0 100vmax #030303;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  text-align: center;
}

.advocacy .description, .funding .description, .donate .description, .publications .description, .news .description {
  text-align: justify;
}

.featured-in {
  background-color: #060606;
  text-align: center;
  -webkit-box-shadow: 0 0 0 100vmax #060606;
          box-shadow: 0 0 0 100vmax #060606;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}

.featured-in .featured-in-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}

.featured-in .logo-container {
  padding: 1rem .5rem;
}

.featured-in img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 15em;
  max-height: 2em;
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}

footer {
  text-align: left;
  background: #030303;
  -webkit-box-shadow: 0 0 0 100vmax #030303;
          box-shadow: 0 0 0 100vmax #030303;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}

footer .footer-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

footer .footer-container .footer-element a {
  text-decoration: none;
  color: #f1f1e6;
}

footer .footer-container .footer-element .footer-contact-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-container .footer-element li {
  color: #f1f1e6;
}

footer .footer-container .footer-element svg {
  color: #f1f1e6;
  fill: none;
}

footer .footer-container .footer-element .contact-icons {
  width: 1em;
  height: 1em;
  margin-right: .5em;
  margin-top: .3em;
  margin-bottom: .3em;
}

footer .made-with-love-footer {
  display: block;
  text-align: center;
  background-color: #030303;
  padding-top: 1rem;
  border-top: 1px solid #444444;
}

footer .made-with-love-footer a {
  text-decoration: none;
  color: #f1f1e6;
}

.border-right {
  border-right: 1px solid #444444;
}

.card-title {
  font-size: 25px;
  line-height: 1.3em;
  color: #DB8D05;
  margin-bottom: .2em;
}

.card-image {
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px 40px 0 0;
  opacity: .91;
}

@media only screen and (min-width: 1200px) {
  .wrapper {
    width: 1200px;
    /*Keeps it centered*/
    margin: 0 auto;
  }
  .feature {
    gap: 0;
  }
  .intro .card {
    width: 20rem;
  }
  .intro .card:nth-of-type(3n+2) {
    margin-right: 4.375rem;
    margin-left: 4.375rem;
  }
}

.open-nav {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media (min-width: 992px) {
  .h1-gradient {
    font-size: 3.75rem;
    line-height: 4.75rem;
  }
  .intro .card {
    display: inline-block;
    width: 18rem;
    vertical-align: top;
  }
  .intro .card:nth-of-type(3n+2) {
    margin-right: 1.75rem;
    margin-left: 1.75rem;
  }
  .feature {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
    /*Whitespace between the columns*/
    gap: 3em;
    /*Push each feature away from each other*/
    margin-bottom: 4em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
  }
  .feature img {
    width: 25em;
    border-radius: 1rem;
  }
  .feature .content {
    text-align: center;
    width: 30em;
  }
  .feature.left {
        grid-template-areas: "left right";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
  }
  .feature.left img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: left;
    width: 25em;
  }
  .feature.left .content {
    text-align: center;
    width: 30em;
    -ms-grid-column-align: left;
        justify-self: left;
  }
}

@media only screen and (max-width: 480px) {
  section,
  footer {
    padding: 1rem .5rem;
  }
  header {
    padding: .5rem .5rem;
  }
  header nav {
    position: fixed;
    right: 0;
    top: 0;
    background: #030303;
    height: 100vh;
    width: 50%;
    z-index: 2;
    text-transform: uppercase;
    /*Hidding the menu*/
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    /*Animating from a point to another*/
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
  }
  header nav .nav-links {
    list-style-type: none;
    padding: 0;
    margin-top: 8em;
  }
  header nav .nav-links li {
    /*Padding on a link element won't work unless we use display:block*/
    padding: .75em 2em;
    display: block;
  }
  header nav svg.close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    margin: 2em;
    width: 2.5em;
    cursor: pointer;
  }
  header svg.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1.5em;
    margin-top: -.6em;
    cursor: pointer;
  }
  header .logo-image img {
    content: url("/images/favicon.png");
    max-width: 2em;
    max-height: 2em;
  }
  .hero {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .hero .text-container {
    text-align: center;
    padding: 0rem;
  }
  .hero .text-container .button-container {
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero .text-container .h1-gradient {
    margin-top: .5em;
  }
  .hero .text-container .h1-questions {
    background: -webkit-linear-gradient(#eff5f1, #ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero .text-container .down-arrow {
    display: block;
    margin: auto;
    stroke: white;
    width: 1em;
    height: 7em;
    animation: move-arrow 1s alternate-reverse infinite;
  }
  .hero .text-container .down-arrow path {
    fill: white;
  }
  .hero .image-container {
    display: none;
  }
  .hero .image-container .image {
    max-width: 24em;
    max-height: 20em;
    -o-object-fit: cover;
       object-fit: cover;
    text-align: center;
  }
  .featured-in .featured-in-container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: .5em;
  }
  .featured-in .featured-in-container .logo-container {
    padding: .5rem .5rem;
  }
  .research .feature img {
    max-height: 10em;
  }
  .no-scrollbar {
    -ms-scroll-snap-type: inline mandatory;
        scroll-snap-type: inline mandatory;
    scroll-padding-inline: 1rem;
    /*Disabling scrollbar*/
    scrollbar-width: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .no-scrollbar > * {
    scroll-snap-align: start;
  }
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .people .people-container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: auto;
    padding: 0 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
  .people .people-container .card-container {
    grid-column: span 1;
  }
  .people .people-container .card-container:last-child, .people .people-container .card-container:nth-last-child(2) {
    grid-column-end: auto !important;
  }
  .join-us .join-us-container {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    grid-auto-flow: column;
    padding: 0 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .join-us .join-us-container::-webkit-scrollbar {
    display: none;
  }
  footer .footer-container {
    display: block;
  }
  footer .footer-container .footer-contact-element {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer-container,
  footer .made-with-love-footer {
    text-align: center;
  }
  .border-right {
    border-right: none;
  }
}

@-webkit-keyframes move-down-text {
  from {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes move-down-text {
  from {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes move-arrow {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes move-arrow {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/*# sourceMappingURL=styles.css.map */