@font-face {
  font-family: "claire";
  src: url("../fonts/claire_news_light.woff2");
  font-weight: normal;
}
@font-face {
  font-family: "sentiments";
  src: url("../fonts/HKSentiments-Medium.woff2");
  font-weight: bold;
}
@font-face {
  font-family: "sentiments";
  src: url("../fonts/HKSentiments-Regular.woff2");
  font-weight: normal;
}
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
* {
  box-sizing: border-box;
}

html, body {
  color: #232943;
  font-size: 1em;
  line-height: 1.75em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  height: 100%;
}

body {
  min-height: 100%;
  background-color: rgb(248, 243, 220);
}

body.overflow {
  overflow: hidden;
}

::-moz-selection {
  background: rgba(244, 243, 243, 0.7);
  color: #232943;
  text-shadow: none;
}

::selection {
  background: rgba(244, 243, 243, 0.7);
  color: #232943;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html, body {
  font-family: "sentiments", "Helvetica", serif;
  font-size: 17px;
}

p {
  color: #232943;
  font-size: 1em;
}

ul li {
  margin-bottom: 0.5em;
}

p.bigger {
  font-size: 1.2em;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
}

p.smaller {
  font-size: 1em;
  line-height: 1.18em;
}

h1 {
  font-family: "claire", "Georgia", serif;
  font-size: 4.375em;
  line-height: 5.625rem;
  margin-bottom: 0;
  color: #324658;
  font-weight: normal;
  margin: 0;
}

h2 {
  font-family: "claire", "Georgia", serif;
  font-size: 1.75em;
  line-height: 2.375rem;
  font-weight: normal;
  margin-bottom: 1em;
  color: #324658;
}

h3 {
  font-family: "claire", "Georgia", serif;
  font-size: 1.25em;
  line-height: 2rem;
  color: #324658;
  font-weight: normal;
}

a {
  color: #232943;
  text-decoration: none;
}

.lang-menu {
  position: relative;
  text-align: right;
  z-index: 10;
  padding: 0 1em;
}
.lang-menu a.selected {
  font-weight: bold;
}

#MobileNav {
  display: none;
}

#HambMenu {
  display: none;
}

.main-header {
  background-color: rgb(248, 243, 220);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 10000;
  padding: 1em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}
.main-header.scrolled {
  padding: 0 1em;
}
.main-header .logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  opacity: 1;
}
.main-header .logo img {
  transition: all 0.5s ease;
}
.main-header .logo img.disappear {
  opacity: 0;
  transform: translateX(-100%);
}
.main-header .nav-wrapper {
  display: flex;
  align-items: center;
}
.main-header .nav-wrapper nav a {
  color: #455588;
  font-size: 1.25em;
  text-decoration: none;
}
.main-header .nav-wrapper .top-nav {
  background-color: #455588;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 2px;
  border-radius: 100px;
}
.main-header .nav-wrapper .top-nav a {
  color: #fff;
  padding: 0.8em 1em;
  display: inline-block;
  position: relative;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  min-width: 120px;
}
.main-header .nav-wrapper .top-nav a.comprendre::after {
  background-color: rgb(248, 243, 220);
}
.main-header .nav-wrapper .top-nav a.prevenir::after {
  background-color: #E3DAEE;
}
.main-header .nav-wrapper .top-nav a.agir::after {
  background-color: #F9F0F0;
}
.main-header .nav-wrapper .top-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 100px;
  transform: translateY(calc(50% + 2px));
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.main-header .nav-wrapper .top-nav a:hover, .main-header .nav-wrapper .top-nav a.active {
  color: #232943;
}
.main-header .nav-wrapper .top-nav a:hover::after, .main-header .nav-wrapper .top-nav a.active::after {
  opacity: 1;
  transform: translateY(0);
}
.main-header .nav-wrapper .secondary a {
  padding-left: 1em;
}

