/* Flex */
/* Colors */
/* Fonts */
/* Mixins */
/* Animation */
@keyframes scaleUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(15);
    transform: scale(15);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Responsive */
* {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
.content #title h1,
.number,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
.content #title h1,
.number,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
}

button {
  all: unset;
}

html {
  height: 100%;
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}

/* Elements */
h1,
h2,
.content #title h1,
.number,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

ul {
  padding-left: 0;
}
ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.hidden {
  opacity: 0;
}

.responsive {
  max-width: 100%;
  height: auto;
}

/* Flex */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.flex3 {
  flex: 3;
}

.flex4 {
  flex: 4;
}

.flex-third {
  width: 32%;
}

.flex-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.flex-start {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}

.flex-end {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

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

.flex-vcenter {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* Grid */
.grid {
  display: grid;
  grid-gap: 3rem;
}

/* Padding */
.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.pt-0 {
  padding-top: 0;
}

.pt-50 {
  padding-top: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pt-30 {
  padding-top: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-100 {
  padding-right: 100px;
}

/* Margin */
.ml-10 {
  margin-left: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.mt-130 {
  margin-top: 130px;
}

.mb-130 {
  margin-bottom: 130px;
}

.ml-130 {
  margin-left: 130px;
}

.mr-130 {
  margin-right: 130px;
}

.mt-150 {
  margin-top: 150px;
}

.ml-150 {
  margin-left: 150px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mr-150 {
  margin-right: 150px;
}

/* Align */
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

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

/* Misc */
.fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
}

.full-width {
  width: 100vw;
  max-width: 100%;
}

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.bold {
  font-weight: bold;
}

/* Foundations */
html,
body {
  position: relative;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 150%;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  position: relative;
  padding-bottom: 0;
}

#main {
  flex-direction: column;
  margin-top: 15rem;
}
#main > div {
  width: 100%;
}
@media (max-width: 1440px) {
  #main {
    margin-top: 7rem;
  }
}
@media (max-width: 768px) {
  #main {
    margin-top: 5rem;
  }
}
#main.content {
  margin-top: 13.5rem;
}

section,
footer {
  padding: 7.5rem;
  scroll-margin-top: 5.5rem;
}
@media (max-width: 1440px) {
  section,
  footer {
    padding: 7.5rem 7.5rem;
  }
}
@media (max-width: 1024px) {
  section,
  footer {
    padding: 7.5rem 5rem;
  }
}
@media (max-width: 768px) {
  section,
  footer {
    padding: 5rem 3rem;
  }
}
section .wrapper,
footer .wrapper {
  width: auto;
  max-width: 144rem;
  margin: auto;
}
section .wrapper.narrow,
footer .wrapper.narrow {
  width: auto;
  max-width: 102.4rem;
  margin: auto;
}

#menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  flex-wrap: wrap;
  padding: 5rem;
  position: fixed;
  width: 100%;
  background-color: transparent;
  -moz-transition: background-color 0.4s, padding 0.4s;
  -o-transition: background-color 0.4s, padding 0.4s;
  -webkit-transition: background-color 0.4s, padding 0.4s;
  transition: background-color 0.4s, padding 0.4s;
}
#menu.simple {
  background-color: #F3F8FE;
}
#menu.scrolled {
  background-color: #FFFFFF;
  padding: 1.75rem 5rem 1.75rem 5rem;
  -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  #menu, #menu.scrolled {
    padding: 2rem 2rem;
  }
}
#menu #toggle-mobile-menu {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-mask-image: url("../assets/icon/small/menu.svg");
  mask-image: url("../assets/icon/small/menu.svg");
  width: 3rem;
  height: 3rem;
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  #menu #toggle-mobile-menu {
    display: block;
  }
}
#menu .brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#menu #logo {
  display: block;
  height: 3.5rem;
  width: auto;
}
@media (max-width: 768px) {
  #menu #logo {
    height: 3rem;
  }
}
#menu #logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: -1px;
}
#menu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
#menu ul li {
  text-align: center;
  margin: auto 4rem;
  font-weight: 600;
}
#menu ul li::before {
  display: none;
}
#menu ul li a {
  padding: 2rem 0 2.1rem 0;
  -moz-transition: border-color 0.25s, color 0.25s;
  -o-transition: border-color 0.25s, color 0.25s;
  -webkit-transition: border-color 0.25s, color 0.25s;
  transition: border-color 0.25s, color 0.25s;
  border-bottom: 3px solid transparent;
}
#menu ul li a:hover {
  color: #1672EC;
  border-color: #F3F5F8;
}
#menu ul li a.active {
  color: #1672EC;
  border-color: #1672EC;
}
@media (max-width: 768px) {
  #menu {
    flex-direction: column;
    padding-bottom: 3rem;
  }
  #menu .brand {
    width: 100%;
  }
  #menu nav {
    display: none;
  }
  #menu nav ul {
    align-items: center;
    margin-top: 0;
    margin-bottom: 2rem;
    flex-direction: column;
  }
  #menu nav ul li {
    padding: 1rem 0;
  }
  #menu nav ul li a {
    padding-bottom: 0.5rem;
  }
  #menu .btn {
    display: none;
  }
  #menu.open {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
    -moz-transition: background-color 0.4s, padding 0.4s;
    -o-transition: background-color 0.4s, padding 0.4s;
    -webkit-transition: background-color 0.4s, padding 0.4s;
    transition: background-color 0.4s, padding 0.4s;
    padding-bottom: 3rem;
  }
  #menu.open nav {
    display: flex;
  }
  #menu.open .btn {
    display: flex;
  }
}

