/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow: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");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*  */ /* Fonts imports */
@font-face {
  font-family: "IBMPlexMono";
  src: url("../../assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-weight: 400;
}
/* Fonts rules */
/* font size / line heihgt variable */
/* variable for cross icon */
/* variable for arrow icon */
/*  */
h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 0rem;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #643A86;
}

h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #000000;
}

.text {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.text p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text p em {
  font-style: italic;
}

.mention {
  width: calc(100% - 240px);
  transform: translate(0%, -80%);
}
.mention p {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .mention {
    width: auto;
    transform: translate(0%, -25%);
  }
}

/*  */
.drop-shadow {
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.16);
}

/*  */
.link-button {
  position: relative;
  display: block;
  overflow: hidden;
  width: fit-content;
  padding: 1.25rem 2.25rem;
  background-color: #643A86;
  font-family: "IBMPlexMono", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  color: #f1f1f1;
}
.link-button .arrow {
  display: inline-block;
  width: 18px;
  height: 16px;
  transform: rotate(180deg);
}
.link-button .arrow svg g path {
  fill: #f1f1f1;
}
.link-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 241, 241, 0.16);
  transition: 0.32s all 0.08s ease-in;
}
.link-button:hover::after {
  left: 0;
}

.header {
  position: relative;
  min-height: 80vh;
  background-image: url("../images/header.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.header--logo {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  width: 300px;
  height: 42px;
}
.header--logo svg g path {
  fill: #f1f1f1;
}
.header--menu {
  position: absolute;
  top: 7.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  width: 80%;
  max-width: 1200px;
}
.header--menu ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  column-gap: 4rem;
  list-style-type: none;
}
.header--menu ul li {
  position: relative;
  font-family: "IBMPlexMono", sans-serif;
  color: #f1f1f1;
}
.header--menu ul li a {
  font-family: unset;
  text-decoration: none;
  white-space: nowrap;
  color: unset;
}
.header--menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f1f1f1;
  transform-origin: right;
  transform: scaleX(1);
  transition-property: transform, transform-origin;
  transition-delay: 0.08s, 0.4s;
  transition-duration: 0.32s, 0.32s;
  transition-timing-function: ease-in, ease-out;
}
.header--menu ul li:hover a::after {
  transform-origin: left;
  transform: scaleX(0);
  transition-property: transform, transform-origin;
  transition-delay: 0.08s, 0.4s;
  transition-duration: 0.32s, 0.22s;
  transition-timing-function: ease-in, ease-out;
}
.header--introduction {
  position: absolute;
  top: 50%;
  right: 5vw;
  transform: translate(0%, -50%);
  z-index: 10;
  width: 16rem;
}
.header--introduction h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 700;
  color: #f1f1f1;
}
.header--introduction h3 .cross {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.header--introduction h3 .cross svg g path {
  fill: #f1f1f1;
}
.header--introduction p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #f1f1f1;
}
.header--introduction p a {
  color: unset;
}