section {
  padding: 12em 0;
  background-color: #455588;
  min-height: 100vh;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
section article {
  position: relative;
  z-index: 2;
}
section a {
  font-weight: bold;
}
section .note {
  border: #232943 2px solid;
}
section .note p {
  font-size: 0.8em;
}
section .note h3 {
  margin-top: 0;
}
section.lightyellow {
  background-color: rgb(248, 243, 220);
}
section.lightyellow .eyebrow {
  color: #f16c56;
}
section.lightyellow .note {
  background-color: #F9F0F0;
  box-shadow: 5px 5px 7px rgba(121, 79, 173, 0.2);
}
section.lightblue {
  background-color: #EEF2FA;
}
section.lightblue .note {
  background-color: rgb(248, 243, 220);
  box-shadow: 5px 5px 7px rgba(80, 121, 204, 0.2);
}
section.lightblue a {
  color: #455588;
}
section.lightpink {
  background-color: #F9F0F0;
}
section.lightpink .note {
  background-color: #E3DAEE;
  box-shadow: 5px 5px 7px rgba(205, 131, 131, 0.2);
}
section.lightpurpple {
  background-color: #E3DAEE;
}
section.lightpurpple .note {
  background-color: #F9F0F0;
  box-shadow: 5px 5px 7px rgba(121, 79, 173, 0.2);
}
section .title img {
  margin: 2em 0;
}
section#testimonials .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section#testimonials h1, section#testimonials .eyebrow {
  text-align: center;
}
section#testimonials .video {
  position: relative;
  padding: 24px;
}
section#testimonials .video .play-button {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  margin-left: -35px;
  margin-top: -35px;
  transform: scale(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 100%;
  box-shadow: 0px 0px 17px rgba(0, 0, 1, 0.2);
}
section#testimonials .video:hover .play-button {
  transform: scale(130%);
  z-index: 5;
}
section#testimonials .video:hover .video-thumbnail {
  opacity: 0.5;
}
section#testimonials .video .video-thumbnail {
  border-radius: 48px;
  box-shadow: 0px 0px 17px rgba(0, 0, 1, 0.2);
}
section#intro {
  padding-top: 0;
  min-height: calc(100vh - 260px);
}
section .content-inner {
  display: flex;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1600px;
  min-height: inherit;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
section .content-inner.inverted {
  flex-direction: row-reverse;
}
section .content-inner li {
  line-height: 1.8em;
}
section .content-inner .note {
  text-decoration: none;
  color: #000;
  display: block;
  height: auto;
  width: 60%;
  padding: 2em;
  opacity: 0;
  transform: rotate(-25deg) translateY(-100%);
  transform-origin: center center;
  transition: all 1s ease;
}
section .content-inner .note.active {
  opacity: 1;
  transform: rotate(-6deg) translateY(-50%);
}
section .content-inner .note a {
  color: #455588;
  text-decoration: underline;
}
section .column {
  width: 50%;
}
section .column1 {
  width: 50%;
}
section .column2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#testimonials .content-inner {
  flex-direction: column;
  align-items: flex-start;
}
section#testimonials .testimonial-content {
  width: 100%;
}
section#testimonials .testimonial-item {
  margin: 2em 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}