/* Tools */
h1 {
  font-size: 4.5rem;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  h1 {
    padding-right: 2rem;
  }
}

h2, .content #title h1, .number {
  font-size: 3rem;
  line-height: 130%;
  font-weight: 700;
}

.number {
  margin-bottom: 1rem;
}

.highlight {
  font-size: 1.8rem;
  line-height: 140%;
}
.highlight.bold {
  font-weight: 700;
}

p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.smallcaps {
  line-height: 130%;
  letter-spacing: 2;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-size: cover;
  background-repeat: no-repeat;
}
.icon.france {
  background-image: url("../assets/icon/small/france.svg");
}
.icon.europe {
  background-image: url("../assets/icon/small/europe.svg");
}
.icon.mask {
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  -moz-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.icon.mask.multiply {
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-mask-image: url("../assets/icon/small/multiply.svg");
  mask-image: url("../assets/icon/small/multiply.svg");
  width: 2rem;
  height: 2rem;
}
.icon.mask.briefcase {
  -webkit-mask-image: url("../assets/icon/small/briefcase.svg");
  mask-image: url("../assets/icon/small/briefcase.svg");
}
.icon.mask.talk {
  -webkit-mask-image: url("../assets/icon/small/talk.svg");
  mask-image: url("../assets/icon/small/talk.svg");
}
.icon.mask.info {
  -webkit-mask-image: url("../assets/icon/small/info.svg");
  mask-image: url("../assets/icon/small/info.svg");
}
.icon.mask.house {
  -webkit-mask-image: url("../assets/icon/big/house.svg");
  mask-image: url("../assets/icon/big/house.svg");
}
.icon.mask.search {
  -webkit-mask-image: url("../assets/icon/big/search.svg");
  mask-image: url("../assets/icon/big/search.svg");
}
.icon.mask.go {
  -webkit-mask-image: url("../assets/icon/big/go.svg");
  mask-image: url("../assets/icon/big/go.svg");
}
.icon.mask.tools {
  -webkit-mask-image: url("../assets/icon/big/tools.svg");
  mask-image: url("../assets/icon/big/tools.svg");
}
.icon.mask.quality {
  -webkit-mask-image: url("../assets/icon/big/quality.svg");
  mask-image: url("../assets/icon/big/quality.svg");
}
.icon.mask.linkedin {
  -webkit-mask-image: url("../assets/icon/small/linkedin.svg");
  mask-image: url("../assets/icon/small/linkedin.svg");
}
.icon.big {
  width: 7rem;
  height: 7rem;
  position: relative;
  /* img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  } */
}
.icon.big::before {
  display: block;
  content: " ";
  background-color: #FFFFFF;
  width: 9rem;
  height: 9rem;
  border-radius: 100%;
  position: absolute;
  left: -1rem;
  top: -1rem;
  z-index: -1;
}

a .icon {
  -moz-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
a .icon:hover {
  -moz-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  background-color: #458ff0;
}
a .icon.secondary-bg:hover {
  background-color: #84bf5d;
}

a.btn {
  display: inline-flex;
  align-items: center;
  background-color: #1672EC;
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.5rem 1rem 0.5rem 1.2rem;
  border-radius: 0.8rem;
  -webkit-box-shadow: 0 1px 2px #1672EC;
  -moz-box-shadow: 0 1px 2px #1672EC;
  box-shadow: 0 1px 2px #1672EC;
  white-space: nowrap;
  -moz-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
a.btn:hover {
  background-color: #458ff0;
  -moz-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
a.btn .icon {
  margin-left: 0.7rem;
  margin-right: 0;
}
a.btn .icon.mask {
  background-color: #FFFFFF;
}
a.btn.light {
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 700;
  -webkit-box-shadow: 0 1px 2px #B8B8B8;
  -moz-box-shadow: 0 1px 2px #B8B8B8;
  box-shadow: 0 1px 2px #B8B8B8;
}
a.btn.light .icon.mask {
  background-color: rgba(0, 0, 0, 0.85);
}
a.btn.light:hover {
  color: #1672EC;
}
a.btn.light:hover .icon.mask {
  background-color: #1672EC;
}
a.btn.secondary {
  background-color: #6AA742;
  margin-top: 4.5rem;
  -webkit-box-shadow: 0 1px 2px #6AA742;
  -moz-box-shadow: 0 1px 2px #6AA742;
  box-shadow: 0 1px 2px #6AA742;
}
a.btn.secondary.light {
  background-color: #FFFFFF;
  color: #6AA742;
  -webkit-box-shadow: 0 1px 2px #B8B8B8;
  -moz-box-shadow: 0 1px 2px #B8B8B8;
  box-shadow: 0 1px 2px #B8B8B8;
}
a.btn.secondary.light .icon.mask {
  background-color: #6AA742;
}
a.btn.secondary:hover {
  background-color: #84bf5d;
}

.primary-color {
  color: #1672EC;
}

.primary-bg {
  background-color: #1672EC;
}

.secondary-color {
  color: #6AA742;
}

.secondary-bg {
  background-color: #6AA742;
}

.tag {
  display: inline-block;
  background-color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}

ul {
  padding-left: 1.7rem;
}
ul li {
  margin-bottom: 1.05rem;
}
ul li:before {
  display: block;
  content: " ";
  height: 0.6rem;
  width: 0.6rem;
  background-color: #1672EC;
  border-radius: 100%;
  position: absolute;
  margin-top: 0.8rem;
  margin-left: -1.7rem;
}
ul.secondary li:before {
  background-color: #6AA742;
}

/* Content */
#corner {
  width: 10rem;
  height: 10rem;
  background-color: #F3F8FE;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50vw;
}
#corner div {
  width: 10rem;
  height: 10rem;
  background-color: #FFFFFF;
  border-radius: 7rem 0 0 0;
}
@media (max-width: 1280px) {
  #corner {
    display: none;
  }
}

#hero {
  /*#test{
    background-color: blue;
    width: 10rem;
    height: 10rem;
    clip-path: url("../assets/pattern/mask.svg");
  }*/
}
@media (max-width: 1280px) {
  #hero {
    background-color: #F3F8FE;
  }
}
#hero .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 7rem 22rem;
}
@media (max-width: 1440px) {
  #hero .wrapper {
    grid-gap: 7.5rem 7rem;
  }
}
@media (max-width: 1280px) {
  #hero .wrapper {
    grid-gap: 5rem 5rem;
  }
}
#hero .wrapper::before {
  display: block;
  content: " ";
  background-color: #F3F8FE;
  position: absolute;
  height: min(55vw, 85rem);
  width: 50vw;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 0 0 7rem 0;
}
@media (max-width: 1280px) {
  #hero .wrapper::before {
    -moz-transition: width 0.2s;
    -o-transition: width 0.2s;
    -webkit-transition: width 0.2s;
    transition: width 0.2s;
    width: 100vw;
    right: 0;
    min-height: 10rem;
  }
}
@media (max-width: 1280px) {
  #hero .wrapper {
    align-items: center;
  }
}
#hero .content {
  max-width: 66rem;
  margin-top: 7rem;
}
@media (max-width: 1280px) {
  #hero .content {
    margin-top: 0;
  }
}
#hero .illu {
  position: relative;
  z-index: 2;
  display: flex;
}
#hero .illu img {
  max-width: 100%;
}