.main {
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.main .donation {
  position: absolute;
  transform: translateY(-24vh);
  width: calc(100% - 4rem);
  max-width: 1200px;
}
.main .donation h2 {
  z-index: 3;
  width: fit-content;
  margin-bottom: 0;
  padding: 0.25rem 2rem;
  background-color: #000000;
  color: #f1f1f1;
}
.main .donation--content {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 1rem;
  background-color: #f1f1f1;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.32);
}
.main .donation--content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: center 48%/100% no-repeat url("../images/donation-01.svg"), 100% #f1f1f1;
  opacity: 0.48;
}
.main .donation--content #donorbox {
  position: relative;
  z-index: 2;
}
.main .donation--asterix {
  padding: 0rem 1rem;
}
.main .donation .link-button {
  top: 0;
  left: 100%;
  z-index: 3;
  transform: translate(-100%, -50%);
}
.main .project {
  display: grid;
  grid-template-columns: repeat(2, minmax(calc(50% - 5rem), 1fr));
  align-items: center;
  column-gap: 6rem;
  row-gap: 0rem;
  margin: 6rem 0 0;
}
@media screen and (max-width: 768px) {
  .main .project {
    grid-template-columns: 1fr;
    column-gap: 0rem;
    row-gap: 2rem;
  }
}
.main .project--images img {
  width: 100%;
}
.main .project--images .composition img {
  position: relative;
}
.main .project--images .composition--01 {
  z-index: 9;
  width: 72%;
  transform: translate(0, 4%) rotate(-4deg);
}
.main .project--images .composition--02 {
  z-index: 10;
  width: 64%;
  transform: translate(56%, -4%) rotate(4deg);
}
.main .course {
  display: grid;
  grid-template-columns: repeat(2, minmax(calc(50% - 5rem), 1fr));
  align-items: center;
  column-gap: 6rem;
  row-gap: 0rem;
}
@media screen and (max-width: 768px) {
  .main .course {
    grid-template-columns: 1fr;
    column-gap: 0rem;
    row-gap: 2rem;
  }
}
.main .course--content h2 {
  position: relative;
}
.main .course--content h2::after {
  content: url("../../assets/icons/victory-fingers.svg");
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3rem;
  transform: translate(-48%, -56%);
}
.main .course--content h3 {
  margin-bottom: 0.25rem;
}
.main .course--content h3 .cross {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.main .course--content h3 .cross svg g path {
  fill: #643A86;
}
.main .course--content .text {
  margin-bottom: 2rem;
}
.main .course--content .text p > b {
  font-weight: 600;
}
.main .course--images {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.main .course--images .madcap {
  width: 100%;
  height: 580px;
  overflow: hidden;
}
.main .course--images .madcap iframe {
  width: 100%;
  height: 800px;
}
.main .course--images img {
  width: 100%;
}
.main .asso {
  display: grid;
  grid-template-columns: repeat(2, minmax(calc(50% - 5rem), 1fr));
  align-items: center;
  column-gap: 6rem;
  row-gap: 0rem;
}
@media screen and (max-width: 768px) {
  .main .asso {
    grid-template-columns: 1fr;
    column-gap: 0rem;
    row-gap: 2rem;
  }
}
.main .asso--content h2 {
  position: relative;
}
.main .asso--content h2::after {
  content: url("../../assets/icons/little-fingers.svg");
  position: absolute;
  top: 0;
  left: 140px;
  display: block;
  width: 6rem;
  transform: translate(0%, -56%);
}
.main .asso--content h3 {
  margin-bottom: 0.25rem;
}
.main .asso--content h3 .cross {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.main .asso--content h3 .cross svg g path {
  fill: #643A86;
}
.main .asso--content .text {
  margin-bottom: 2rem;
}
.main .asso--images img {
  width: 100%;
}
.main .asso--images .composition {
  position: relative;
}
.main .asso--images .composition img {
  position: relative;
}
.main .asso--images .composition--01 {
  z-index: 8;
  width: 52%;
  transform: translate(8%, 12%) rotate(-4deg);
}
.main .asso--images .composition--02 {
  position: absolute !important;
  z-index: 10;
  width: 24%;
  transform: translate(64%, 80%);
}
.main .asso--images .composition--03 {
  position: absolute !important;
  z-index: 10;
  width: 16%;
  transform: translate(-112%, 312%);
}
.main .asso--images .composition--04 {
  z-index: 9;
  width: 52%;
  transform: translate(80%, -4%) rotate(8deg);
}
.main .asso--images .composition--05 {
  position: absolute !important;
  z-index: 10;
  width: 14%;
  transform: translate(208%, 140%);
}
.main .asso--images .quote {
  position: relative;
  z-index: 11;
  width: 32%;
  transform: translate(8%, -48%) rotate(2deg);
  font-family: "IBMPlexMono", sans-serif;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #643A86;
}
.main .asso--images .quote svg {
  width: 8px;
}
.main .asso--images .quote svg g path {
  fill: #643A86;
}
@media screen and (max-width: 768px) {
  .main .asso--images .quote {
    width: 100%;
    transform: translate(0%, 48%);
  }
}
.main .social--feed {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
}
.main .social--feed .post {
  position: relative;
}
.main .social--feed .post--info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 2rem);
  padding: 1rem;
}
.main .social--feed .post--info .profil {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.56);
  color: #f1f1f1 !important;
}
.main .social--feed .post--info .profil img {
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 4rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
.main .social--feed .post--info svg {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.56));
}
.main .social--feed .post--info svg path {
  fill: #f1f1f1;
}
.main .social--feed .post--link {
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.32s opacity 0.08s linear;
}
.main .social--feed .post--link:hover {
  opacity: 0.8;
  transition: 0.32s opacity 0.08s linear;
}
.main .social--feed .post-01,
.main .social--feed .post-02,
.main .social--feed .post-03 {
  display: flex;
  width: calc((100% - 4rem) / 3);
  min-width: 232px;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 48px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.main .social--feed .post-01 img,
.main .social--feed .post-02 img,
.main .social--feed .post-03 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 9/16;
}
.main .partners {
  display: flex;
  flex-flow: row wrap;
  column-gap: 5rem;
  row-gap: 0rem;
}
.main .partners .logos {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  gap: 2rem;
}
.main .partners--first {
  width: calc(100% - 4.5rem);
  max-width: calc(33% - 3.3rem);
}
.main .partners--first .logos img {
  width: 8rem;
}
.main .partners--second {
  width: calc(100% - 4.5rem);
  max-width: calc(33% - 3.3rem);
}
.main .partners--second .logos img {
  width: 4.5rem;
}
.main .partners--third {
  width: calc(100% - 4.5rem);
  max-width: calc(33% - 3.3rem);
}
.main .partners--third .logos img {
  width: 4.5rem;
}
.main .partners h2 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main .partners {
    flex-direction: column;
    column-gap: 0rem;
    row-gap: 2rem;
  }
  .main .partners--first, .main .partners--second {
    width: 100%;
    max-width: unset;
  }
}
.main .family {
  display: grid;
  grid-template-columns: repeat(2, minmax(calc(50% - 5rem), 1fr));
  align-items: center;
  column-gap: 6rem;
  row-gap: 0rem;
}
@media screen and (max-width: 768px) {
  .main .family {
    grid-template-columns: 1fr;
    column-gap: 0rem;
    row-gap: 2rem;
  }
}
.main .family--images {
  transform: rotate(-4deg);
}
.main .family--images h2 {
  margin-bottom: 0;
}
.main .family--images img {
  width: 100%;
}
.main .family--images .legend {
  font-family: "IBMPlexMono", sans-serif;
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-align: right;
}
.main .family--content h3 {
  margin-bottom: 1rem;
  color: #643A86;
}
.main .family--content h3 .cross {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
}
.main .family--content h3 .cross svg g path {
  fill: #643A86;
}