section#testimonials .testimonial-item.inverted {
  flex-direction: row-reverse;
}
section#testimonials .testimonial-item.inverted .column {
  width: 50%;
}
section#testimonials .testimonial-item img {
  max-width: 100%;
  height: auto;
}
section#testimonials blockquote {
  margin-left: 0;
}
section#testimonials figure img {
  border-radius: 100%;
  height: 48px;
  width: 48px;
}
section .partners {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 20px;
  align-items: center;
}
section .partners .partner {
  background-color: rgb(248, 243, 220);
  max-width: 280px;
  height: auto;
}
section .partners .partner img {
  max-width: 100%;
  height: auto;
}
section#project-team {
  min-height: auto;
  font-size: 0.8em;
  line-height: 1.25em;
}
section#project-team h3 {
  font-family: "sentiments", "Helvetica", serif;
  font-weight: bold;
  margin: 0;
}
section#project-team .team-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
section#project-team .project-team-content, section#project-team .thanks {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
section#project-team h4 {
  margin: 16px 0 0;
}
section#project-team .team-member {
  width: 20%;
  padding: 0 40px 16px 0;
}
section#project-team .team-member:last-child {
  padding-right: 0px;
}
section .animation {
  position: absolute;
  z-index: 1;
}
section .animation.first {
  width: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
section .animation.second {
  width: 70%;
  left: -20%;
  bottom: 0;
}
section .animation.third {
  width: 50%;
  right: 0;
  bottom: 0;
}
section .animation.fourth {
  width: 70%;
  left: 0;
  bottom: 10%;
}
section .animation.fifth {
  width: 80%;
  right: -30%;
  bottom: 0;
}

footer.main-footer {
  background-color: #455588;
}
footer.main-footer p, footer.main-footer h4, footer.main-footer h3, footer.main-footer a {
  color: #EEF2FA;
}
footer.main-footer h4, footer.main-footer h3 {
  padding-top: 0;
  margin-top: 0;
}
footer.main-footer h3 {
  display: none;
}
footer.main-footer #footer-left {
  gap: 20px;
}
footer.main-footer #footer-left a {
  text-decoration: underline;
}
footer.main-footer #footer-left, footer.main-footer #footer-left #social-section, footer.main-footer #footer-left .social-link {
  display: flex;
  flex-direction: column;
}
footer.main-footer #footer-left #social-section {
  align-items: start;
  gap: 10px;
}
footer.main-footer #footer-left #social-section .social-link {
  width: 50px;
}
footer.main-footer #footer-left #rnw-paylink-button {
  display: flex;
}
footer.main-footer .content-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 auto;
  max-width: 1600px;
  padding: 10em 20px;
}
footer.main-footer .footer-item a {
  color: #EEF2FA;
  text-decoration: underline;
}
footer.main-footer .footer-item ul {
  padding-left: 0;
}
footer.main-footer .footer-item ul li {
  color: #fff;
  list-style: none;
  margin-bottom: 0;
}
footer.main-footer .footer-right {
  display: flex;
  flex-direction: column;
}
footer.main-footer .footer-right a {
  padding: 1em 0;
}
footer.main-footer .subfooter {
  padding-top: 2em;
  text-align: center;
}
footer.main-footer .subfooter p {
  margin: 0;
}
footer.main-footer .sub-sub-footer {
  font-size: 14px;
  line-height: 15px;
  padding: 14px;
  text-align: center;
}
footer.main-footer .sub-sub-footer a {
  text-decoration: underline;
}
footer.main-footer .sub-sub-footer p {
  margin: 0;
}