#facts {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
#facts .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54rem, 1fr));
  grid-gap: 7rem 22rem;
  position: relative;
}
@media (max-width: 1280px) {
  #facts .wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  #facts .wrapper {
    grid-gap: 10rem 5rem;
  }
}
#facts .wrapper.pattern::before {
  display: block;
  content: " ";
  background-image: url("../assets/pattern/linked.svg");
  background-repeat: no-repeat;
  height: 20rem;
  width: 144rem;
  position: absolute;
  top: -3rem;
  z-index: 5;
}
@media (max-width: 1440px) {
  #facts .wrapper.pattern::before {
    background-image: url("../assets/pattern/linked_left.svg");
    top: -2.5rem;
    left: -16rem;
  }
}
@media (max-width: 480px) {
  #facts .wrapper.pattern::before {
    display: none;
  }
}
#facts h2, #facts .content #title h1, .content #title #facts h1, #facts .number {
  margin-bottom: 5rem;
  position: relative;
}
@media (max-width: 768px) {
  #facts h2 br, #facts .content #title h1 br, .content #title #facts h1 br, #facts .number br {
    display: none;
  }
}
#facts .left .highlight {
  margin-bottom: 3rem;
}
#facts .left .highlight .multiply {
  margin: 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
#facts .left .highlight span:last-of-type {
  margin-right: 2rem;
}
#facts .right {
  margin-top: 6rem;
  position: relative;
}
@media (max-width: 1440px) {
  #facts .right::before {
    display: block;
    content: " ";
    background-image: url("../assets/pattern/linked_right.svg");
    background-repeat: no-repeat;
    height: 20rem;
    width: 144rem;
    position: absolute;
    top: -3rem;
    z-index: 5;
    left: -9rem;
  }
}
@media (max-width: 1440px) and (max-width: 480px) {
  #facts .right::before {
    display: none;
  }
}
@media (max-width: 480px) {
  #facts .right {
    margin-top: 0;
  }
}
#facts .right h2, #facts .right .content #title h1, .content #title #facts .right h1, #facts .right .number {
  margin-bottom: 10rem;
}
@media (max-width: 480px) {
  #facts .right h2, #facts .right .content #title h1, .content #title #facts .right h1, #facts .right .number {
    margin-bottom: 5rem;
  }
}
#facts .right .grid {
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  margin-bottom: 3rem;
  line-height: 140%;
}
#facts .right .grid .number {
  margin-bottom: 0.5rem;
}
#facts .right .grid b {
  display: block;
}