.footer {
  position: relative;
  min-height: 32vh;
  background-image: url("../images/footer.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 120%;
}
.footer--logo {
  position: absolute;
  bottom: 7.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  width: 300px;
  height: 42px;
}
.footer--logo svg g path {
  fill: #000000;
}
.footer--menu {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  list-style-type: none;
}
.footer--menu .menu-item {
  font-family: "IBMPlexMono", sans-serif;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #000000;
}
.footer--menu .menu-item a {
  position: relative;
  font-family: unset;
  text-decoration: none;
  white-space: nowrap;
  color: unset;
}
.footer--menu .menu-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transform-origin: right;
  transform: scaleX(1);
  transition-property: transform, transform-origin;
  transition-delay: 0.08s, 0.4s;
  transition-duration: 0.32s, 0.32s;
  transition-timing-function: ease-in, ease-out;
}
.footer--menu .menu-item a:hover::after {
  transform-origin: left;
  transform: scaleX(0);
  transition-property: transform, transform-origin;
  transition-delay: 0.08s, 0.4s;
  transition-duration: 0.32s, 0.22s;
  transition-timing-function: ease-in, ease-out;
}
.footer--image {
  display: flex;
}
.footer--image img {
  width: 100%;
  height: 40vh;
  object-fit: cover;
}

/**/
html {
  scroll-behavior: smooth;
}

#runForYou {
  background: top center/cover no-repeat url("../images/background.png");
  font-family: "Barlow", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow", sans-serif;
}

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