@keyframes myAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----------- Media queries ----------- */
@media only screen and (max-width: 1600px) {
  section .content-inner, section .team-inner, footer .content-inner, section .partners {
    max-width: 1300px !important;
  }
}
@media only screen and (max-width: 1500px) {
  section .content-inner, section .team-inner, footer .content-inner, section .partners {
    max-width: 1200px !important;
  }
  section .content-inner h1, section .team-inner h1, footer .content-inner h1, section .partners h1 {
    font-size: 2.4em;
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 1200px) {
  section .content-inner, section .team-inner, footer .content-inner, section .partners {
    max-width: 1200px !important;
  }
  section#intro {
    min-height: calc(100vh - 260px);
  }
}
@media only screen and (max-width: 1200px) {
  section .content-inner, section .team-inner, footer .content-inner, section .partners {
    max-width: 1200px !important;
  }
}
@media only screen and (max-width: 1024px) {
  section .content-inner, section .team-inner, footer .content-inner, section .partners {
    max-width: 800px !important;
  }
  .main-header {
    display: flex;
    align-items: center;
  }
  .main-header .nav-wrapper {
    display: none;
  }
  #HambMenu {
    display: block;
    cursor: pointer;
    position: relative;
    right: 1em;
    top: 1em;
    width: 48px;
    height: 32px;
    transform: translateY(-50%);
  }
  #HambMenu span {
    display: block;
    position: absolute;
    width: 48px;
    height: 2px;
    background-color: #455588;
    transition: all 0.2s ease;
  }
  #HambMenu span:nth-child(1) {
    top: 0;
  }
  #HambMenu span:nth-child(2) {
    top: 16px;
  }
  #HambMenu span:nth-child(3) {
    top: 32px;
  }
  #HambMenu.open span:nth-child(1) {
    transform: translateY(16px) rotate(-135deg);
  }
  #HambMenu.open span:nth-child(2) {
    transform: rotate(-135deg);
    opacity: 0;
  }
  #HambMenu.open span:nth-child(3) {
    transform: translateY(-16px) rotate(135deg);
  }
  #MobileNav {
    transform: translateX(-100%);
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(248, 243, 220);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.5s ease;
  }
  #MobileNav a {
    display: block;
    color: #455588;
    text-align: center;
    font-family: "claire", "Georgia", serif;
    font-size: 1.75em;
    line-height: 2.375rem;
    margin: 1em 0;
  }
  #MobileNav.open {
    transform: translateX(0);
  }
  section#intro {
    min-height: auto;
    padding-top: 2em;
  }
  section#comprendre {
    padding-bottom: 0;
  }
  section .content-inner, section .content-inner.inverted {
    min-height: auto;
    flex-direction: column;
  }
  section .content-inner .column, section .content-inner.inverted .column {
    width: 100%;
  }
  section .content-inner .note, section .content-inner.inverted .note {
    margin: 2em 0;
  }
  section .content-inner .note.active, section .content-inner.inverted .note.active {
    transform: translateY(0);
    transform: rotate(4deg);
  }
  section .animation {
    position: relative;
    width: 100%;
    transform: scale(1.3);
  }
  section .animation.first {
    transform: scale(1.3);
    width: 100%;
  }
  section .animation.second {
    width: 100%;
  }
  section .animation.third {
    transform: none;
    width: 100%;
  }
  section .animation.fourth {
    transform: scale(1.2) translateX(5%);
    width: 100%;
  }
  section .animation.fifth {
    display: none;
  }
  section .partners .partner {
    max-width: 160px;
    height: auto;
  }
}
/* Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  section .content-inner {
    flex-direction: column;
  }
  section .content-inner .column {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2.6em;
    line-height: 1em;
  }
  h2 {
    font-size: 1.25em;
    margin-bottom: 0;
  }
  section .content-inner .note {
    width: 90%;
  }
  section#testimonials .testimonial-item, section#testimonials .testimonial-item.inverted {
    display: block;
    flex-direction: row;
    width: 100%;
    align-items: center;
  }
  section#testimonials .testimonial-item .column, section#testimonials .testimonial-item.inverted .column {
    width: 100%;
  }
  section#testimonials .testimonial-item .column figure, section#testimonials .testimonial-item.inverted .column figure {
    margin: 1em;
  }
  section#testimonials .video {
    padding: 0px;
  }
  section#testimonials figure img {
    border-radius: 100%;
    height: 24px;
    width: 24px;
  }
  section#testimonials blockquote {
    margin: 0;
  }
  section .partners {
    flex-wrap: wrap;
  }
  section .partners .partner {
    padding: 1em;
  }
  section {
    padding: 4em 0;
  }
  section#project-team .project-team-content, section#project-team .thanks {
    flex-direction: column;
    margin-bottom: 2em;
  }
  section#project-team .team-member {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 1000px) {
  footer.main-footer .content-inner {
    flex-direction: column;
  }
  footer.main-footer .content-inner .footer-item {
    margin-top: 2em;
  }
  footer.main-footer .content-inner h4 {
    margin-bottom: 0;
  }
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=main.css.map */