@media (max-width: 1366px) {
  #causes br {
    display: none;
  }
}
#causes .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 12rem 7rem;
  position: relative;
}
@media (max-width: 1280px) {
  #causes .wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  #causes .wrapper {
    grid-gap: 7.5rem 3rem;
  }
}
#causes .header {
  background-color: #EEF5E9;
  border-radius: 0 2rem 0 0;
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  #causes .header {
    padding-left: 0 !important;
    padding-right: 0;
    margin-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  #causes .header::before, #causes .header::after {
    left: -3rem !important;
    right: -3rem !important;
    width: auto !important;
  }
}
#causes .header h2, #causes .header .content #title h1, .content #title #causes .header h1, #causes .header .number {
  margin-left: 5rem;
}
@media (max-width: 1440px) {
  #causes .header h2, #causes .header .content #title h1, .content #title #causes .header h1, #causes .header .number {
    margin-left: 0;
  }
}
#causes .header .illu {
  width: 20rem;
  height: 20rem;
  margin-bottom: -10rem;
  margin-left: -10rem;
}
#causes .icon {
  margin-right: 3rem;
}
#causes .point {
  display: flex;
  margin-top: 3rem;
}
@media (max-width: 480px) {
  #causes .point {
    display: flex;
    flex-direction: column;
  }
}
#causes .highlight {
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1440px) {
  #causes .header img {
    display: none;
  }
}
#causes .left .header {
  position: relative;
}
#causes .left .header::before {
  display: block;
  content: " ";
  width: 45vw;
  position: absolute;
  background-color: #EEF5E9;
  left: -30vw;
  z-index: -1;
  top: 0;
  bottom: 0;
}
@media (max-width: 1440px) {
  #causes .left .header {
    padding-left: 2rem;
  }
}
#causes .left .points {
  position: relative;
}
#causes .left .points::before {
  display: block;
  content: " ";
  width: 3px;
  top: -3rem;
  left: 3.5rem;
  bottom: 1.5rem;
  background-color: #F3F5F8;
  position: absolute;
  z-index: -1;
}
@media (max-width: 480px) {
  #causes .left .points::before {
    display: none;
  }
}
#causes .right .header {
  background-color: #F3F8FE;
  border-radius: 0 0 0 2rem;
  justify-content: space-between;
  position: relative;
}
#causes .right .header::after {
  display: block;
  content: " ";
  width: 45vw;
  position: absolute;
  background-color: #F3F8FE;
  top: 0;
  right: -30vw;
  z-index: -1;
  top: 0;
  bottom: 0;
}
#causes .right .header h2, #causes .right .header .content #title h1, .content #title #causes .right .header h1, #causes .right .header .number {
  margin-left: 0;
}
#causes .right .header .illu {
  margin-left: 0;
  margin-right: -10rem;
}
#causes .right .point:not(:last-of-type) {
  padding-bottom: 4rem;
  border-bottom: 3px solid #F3F5F8;
}

#vision {
  position: relative;
}
@media (max-width: 480px) {
  #vision {
    padding: 5rem 1.5rem;
  }
}
#vision .border {
  border: 3px solid #6AA742;
  border-radius: 2rem;
  padding: 6rem 6rem 6rem 9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 7rem;
  align-items: center;
  margin-bottom: 7rem;
}
@media (max-width: 1280px) {
  #vision .border {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  #vision .border {
    grid-gap: 7.5rem 3rem;
    padding: 5rem;
  }
}
@media (max-width: 480px) {
  #vision .border {
    padding: 3rem;
  }
}
#vision .border h2, #vision .border .content #title h1, .content #title #vision .border h1, #vision .border .number {
  margin-bottom: 3rem;
}

#process {
  position: relative;
  padding-top: 0;
}
#process::before {
  display: block;
  content: " ";
  position: absolute;
  height: 3px;
  background-color: #F3F5F8;
  z-index: -1;
  left: 0;
  right: 0;
  top: 1.2rem;
}
@media (max-width: 1440px) {
  #process::before {
    display: none;
  }
}
#process .wrapper {
  text-align: center;
}
#process .wrapper .highlight {
  margin-bottom: 3rem;
  background-color: #FFFFFF;
  padding: 0 3rem;
  position: relative;
  display: inline-block;
}
#process .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 1rem 5rem;
  background-color: #F3F8FE;
  padding: 4rem;
  margin: auto -4rem;
  position: relative;
}
@media (max-width: 1920px) {
  #process .steps {
    grid-gap: 3rem 3rem;
  }
}
@media (max-width: 1280px) {
  #process .steps {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
}
@media (max-width: 768px) {
  #process .steps {
    grid-template-columns: 1fr;
    padding: 2rem 0;
    margin: auto;
  }
}
#process .steps:before {
  display: block;
  content: " ";
  position: absolute;
  background-color: #F3F8FE;
  z-index: -1;
  top: 0;
  left: -30vw;
  right: -30vw;
  bottom: 0;
}
#process .steps .step {
  text-align: center;
  padding: 2rem;
  position: relative;
}
@media (max-width: 768px) {
  #process .steps .step {
    padding: 3rem 2rem;
  }
}
#process .steps .step.audit {
  background-color: #FFFFFF;
  border-radius: 1rem;
}
#process .steps .step .icon {
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
  margin-right: 0;
  background-color: #1672EC;
}
#process .steps .step:last-child .icon {
  background-color: #6AA742;
}
#process .steps .step:not(:first-child)::before {
  display: block;
  content: " ";
  position: absolute;
  background-color: #1672EC;
  -webkit-mask-image: url("../assets/icon/small/arrow.svg");
  mask-image: url("../assets/icon/small/arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: 1.5rem;
  width: 3.5rem;
  top: 50%;
  margin-top: -1.5rem;
  left: -4.5rem;
}
@media (max-width: 768px) {
  #process .steps .step:not(:first-child)::before {
    top: -0.5rem;
    left: calc(50% - 18px);
    transform: rotate(90deg);
  }
}
#process .steps .step:last-child::before {
  background-color: #6AA742;
}

#mission .header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem 7.5rem;
  align-items: center;
}
#mission .values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  grid-gap: 5rem 3rem;
  margin: 7rem 0;
}
@media (max-width: 1024px) {
  #mission .values {
    grid-template-columns: 1fr;
  }
}
#mission .values .icon {
  margin-bottom: 2rem;
}
#mission .values .value {
  text-align: center;
}
#mission .values .highlight {
  margin-bottom: 0.5rem;
}

#services {
  padding: 7.5rem 3rem;
}
#services h2, #services .content #title h1, .content #title #services h1, #services .number {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 1280px) {
  #services h2 br, #services .content #title h1 br, .content #title #services h1 br, #services .number br {
    display: none;
  }
}
#services .tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem 3rem;
  justify-content: center;
}
@media (max-width: 1280px) {
  #services .tools {
    grid-template-columns: 1fr;
  }
}
#services .tool {
  background-color: #FFFFFF;
  -webkit-border-radius: 2rem;
  -ms-border-radius: 2rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#services .tool:nth-child(2) .header {
  background-color: #F3F8FE;
}
#services .tool:nth-child(3) {
  margin-right: 0;
}
#services .tool:nth-child(3) .header {
  background-color: #f8F8F8;
}
#services .tool .header {
  background-color: #EEF5E9;
  display: flex;
  padding: 3rem;
  align-items: center;
  -webkit-border-radius: 2rem 2rem 0 0;
  -ms-border-radius: 2rem 2rem 0 0;
  border-radius: 2rem 2rem 0 0;
}
@media (max-width: 1920px) {
  #services .tool .header {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1280px) {
  #services .tool .header {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  #services .tool .header {
    padding: 4rem 5rem;
  }
}
@media (max-width: 480px) {
  #services .tool .header {
    padding: 3rem;
  }
}
#services .tool .header .illu img {
  width: 30rem;
  height: 30rem;
  margin-left: -3rem;
  margin-bottom: -10rem;
}
@media (max-width: 1920px) {
  #services .tool .header .illu img {
    width: 20rem;
    height: 20rem;
  }
}
@media (max-width: 768px) {
  #services .tool .header .illu img {
    display: none;
  }
}
#services .tool .header .content {
  margin-left: 3rem;
}
@media (max-width: 1920px) {
  #services .tool .header .content {
    margin-left: 0;
  }
}
@media (max-width: 1280px) {
  #services .tool .header .content {
    margin-left: 3rem;
  }
}
@media (max-width: 768px) {
  #services .tool .header .content {
    margin-left: 0;
  }
}
#services .tool .header h2, #services .tool .header .content #title h1, .content #title #services .tool .header h1, #services .tool .header .number {
  text-align: left;
  margin-bottom: 1rem;
}
#services .tool .body {
  padding: 10rem 5rem 0 5rem;
  height: -webkit-fill-available;
  height: -moz-fill-available;
}
@media (max-width: 768px) {
  #services .tool .body {
    padding: 4rem 5rem 0 5rem;
  }
}
@media (max-width: 480px) {
  #services .tool .body {
    padding: 3rem 3rem 0 3rem;
  }
}
#services .tool .action {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 3rem;
}
#services .tool .action .smallcaps {
  color: #B8B8B8;
  margin-bottom: 0;
}
#services .tool .action .btn {
  margin-top: 0;
}

#team {
  margin-top: 7.5rem;
}
#team .header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem 40rem;
  position: relative;
  margin-bottom: 12rem;
}
@media (max-width: 1440px) {
  #team .header {
    grid-gap: 3rem 7rem;
  }
}
@media (max-width: 1366px) {
  #team .header {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  #team .header {
    margin-bottom: 10rem;
  }
}
#team .header::before {
  display: block;
  content: " ";
  background-image: url("../assets/pattern/together.svg");
  background-repeat: no-repeat;
  height: 20rem;
  width: 144rem;
  position: absolute;
  top: -2.5rem;
  z-index: 5;
}
@media (max-width: 1440px) {
  #team .header::before {
    left: -9rem;
  }
}
@media (max-width: 1366px) {
  #team .header::before {
    display: none;
  }
}
#team .header h2, #team .header .content #title h1, .content #title #team .header h1, #team .header .number {
  flex: 1;
}
@media (max-width: 1920px) {
  #team .header h2 br, #team .header .content #title h1 br, .content #title #team .header h1 br, #team .header .number br {
    display: none;
  }
}
@media (max-width: 1440px) {
  #team .header h2:first-child, #team .header .content #title h1:first-child, .content #title #team .header h1:first-child, #team .header .number:first-child {
    padding-right: 5rem;
  }
  #team .header h2:last-child, #team .header .content #title h1:last-child, .content #title #team .header h1:last-child, #team .header .number:last-child {
    padding-left: 10rem;
  }
}
@media (max-width: 1366px) {
  #team .header h2:first-child, #team .header .content #title h1:first-child, .content #title #team .header h1:first-child, #team .header .number:first-child {
    padding-right: 0;
  }
  #team .header h2:last-child, #team .header .content #title h1:last-child, .content #title #team .header h1:last-child, #team .header .number:last-child {
    padding-left: 0;
  }
}
#team .members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 7rem 10rem;
}
@media (max-width: 1280px) {
  #team .members {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  #team .members {
    grid-gap: 7.5rem 7rem;
  }
}
#team .members .member {
  position: relative;
}
@media (max-width: 1280px) {
  #team .members .member {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50rem;
    margin: auto;
  }
}
#team .members .member:first-child::after {
  display: block;
  content: " ";
  position: absolute;
  top: 6rem;
  right: 5rem;
  width: 3rem;
  height: 3rem;
  background-color: #1672EC;
  -webkit-mask-image: url("../assets/icon/small/multiply.svg");
  mask-image: url("../assets/icon/small/multiply.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media (max-width: 1280px) {
  #team .members .member:first-child::after {
    left: 50%;
    margin-left: -1.25rem;
    top: auto;
    bottom: -3.5rem;
  }
}
#team .members .member:nth-child(2)::after {
  display: block;
  content: " ";
  position: absolute;
  top: 5.5rem;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  background-color: #6AA742;
  -webkit-mask-image: url("../assets/icon/small/plus.svg");
  mask-image: url("../assets/icon/small/plus.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media (max-width: 1280px) {
  #team .members .member:nth-child(2)::after {
    left: 50%;
    top: auto;
    bottom: -5rem;
    margin-left: -1.75rem;
  }
}
#team .members .member .picture {
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  width: 13rem;
  height: 13rem;
  margin-bottom: 2.5rem;
}
#team .members .member .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#team .members .member p {
  margin: 2rem 0;
}
#team .members .member ul {
  width: 100%;
}
#team .members .member ul li {
  margin: 1.5rem 0;
}
#team .members .member .smallcaps {
  margin-bottom: 0rem;
  display: flex;
  align-items: center;
}
#team .members .member .smallcaps .icon {
  margin-left: 0.7rem;
}
#team .members .member .highlight {
  margin-bottom: 2rem;
}

#join {
  position: relative;
}
#join::before {
  display: block;
  content: " ";
  position: absolute;
  background-color: #F3F8FE;
  height: 45rem;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 2.6rem;
}
@media (max-width: 1280px) {
  #join::before {
    display: none;
  }
}
#join .header {
  text-align: center;
}
#join .header h2, #join .header .content #title h1, .content #title #join .header h1, #join .header .number {
  margin-bottom: 2rem;
}
#join .header .highlight {
  margin: 0 auto 5rem auto;
  max-width: 100rem;
}
@media (max-width: 768px) {
  #join .header br {
    display: none;
  }
}
#join .offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem;
  position: relative;
}
@media (max-width: 1280px) {
  #join .offers {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  #join .offers {
    grid-gap: 3rem 3rem;
  }
}
#join .offers .offer {
  background-color: #FFFFFF;
  -webkit-border-radius: 2rem;
  -ms-border-radius: 2rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#join .offers .offer .header {
  display: flex;
  align-items: flex-end;
  height: 6rem;
  background-color: #F3F8FE;
  padding: 3rem 3rem 0 3rem;
  background-image: url("../assets/pattern/binary-large-light.png");
  background-size: 12rem;
}
#join .offers .offer .header .tag {
  margin-bottom: 0;
}
#join .offers .offer .body {
  padding: 3rem;
  height: -webkit-fill-available;
  height: -moz-fill-available;
}
#join .offers .offer .body .highlight {
  margin-bottom: 3rem;
}
#join .offers .offer .body .highlight::after {
  display: block;
  content: " ";
  width: 2rem;
  height: 3px;
  background-color: #1672EC;
  border-radius: 3px;
  margin-top: 1rem;
}
#join .offers .offer .action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 2rem 3rem;
}
#join .offers .offer .action .smallcaps {
  color: #B8B8B8;
  margin-bottom: 0;
}
#join .offers .offer .action .btn {
  margin-top: 0;
}

#ecosystem {
  padding-top: 10rem;
}
#ecosystem .wrapper h2, #ecosystem .wrapper .content #title h1, .content #title #ecosystem .wrapper h1, #ecosystem .wrapper .number {
  text-align: center;
  margin-bottom: 7rem;
}
#ecosystem .wrapper .partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  grid-gap: 3rem 5rem;
}
#ecosystem .wrapper .partners .partner {
  display: flex;
  align-items: center;
}
#ecosystem .wrapper .partners .partner .visuel {
  width: 10rem;
  height: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 3rem;
}

.content h2, .content #title h1, .content .number {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.content .img-wrapper {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
}
.content .img-wrapper.ratio-1-1 {
  aspect-ratio: 1/1;
}
.content .img-wrapper.ratio-4-3 {
  aspect-ratio: 4/3;
}
.content img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.content #title {
  background-color: #F3F8FE;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0 0 10rem 10rem;
}
.content #title h1 {
  margin-bottom: 0;
  display: inline-block;
  border-bottom: 3px solid #1672EC;
  padding-bottom: 1rem;
}
.content #simple {
  padding-top: 3rem;
}
.content .cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem 5rem;
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}
.content .cols .smallcaps {
  margin-bottom: 1.5rem;
}
.content .cols .col-2.v-align {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}
.content .cta-wrapper .cta {
  border: 3px solid #6AA742;
  border-radius: 2rem;
  padding: 0 3rem 3rem 3rem;
  max-width: 45rem;
}
.content .cta-wrapper h2, .content .cta-wrapper .number, .content .cta-wrapper #title h1, .content #title .cta-wrapper h1 {
  background-color: #FFFFFF;
  display: inline-block;
  margin-top: -2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
}
.content .cta-wrapper a {
  font-weight: bold;
  color: #6AA742;
}

footer {
  margin-bottom: 0;
  padding-bottom: 0;
}
footer .wrapper {
  background-color: #F3F8FE;
  padding: 5rem 7rem 5rem 7rem;
  border-radius: 2rem 2rem 0 0;
}
@media (max-width: 768px) {
  footer .wrapper {
    margin: auto -7.5rem;
  }
}
footer .wrapper .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .wrapper .header .brand {
  display: flex;
  align-items: center;
}
footer .wrapper .header .brand img {
  margin-right: 5rem;
  height: auto;
}
@media (max-width: 480px) {
  footer .wrapper .header .brand {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .wrapper .header .brand img {
    margin-bottom: 3rem;
    margin-right: 0;
  }
}
@media (max-width: 1280px) {
  footer .wrapper .header .btn {
    display: none;
  }
}
footer .wrapper .articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 5rem 3rem;
  position: relative;
  margin-bottom: 7rem;
  margin-top: 5rem;
}
@media (max-width: 1280px) {
  footer .wrapper .articles {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1440px) {
  footer .wrapper .articles {
    grid-gap: 3rem 3rem;
  }
}
footer .wrapper .articles .article {
  background-color: #FFFFFF;
  -webkit-border-radius: 2rem;
  -ms-border-radius: 2rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
footer .wrapper .articles .article .header {
  display: flex;
  align-items: flex-end;
  height: 10rem;
  background-size: cover;
  background-position: center center;
  padding: 3rem 3rem 0 3rem;
}
footer .wrapper .articles .article .header .tag {
  margin-bottom: 0;
}
footer .wrapper .articles .article .body {
  padding: 3rem;
}
footer .wrapper .articles .article .body .highlight {
  margin-bottom: 3rem;
}
footer .wrapper .articles .article .body .highlight::after {
  display: block;
  content: " ";
  width: 2rem;
  height: 3px;
  background-color: #1672EC;
  border-radius: 3px;
  margin-top: 1rem;
}
footer .wrapper .articles .article .action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 2rem 3rem;
}
footer .wrapper .articles .article .action .smallcaps {
  color: #B8B8B8;
  margin-bottom: 0;
}
footer .wrapper .articles .article .action .btn {
  margin-top: 0;
}
footer .wrapper .links {
  text-align: center;
  margin-top: 5rem;
}
footer .wrapper .links a {
  font-weight: 600;
}
footer .wrapper .links a:not(:last-of-type)::after {
  display: inline-block;
  content: " ";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 2px;
}/*# sourceMappingURL=style.css.map */