.c-primary {
  color: #137C8E;
}

.c-secondary {
  color: #E20613;
}

.c-gray {
  color: #707070;
}

.c-gray-l {
  color: #EBEBEB;
}

.c-white {
  color: #FFFFFF;
}

.bg-primary {
  background: #137C8E;
}

.bg-secondary {
  background: #E20613;
}

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

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.overflow {
  overflow: hidden;
}

h1, h2, h3, h4, p, a, span, label, input, textarea, li, div, input {
  font-family: Avenir;
  line-height: 100%;
  font-style: normal;
}

li {
  list-style: none;
}

h2 {
  position: relative;
}

@media (max-width: 1600px) {
  .laptop-none {
    display: none !important;
  }
}

.laptop-only {
  display: none !important;
}
@media (max-width: 1600px) {
  .laptop-only {
    display: flex !important;
  }
}

@media (max-width: 1200px) {
  .tablet-none {
    display: none !important;
  }
}

.tablet-only {
  display: none !important;
}
@media (max-width: 1200px) {
  .tablet-only {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .mobile-none {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}
@media (max-width: 767px) {
  .mobile-only {
    display: flex !important;
  }
}

.filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
}

.gform_wrapper .gform_validation_errors {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 380px 0 0 !important;
}
@media (max-width: 1400px) {
  .gform_wrapper .gform_validation_errors {
    padding: 0 !important;
  }
}
.gform_wrapper .gform_validation_errors span {
  display: none !important;
}
.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
  border: none !important;
  background: #FFFFFF !important;
  padding: 0 !important;
}
.gform_wrapper .gform_heading {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .gform_wrapper .gform_heading {
    margin-bottom: 20px;
  }
}

.gform_confirmation_wrapper {
  padding: 0 380px 0 0 !important;
}
@media (max-width: 1400px) {
  .gform_confirmation_wrapper {
    padding: 0 !important;
  }
}

form {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  form {
    margin-bottom: 50px !important;
  }
}
form .grid-2 {
  display: grid;
  -moz-column-gap: 40px;
       column-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
@media (max-width: 1200px) {
  form .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
form input[type=text], form input[type=email], form input[type=tel], form textarea {
  height: 48px !important;
  padding-left: 20px !important;
  border: 1px solid #707070 !important;
  border-radius: 10px !important;
  font-size: 20px !important;
}
@media (max-width: 767px) {
  form input[type=text], form input[type=email], form input[type=tel], form textarea {
    height: 40px !important;
    font-size: 15px !important;
  }
}
form input[type=text]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form input[type=tel]::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #CCCCCC !important;
}
form textarea {
  height: 100px !important;
}
form input[type=checkbox] {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
form input[type=checkbox]::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border: 4px solid #707070;
}
form input[type=checkbox]::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #137C8E;
  left: 6px;
  top: 6px;
  transform: scale(0);
  transition: 0.5s;
}
form input[type=checkbox]:checked::after {
  transform: scale(1);
}
form .ginput_container_consent {
  display: flex;
  align-items: center;
}
form .ginput_container_consent label {
  padding-left: 15px;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: #137C8E;
}
@media (max-width: 767px) {
  form .ginput_container_consent label {
    font-size: 14px;
  }
}
form .gfield_required {
  display: none !important;
}
form .gfield_consent_description {
  display: none !important;
}
form .gform_footer {
  display: flex;
}
form input[type=submit] {
  margin: auto;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
@media (max-width: 767px) {
  form input[type=submit] {
    background: black;
    color: white;
  }
}
form .hCaptcha-consent label {
  display: none !important;
}
@media (max-width: 767px) {
  form .hCaptcha-consent .h-captcha {
    display: flex;
    justify-content: center;
  }
}

.cta, input[type=submit] {
  background: #FFFFFF;
  padding: 12px 18px;
  font-size: 30px;
  font-weight: 750;
  line-height: 100% !important;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  border: 2px solid black;
  transition: 0.2s;
}
.cta:hover, input[type=submit]:hover {
  background: #000000;
  color: #FFFFFF;
}
.cta.invert, input[type=submit].invert {
  background: rgba(255, 255, 255, 0);
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cta.invert:hover, input[type=submit].invert:hover {
  background: white;
  color: #000000;
}
@media (max-width: 767px) {
  .cta, input[type=submit] {
    font-size: 20px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 10;
}
.modal.newsletter .content {
  position: absolute;
  padding: 90px 45px;
  background: #FFFFFF;
  max-width: 700px;
  min-height: 700px;
}
@media (max-width: 767px) {
  .modal.newsletter .content {
    min-width: auto;
    min-height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .modal.newsletter .content form {
    margin-bottom: 0 !important;
  }
}
.modal.newsletter .content p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .modal.newsletter .content p {
    margin-bottom: 20px;
  }
}
.modal .cross {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
}
.modal.active {
  display: flex;
}

.deco-header .deco-1 {
  position: absolute;
  right: 0;
  top: -25px;
  transform-origin: top right;
  transform: scale(0.8);
}
.deco-header .deco-2 {
  position: absolute;
  right: 130px;
  top: 0;
  transform: scale(3);
}
@media (max-width: 1200px) {
  .deco-header .deco-2 {
    right: 60px;
    top: -25px;
    transform: scale(1.8);
  }
}
@media (max-width: 767px) {
  .deco-header .deco-2 {
    right: -52px;
    transform: scale(1.05);
  }
}

.anchor {
  display: block;
  position: relative;
  top: -50px;
  visibility: hidden;
}
.anchor#collective-anchor {
  top: 75px;
}
@media (max-width: 767px) {
  .anchor#collective-anchor {
    top: -60px;
  }
}
@media (max-width: 767px) {
  .anchor#goals-anchor, .anchor#approach-anchor {
    top: -30px;
  }
  .anchor#about-anchor, .anchor#reach-anchor {
    top: 0;
  }
}

@keyframes opacityIn {
  to {
    opacity: 1;
  }
}
@keyframes slideVertical {
  to {
    transform: translateY(0);
  }
}
@keyframes slideHorizon {
  to {
    transform: translateX(0);
  }
}
@keyframes slideToRight {
  to {
    transform: translateX(105%);
  }
}
@keyframes label-Horizon-Desc {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes label-Horizon-Laptop {
  to {
    opacity: 1;
    transform: translateX(0) scale(0.8);
  }
}
@keyframes label-Horizon-Tablet {
  to {
    opacity: 1;
    transform: translateX(0) scale(0.65);
  }
}
@keyframes label-Horizon-Mob {
  to {
    opacity: 1;
    transform: translateX(0) scale(0.4);
  }
}
@keyframes collective-scale-Desc {
  to {
    transform: scale(1);
  }
}
@keyframes collective-scale-Mob {
  to {
    transform: scale(0.15);
  }
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/Avenir-Light.otf") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/Avenir-Book.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/Avenir-Medium.otf") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: Avenir;
  src: url("../fonts/Avenir-Black.otf") format("opentype");
  font-weight: 750;
}
.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-750 {
  font-weight: 750;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}
@media (max-width: 1200px) {
  .fs-19 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .fs-19 {
    font-size: 10px;
  }
}

.fs-20 {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .fs-20 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .fs-20 {
    font-size: 10px;
  }
}

.fs-22 {
  font-size: 22px;
}
@media (max-width: 767px) {
  .fs-22 {
    font-size: 14px;
  }
}

.fs-24 {
  font-size: 24px;
}
@media (max-width: 1200px) {
  .fs-24 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .fs-24 {
    font-size: 12px;
  }
}

.fs-26 {
  font-size: 26px;
}
@media (max-width: 1200px) {
  .fs-26 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .fs-26 {
    font-size: 16px;
  }
}

.fs-30 {
  font-size: 30px;
}
@media (max-width: 1200px) {
  .fs-30 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .fs-30 {
    font-size: 18px;
  }
}

.fs-50 {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .fs-50 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .fs-50 {
    font-size: 18px;
  }
}

.fs-64 {
  font-size: 64px;
}
@media (max-width: 1200px) {
  .fs-64 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .fs-64 {
    font-size: 24px;
  }
}

.fs-100 {
  font-size: 100px;
}
@media (max-width: 1400px) {
  .fs-100 {
    font-size: 80px;
  }
}
@media (max-width: 1200px) {
  .fs-100 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .fs-100 {
    font-size: 40px;
  }
}

.lh-135, .lh-135 p {
  line-height: 135%;
}

.lh-150, .lh-150 p {
  line-height: 150%;
}

.uppercase {
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  padding: 15px 80px;
  margin: auto;
  z-index: 5;
  transition: 0.5s;
}
header.primary {
  display: flex;
  justify-content: center;
  padding: 0;
  background: rgba(19, 124, 142, 0);
}
header.primary.active {
  background: #137c8e;
}
header.primary.active .bar .logo {
  opacity: 1;
}
header.primary + main {
  padding-top: 80px;
}
header.primary .bar {
  max-width: 1760px;
  padding: 0 100px 0 50px;
}
header.primary .bar .menu .content {
  top: -40px;
}
header .bar {
  background: rgba(255, 255, 255, 0);
  height: 100%;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
header .bar .logo {
  display: flex;
  opacity: 0;
  transition: 0.5s;
}
header .bar .logo svg {
  height: 60px;
  width: auto;
}
header .bar .menu {
  position: relative;
}
header .bar .menu .close {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
header .bar .menu .burger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
header .bar .menu .burger span {
  background: #FFFFFF;
  border-radius: 5px;
  transition: 0.5s;
  height: 5px;
  width: 40px;
}
header .bar .menu .burger span:nth-child(2) {
  margin: 7px 0;
  transform-origin: left;
}
header .bar .menu .content {
  position: absolute;
  max-height: 0px;
  overflow: hidden;
  right: -20px;
  top: -35px;
  background: #FFFFFF;
  padding: 0 140px 0 50px;
  transition: 0.5s;
}
header .bar .menu .content ul {
  width: -moz-max-content;
  width: max-content;
  margin-top: 60px;
}
header .bar .menu .content ul li {
  padding: 7px 0;
}
header .bar .menu .content hr {
  height: 1px;
  width: 55px;
  background: #707070;
  border: none;
  margin: 10px 0 15px;
}
header .bar .menu .content a {
  color: #000000;
}
header .bar .menu .content .network {
  display: flex;
  justify-content: flex-start;
  margin: 20px 0 30px 0;
}
header .bar .menu.active .close {
  display: block;
}
header .bar .menu.active .burger span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 7px);
  background: #137C8E;
}
header .bar .menu.active .burger span:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
}
header .bar .menu.active .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -7px);
  background: #137C8E;
}
header .bar .menu.active .content {
  max-height: 500px;
}
header .bar.active {
  background: rgba(255, 255, 255, 0.35);
}
header .bar.active .logo {
  opacity: 1;
}
header .bar.active .menu .burger span {
  background: #137C8E;
}

main {
  padding-top: 130px;
  overflow: hidden;
  position: relative;
}
main section {
  position: relative;
}
main .player {
  max-width: 1760px;
  width: 100%;
  padding: 0 100px;
  margin: auto;
}
main .player .content {
  position: relative;
  display: flex;
  flex-direction: column;
}
main .player .content img,
main .player .content video {
  height: 450px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .player .content h1 {
  padding: 30px 125px 30px 30px;
}
main .player .deco svg {
  position: absolute;
}
main .player .deco svg.deco-1 {
  right: -157px;
  top: -185px;
}
main .player .deco svg.deco-2 {
  bottom: -109px;
  left: -19px;
  height: 522px;
  width: auto;
}
main .player .deco svg.deco-3 {
  top: 450px;
  right: -420px;
}
main .player .deco svg.deco-4 {
  bottom: -20px;
  left: 0px;
}
main .player .deco svg.deco-5 {
  right: 130px;
  top: -90px;
  transform: scale(3);
}
main .goals {
  max-width: 1760px;
  width: 100%;
  padding: 55px 35px 0;
  margin: auto;
}
main .goals .title {
  padding-left: 480px;
}
main .goals .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .goals .title h2 p {
  opacity: 0;
  transform: translateY(-10px);
}
main .goals .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 35px;
  width: 100%;
  left: -80px;
  bottom: 10px;
  transform: translateX(120%);
}
main .goals .content {
  padding: 200px 0 200px;
  display: flex;
  justify-content: center;
}
main .goals .content .bubble-wrap {
  position: relative;
  opacity: 0;
  transform: scale(1);
}
@media (max-width: 1730px) {
  main .goals .content .bubble-wrap {
    transform: scale(0.75);
  }
}
main .goals .content .bubble-wrap .bubble {
  position: relative;
  display: flex;
}
main .goals .content .bubble-wrap .bubble div {
  position: absolute;
}
main .goals .content .bubble-wrap .bubble div b {
  font-weight: 750;
}
main .goals .content .bubble-wrap .bubble h3 {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 140%;
}
main .goals .content .bubble-wrap .bubble.normal {
  cursor: pointer;
}
main .goals .content .bubble-wrap .bubble.roll {
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0);
}
main .goals .content .bubble-wrap.active {
  z-index: 5;
}
main .goals .content .bubble-wrap.active .bubble.normal {
  animation: 0.3s ease-out 0s 1 normal forwards bubble-scale-down;
}
main .goals .content .bubble-wrap.active .bubble.roll {
  animation: 0.3s ease-out 0.3s 1 normal forwards bubble-scale-up;
}
@keyframes bubble-scale-down {
  to {
    transform: scale(0);
  }
}
@keyframes bubble-scale-up {
  to {
    transform: scale(1);
    @media (max-width: 1730px) {
      main .goals .content .bubble-wrap {
        transform: scale(0.75);
      }
    }
  }
}
main .goals .content .bubble-wrap.bubble-wrap-1 {
  bottom: 100px;
}
@media (max-width: 1730px) {
  main .goals .content .bubble-wrap.bubble-wrap-1 {
    left: 140px;
  }
}
main .goals .content .bubble-wrap.bubble-wrap-1 .bubble div {
  padding: 140px 50px 0 50px;
}
main .goals .content .bubble-wrap.bubble-wrap-1 .bubble.roll {
  right: auto;
  left: 0;
}
main .goals .content .bubble-wrap.bubble-wrap-2 {
  top: 140px;
  left: 25px;
}
@media (max-width: 1730px) {
  main .goals .content .bubble-wrap.bubble-wrap-2 {
    top: 75px;
    left: 100px;
  }
}
main .goals .content .bubble-wrap.bubble-wrap-2 .bubble h3 {
  padding-bottom: 117px;
}
main .goals .content .bubble-wrap.bubble-wrap-2 .bubble div {
  padding: 10px 115px 0 20px;
}
main .goals .content .bubble-wrap.bubble-wrap-3 {
  bottom: 70px;
  left: 50px;
}
main .goals .content .bubble-wrap.bubble-wrap-3 .bubble h3 {
  padding-bottom: 117px;
}
main .goals .content .bubble-wrap.bubble-wrap-3 .bubble div {
  padding: 20px 20px 0 20px;
}
main .goals .content .bubble-wrap.bubble-wrap-4 {
  top: 60px;
  right: 80px;
}
@media (max-width: 1730px) {
  main .goals .content .bubble-wrap.bubble-wrap-4 {
    top: 25px;
  }
}
main .goals .content .bubble-wrap.bubble-wrap-4 .bubble h3 {
  padding: 0px 35px;
}
main .goals .content .bubble-wrap.bubble-wrap-4 .bubble div {
  padding: 160px 20px 0 20px;
}
main .goals .content .bubble-wrap.bubble-wrap-5 {
  bottom: 90px;
  right: 50px;
}
@media (max-width: 1730px) {
  main .goals .content .bubble-wrap.bubble-wrap-5 {
    right: 110px;
  }
}
main .goals .content .bubble-wrap.bubble-wrap-5 .bubble h3 {
  padding: 0 15px;
}
main .goals .content .bubble-wrap.bubble-wrap-5 .bubble div {
  padding: 130px 20px 0 20px;
}
main .goals .content .bubble-wrap.bubble-wrap-6 {
  top: 80px;
  right: 15px;
}
@media (max-width: 1730px) {
  main .goals .content .bubble-wrap.bubble-wrap-6 {
    right: 140px;
  }
}
main .goals .content .bubble-wrap.bubble-wrap-6 .bubble h3 {
  padding-right: 50px;
}
main .goals .content .bubble-wrap.bubble-wrap-6 .bubble div {
  padding: 20px 310px 0 20px;
}
main .goals .content .filter {
  opacity: 0;
  pointer-events: none;
  transition: 0.6s;
  z-index: 5;
}
main .goals .content .filter.active {
  opacity: 1;
  pointer-events: auto;
}
main .goals .deco svg {
  position: absolute;
}
main .goals .deco svg.deco-1 {
  bottom: 180px;
  left: 0px;
}
main .goals.anim h2 p {
  animation: opacityIn 0.5s ease-out 1s forwards, slideVertical 0.5s ease-out 1s forwards;
}
main .goals.anim h2::before {
  animation: slideHorizon 1s ease-out forwards;
}
main .goals.anim .content .bubble-wrap.bubble-wrap-1 {
  animation: opacityIn 0.5s ease-in 1.5s forwards;
}
main .goals.anim .content .bubble-wrap.bubble-wrap-2 {
  animation: opacityIn 0.5s ease-in 2s forwards;
}
main .goals.anim .content .bubble-wrap.bubble-wrap-3 {
  animation: opacityIn 0.5s ease-in 2.5s forwards;
}
main .goals.anim .content .bubble-wrap.bubble-wrap-4 {
  animation: opacityIn 0.5s ease-in 3s forwards;
}
main .goals.anim .content .bubble-wrap.bubble-wrap-5 {
  animation: opacityIn 0.5s ease-in 3.5s forwards;
}
main .goals.anim .content .bubble-wrap.bubble-wrap-6 {
  animation: opacityIn 0.5s ease-in 4s forwards;
}
main .approach {
  max-width: 1760px;
  width: 100%;
  padding: 55px 35px 0;
  margin: auto;
}
main .approach .title {
  padding-left: 480px;
}
main .approach .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .approach .title h2 p {
  opacity: 0;
  transform: translateY(-10px);
}
main .approach .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 35px;
  width: 100%;
  left: -80px;
  bottom: 10px;
}
main .approach .title h2::after {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="79" height="70" viewBox="0 0 79 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M78.4273 24.9265V48.4586L57.2167 69.5026H22.251L53.7369 38.1845L53.5703 24.9264H24.9018L0.211426 0.236084H53.7369L78.4273 24.9265Z" fill="rgb(19, 124, 142)"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 70px;
  left: 25px;
  top: 5px;
}
main .approach .label {
  padding-top: 80px;
  display: flex;
  justify-content: center;
}
main .approach .label .wrap {
  display: flex;
  justify-content: space-around;
  position: relative;
  padding-top: 150px;
  min-width: 900px;
}
main .approach .label .wrap > div svg {
  position: absolute;
  top: 0;
}
main .approach .label .wrap > div:first-child svg {
  transform-origin: left;
  transform: translateX(500px);
  opacity: 0;
  left: 0;
}
main .approach .label .wrap > div:nth-child(2) svg {
  transform-origin: left;
  transform: translateX(500px);
  opacity: 0;
  left: 270px;
}
main .approach .label .wrap > div:nth-child(2) div {
  color: #137C8E;
}
main .approach .label .wrap > div:last-of-type svg {
  right: 0;
  top: -15px;
  transform-origin: right;
  transform: translateX(-500px);
  opacity: 0;
}
main .approach .label .wrap > div:last-of-type div {
  color: #E20613;
}
main .approach .label .wrap > div div {
  opacity: 0;
  transform: translateY(-10px);
}
main .approach .accroche {
  display: flex;
  justify-content: space-between;
  padding: 120px 50px 0 130px;
}
main .approach .accroche .text {
  position: relative;
  padding-top: 80px;
}
main .approach .accroche .text::before {
  content: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="rgb(19, 124, 142)"/></svg>');
  position: absolute;
  left: -80px;
}
main .approach .accroche .text::after {
  content: url('data:image/svg+xml; utf8, <svg width="64" height="48" viewBox="0 0 64 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M38.8931 25.4443H0.282227L25.1392 0.753906H63.5834V22.6269L38.8931 47.4838L38.8931 25.4443Z" fill="black"/></svg>');
  position: absolute;
  right: -120px;
  bottom: 50px;
}
main .approach .accroche .content {
  position: relative;
  display: flex;
  justify-content: center;
}
main .approach .accroche .content svg {
  position: absolute;
  top: -50px;
  left: -400px;
}
main .approach .accroche .content div {
  position: relative;
  display: flex;
  flex-direction: column;
}
main .approach .deco svg {
  position: absolute;
}
main .approach .deco svg.deco-1 {
  right: 350px;
  top: 0;
}
main .approach .deco svg.deco-2 {
  top: 0;
  right: 1580px;
}
main .approach.anim .title h2 p {
  animation: opacityIn 0.5s ease-out 1s forwards, slideVertical 0.5s ease-out 1s forwards;
}
main .approach.anim .title h2::after {
  animation: slideToRight 1s ease-out forwards;
}
main .approach.anim .label .wrap > div:first-child svg {
  animation: label-Horizon-Desc 1s ease-out 1.5s forwards;
}
main .approach.anim .label .wrap > div:first-child div {
  animation: opacityIn 0.5s ease-out 2.5s forwards, slideVertical 0.5s ease-out 2.5s forwards;
}
main .approach.anim .label .wrap > div:nth-child(2) svg {
  animation: label-Horizon-Desc 1s ease-out 2.8s forwards;
}
main .approach.anim .label .wrap > div:nth-child(2) div {
  animation: opacityIn 0.5s ease-out 3.8s forwards, slideVertical 0.5s ease-out 3.8s forwards;
}
main .approach.anim .label .wrap > div:last-child svg {
  animation: label-Horizon-Desc 1s ease-out 4.1s forwards;
}
main .approach.anim .label .wrap > div:last-child div {
  animation: opacityIn 0.5s ease-out 5.1s forwards, slideVertical 0.5s ease-out 5.1s forwards;
}
main .about {
  max-width: 1760px;
  width: 100%;
  padding: 80px 35px 0;
  margin: auto;
}
main .about .title {
  padding-left: 480px;
}
main .about .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .about .title h2 p {
  opacity: 0;
  transform: translateY(-10px);
}
main .about .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 35px;
  width: 100%;
  left: -80px;
  bottom: 10px;
}
main .about .title h2::after {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="79" height="70" viewBox="0 0 79 70" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M78.4273 24.9265V48.4586L57.2167 69.5026H22.251L53.7369 38.1845L53.5703 24.9264H24.9018L0.211426 0.236084H53.7369L78.4273 24.9265Z" fill="rgb(19, 124, 142)"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 70px;
  left: 25px;
  top: 5px;
}
main .about .title div {
  opacity: 0;
  transform: translateX(-10px);
}
main .about .grid {
  padding-top: 100px;
  display: grid;
  grid-gap: 60px;
  grid-template-columns: repeat(4, 1fr);
}
main .about .profil {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .about .profil img {
  margin-bottom: 25px;
}
main .about .profil a {
  margin-top: auto;
}
main .about .profil a svg {
  transition: 0.2s;
}
main .about .profil a:hover svg {
  transform: scale(1.2);
}
main .about .accroche {
  padding-top: 75px;
  display: flex;
  justify-content: center;
}
main .about .accroche p {
  position: relative;
}
main .about .accroche p::before {
  content: url('data:image/svg+xml; utf8, <svg width="56" height="51" viewBox="0 0 56 51" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M33.8835 25.6243H0.90625V0.933899H55.0941V28.9388L33.8835 50.1506V25.6243Z" fill="black"/></svg>');
  position: absolute;
  left: -80px;
  top: 10px;
}
main .about .values {
  position: relative;
  padding-top: 200px;
  padding-right: 900px;
}
main .about .values .content {
  pointer-events: none;
}
main .about .values .content .value {
  padding-bottom: 50px;
}
main .about .values .content .value:nth-child(odd) {
  padding-right: 300px;
  padding-bottom: 15px;
}
@media (max-width: 1600px) {
  main .about .values .content .value:nth-child(odd) {
    padding-right: 0;
    padding-bottom: 50px;
  }
}
main .about .values .parallax-deco {
  position: absolute;
  top: -35px;
  width: 100vw;
  left: 50%;
  transform: translate(-50%);
}
main .about .values .parallax-deco svg {
  width: 100%;
  position: relative;
  right: 90px;
}
main .about .values .citation {
  position: absolute;
  right: 50px;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}
main .about.anim .title h2 p {
  animation: opacityIn 0.5s ease-out 1s forwards, slideVertical 0.5s ease-out 1s forwards;
}
main .about.anim .title h2::after {
  animation: slideToRight 1s ease-out forwards;
}
main .about.anim .title div {
  animation: opacityIn 0.5s ease-out 1.5s forwards, slideHorizon 0.5s ease-out 1.5s forwards;
}
main .collective {
  max-width: 1760px;
  width: 100%;
  padding: 200px 35px 0;
  margin: auto;
}
main .collective .title {
  padding-left: 440px;
}
main .collective .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .collective .title h2 p {
  opacity: 0;
  transform: translateY(-10px);
}
main .collective .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="25" height="109" viewBox="0 0 25 109" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.7695 24.9003V69.3112V108.75L0.0791016 83.894V0.209961L24.7695 24.9003Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 120px;
  left: -60px;
  transform: translateX(120%);
}
main .collective .title div {
  opacity: 0;
  transform: translateX(-10px);
}
main .collective .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .collective .wrap .content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 125px;
  position: relative;
}
@media (max-width: 1600px) {
  main .collective .wrap .content {
    transform: scale(0.75);
  }
}
main .collective .wrap .content .deco-1 {
  position: absolute;
  transform: scale(0);
}
main .collective .wrap .content .deco-2 {
  position: relative;
  left: 140px;
  bottom: 60px;
  flex-shrink: 0;
}
main .collective .wrap .content .deco-2 .point {
  opacity: 0;
}
main .collective .wrap .content .points .point {
  position: absolute;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
main .collective .wrap .content .points .point h4 {
  max-width: 300px;
}
main .collective .wrap .content .points .point.point-1 {
  top: 160px;
  left: 285px;
}
main .collective .wrap .content .points .point.point-2 {
  top: 475px;
  left: 235px;
}
main .collective .wrap .content .points .point.point-3 {
  top: 820px;
  left: 170px;
}
main .collective .wrap .content .points .point.point-4 {
  top: 165px;
  right: 350px;
}
main .collective .wrap .content .points .point.point-5 {
  top: 494px;
  right: 120px;
}
main .collective .wrap .content .points .point.point-6 {
  top: 850px;
  right: 120px;
}
main .collective .wrap .content .points .point.point-1, main .collective .wrap .content .points .point.point-2, main .collective .wrap .content .points .point.point-3 {
  text-align: right;
  align-items: flex-end;
}
main .collective .wrap .content .points .point.point-4, main .collective .wrap .content .points .point.point-5, main .collective .wrap .content .points .point.point-6 {
  text-align: left;
  align-items: flex-start;
}
main .collective.anim .title h2 p {
  animation: opacityIn 0.5s ease-out 1s forwards, slideVertical 0.5s ease-out 1s forwards;
}
main .collective.anim .title h2::before {
  animation: slideHorizon 1s ease-out forwards;
}
main .collective.anim .title div {
  animation: opacityIn 0.5s ease-out 1.5s forwards, slideHorizon 0.5s ease-out 1.5s forwards;
}
main .collective.anim .wrap .content .deco-1 {
  animation: collective-scale-Desc 0.5s ease-out 2s forwards;
}
main .collective.anim .wrap .content .point.point-1 {
  animation: opacityIn 0.5s ease-in 2.5s forwards;
}
main .collective.anim .wrap .content .point.point-2 {
  animation: opacityIn 0.5s ease-in 3s forwards;
}
main .collective.anim .wrap .content .point.point-3 {
  animation: opacityIn 0.5s ease-in 3.5s forwards;
}
main .collective.anim .wrap .content .point.point-4 {
  animation: opacityIn 0.5s ease-in 4s forwards;
}
main .collective.anim .wrap .content .point.point-5 {
  animation: opacityIn 0.5s ease-in 4.5s forwards;
}
main .collective.anim .wrap .content .point.point-6 {
  animation: opacityIn 0.5s ease-in 5s forwards;
}
main .clients {
  max-width: 1760px;
  width: 100%;
  padding: 80px 35px 385px;
  margin: auto;
  position: static;
}
main .clients .title {
  padding-left: 440px;
  margin-bottom: 50px;
}
main .clients .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .clients .title h2 p {
  opacity: 0;
  transform: translateY(-10px);
}
main .clients .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 35px;
  width: 100%;
  left: -80px;
  bottom: 10px;
  transform: translateX(120%);
}
main .clients .title div {
  opacity: 0;
  transform: translateX(-10px);
}
main .clients .deco {
  position: relative;
}
main .clients .deco svg {
  position: absolute;
  bottom: -385px;
  left: -40px;
}
main .clients .splide {
  background-color: #137C8E;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 50px 0;
}
main .clients .splide li {
  padding: 0 20px;
}
main .clients .splide li img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
main .clients.anim .title h2 p {
  animation: opacityIn 0.5s ease-out 1s forwards, slideVertical 0.5s ease-out 1s forwards;
}
main .clients.anim .title h2::before {
  animation: slideHorizon 1s ease-out forwards;
}
main .clients.anim .title div {
  animation: opacityIn 0.5s ease-out 1.5s forwards, slideHorizon 0.5s ease-out 1.5s forwards;
}
main .reach {
  max-width: 1760px;
  width: 100%;
  padding: 80px 35px 60px;
  margin: auto;
}
main .reach .title {
  padding-left: 480px;
}
main .reach .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .reach .title h2 p {
  opacity: 0;
  transform: translateY(-10px);
}
main .reach .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 35px;
  width: 100%;
  left: -80px;
  bottom: 10px;
  transform: translateX(120%);
}
main .reach .content {
  padding: 100px 330px 0 220px;
  position: relative;
}
main .reach .content > * {
  margin-bottom: 80px;
}
main .reach .content .formulaire > p {
  margin-bottom: 80px;
  line-height: 135%;
  font-size: 30px;
  font-weight: 750;
}
main .reach .content form {
  padding-right: 380px;
}
main .reach .content .adress {
  position: absolute;
  top: 10px;
  right: 230px;
  margin-bottom: 0;
}
main .reach .content .adress svg {
  margin-bottom: 15px;
}
main .reach .content .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 90px;
}
main .reach .deco svg {
  position: absolute;
}
main .reach .deco svg.deco-1 {
  top: 975px;
  right: 150px;
}
main .reach .deco svg.deco-2 {
  top: 1058px;
  right: -145px;
}
main .reach .deco svg.deco-3 {
  top: 500px;
  right: -975px;
}
main .reach .deco svg.deco-4 {
  top: 200px;
  left: -180px;
}
main .reach.anim h2 p {
  animation: opacityIn 0.5s ease-out 1s forwards, slideVertical 0.5s ease-out 1s forwards;
}
main .reach.anim h2::before {
  animation: slideHorizon 1s ease-out forwards;
}
main .tangram {
  max-width: 1760px;
  width: 100%;
  padding: 100px 100px 150px 100px;
  margin: auto;
}
main .tangram .title {
  padding-left: 480px;
}
main .tangram .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .tangram .title h2 p {
  opacity: 0;
  transform: translateY(-10px);
}
main .tangram .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 35px;
  width: 100%;
  left: -80px;
  bottom: 10px;
  transform: translateX(120%);
}
main .tangram.anim h2 p {
  animation: opacityIn 0.5s ease-out 1s forwards, slideVertical 0.5s ease-out 1s forwards;
}
main .tangram.anim h2::before {
  animation: slideHorizon 1s ease-out forwards;
}
main .privacy-policy {
  max-width: 1760px;
  width: 100%;
  padding: 150px 35px 200px;
  margin: auto;
}
main .privacy-policy .title {
  padding-left: 480px;
}
main .privacy-policy .title h2 {
  display: flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
main .privacy-policy .title h2::before {
  content: "";
  background-image: url('data:image/svg+xml; utf8, <svg width="55" height="36" viewBox="0 0 55 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M54.7867 0.623047V35.8332H0.907227L36.3529 0.623047H54.7867Z" fill="rgb(19,124,142)"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 35px;
  width: 100%;
  left: -80px;
  bottom: 10px;
}
main .privacy-policy .content {
  padding-top: 50px;
}
main .privacy-policy .content p {
  margin-bottom: 20px;
}

footer {
  background: #137C8E;
}
footer .wrap {
  max-width: 1760px;
  width: 100%;
  padding: 50px 60px;
  margin: auto;
  display: flex;
  align-items: flex-end;
}
footer .wrap .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
}
footer .wrap .logo svg {
  margin-bottom: 10px;
}
footer .wrap .info {
  padding: 0 345px 0 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .wrap .info a {
  color: #FFFFFF;
  cursor: pointer;
}
footer .wrap svg {
  flex-shrink: 0;
}

@media (max-width: 1400px) {
  main .goals {
    padding: 55px 0 0;
  }
  main .goals .content {
    padding: 50px 0 200px;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 300px 300px 300px;
    align-items: center;
    justify-items: center;
    margin: auto;
  }
  main .goals .content .bubble-wrap {
    transform: scale(0.9);
  }
  main .goals .content .bubble-wrap.bubble-wrap-1, main .goals .content .bubble-wrap.bubble-wrap-1 .bubble.roll, main .goals .content .bubble-wrap.bubble-wrap-2, main .goals .content .bubble-wrap.bubble-wrap-2 .bubble.roll, main .goals .content .bubble-wrap.bubble-wrap-3, main .goals .content .bubble-wrap.bubble-wrap-3 .bubble.roll, main .goals .content .bubble-wrap.bubble-wrap-4, main .goals .content .bubble-wrap.bubble-wrap-4 .bubble.roll, main .goals .content .bubble-wrap.bubble-wrap-5, main .goals .content .bubble-wrap.bubble-wrap-5 .bubble.roll, main .goals .content .bubble-wrap.bubble-wrap-6, main .goals .content .bubble-wrap.bubble-wrap-6 .bubble.roll {
    top: auto;
    left: auto;
    bottom: auto;
    right: auto;
  }
  main .goals .content .bubble-wrap.bubble-wrap-1 {
    left: 40px;
    bottom: 15px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-1 .bubble.roll {
    top: 0;
    left: 0;
  }
  main .goals .content .bubble-wrap.bubble-wrap-2 {
    right: 35px;
    top: 125px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-2 .bubble.roll {
    top: 0;
    right: 0;
  }
  main .goals .content .bubble-wrap.bubble-wrap-3 {
    bottom: 25px;
    left: 100px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-3 .bubble.roll {
    top: 0;
    left: 0;
  }
  main .goals .content .bubble-wrap.bubble-wrap-4 {
    top: 75px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-4 .bubble.roll {
    top: 0;
    right: 0;
  }
  main .goals .content .bubble-wrap.bubble-wrap-5 {
    left: 40px;
    bottom: 35px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-5 .bubble.roll {
    bottom: 0;
    left: 0;
  }
  main .goals .content .bubble-wrap.bubble-wrap-6 {
    top: 50px;
    right: 30px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-6 .bubble.roll {
    bottom: 0;
    right: 0;
  }
  main .goals .content .bubble-wrap .bubble {
    width: -moz-fit-content;
    width: fit-content;
  }
  main .approach .label .wrap > div svg {
    transform: scale(0.8);
  }
  main .approach .label .wrap > div:first-child svg {
    left: 100px;
  }
  main .approach .label .wrap > div:nth-child(2) svg {
    left: 320px;
  }
  main .approach .label .wrap > div:last-child svg {
    right: 55px;
  }
  main .approach .accroche {
    padding: 120px 40px 0 90px;
  }
  main .approach.anim .label .wrap div:first-child svg {
    animation: label-Horizon-Laptop 1s ease-out 1.5s forwards;
  }
  main .approach.anim .label .wrap div:nth-child(2) svg {
    animation: label-Horizon-Laptop 1s ease-out 2.8s forwards;
  }
  main .approach.anim .label .wrap div:last-child svg {
    animation: label-Horizon-Laptop 1s ease-out 4.1s forwards;
  }
  main .about .grid {
    padding-top: 75px;
    grid-template-columns: repeat(2, 1fr);
  }
  main .about .values {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-right: 0;
    padding-top: 110px;
  }
  main .about .values .citation {
    position: static;
  }
  main .about .values .parallax-deco {
    top: 0;
  }
  main .about .values .parallax-deco svg {
    width: auto;
    right: 235px;
  }
  main .about .values .content {
    padding-right: 50px;
  }
  main .reach .content {
    padding: 100px 100px 0 100px;
  }
  main .reach .content .adress {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 50px;
  }
  main .reach .content .adress svg {
    position: absolute;
  }
  main .reach .content .adress div {
    padding: 75px 0 0 75px;
  }
  main .reach .content form {
    padding-right: 0;
  }
  main .reach .content .wrap {
    padding-right: 0;
  }
  main .reach .deco svg.deco-3 {
    top: -200px;
    right: -1125px;
    transform: rotate(-44deg);
  }
}
@media (max-width: 1200px) {
  header .bar .menu .burger span {
    height: 5px;
    width: 33px;
  }
  header .bar .menu .burger span:nth-child(2) {
    margin: 5px 0;
  }
  header .bar .menu .content {
    top: -15px;
  }
  header .bar .menu.active .burger span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 4px);
  }
  header .bar .menu.active .burger span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -4px);
  }
  main {
    padding-top: 80px;
  }
  main .player .content h1 {
    position: absolute;
    top: calc(100% + 115px);
    padding: 30px 0px 30px 150px;
  }
  main .player .deco svg.deco-5 {
    right: 62px;
    top: -99px;
    transform: scale(1.8);
  }
  main .goals .title {
    padding-left: 175px;
    margin-bottom: 40px;
  }
  main .goals .title h2::before {
    bottom: 8px;
    left: -60px;
    height: 25px;
  }
  main .goals h1 {
    padding: 0 100px 0 250px;
  }
  main .goals .content {
    padding: 125px 0 50px;
  }
  main .approach {
    padding: 55px 0 0;
  }
  main .approach .title {
    padding-left: 175px;
  }
  main .approach .title h2::before {
    bottom: 8px;
    left: -60px;
    height: 25px;
  }
  main .approach .title h2::after {
    top: 5px;
    height: 55px;
  }
  main .approach .label .wrap {
    padding-top: 130px;
    min-width: 750px;
  }
  main .approach .label .wrap > div svg {
    transform: scale(0.65);
  }
  main .approach .label .wrap > div:first-child svg {
    left: 95px;
  }
  main .approach .label .wrap > div:nth-child(2) svg {
    left: 275px;
  }
  main .approach .label .wrap > div:last-child svg {
    right: 60px;
  }
  main .approach .accroche {
    flex-direction: column;
    padding: 120px 30px 0 90px;
  }
  main .approach .accroche .text {
    padding-top: 0;
  }
  main .approach .accroche .content {
    justify-content: flex-end;
  }
  main .approach .accroche .content svg {
    height: 550px;
    top: -40px;
    left: auto;
    right: -400px;
  }
  main .approach.anim .label .wrap div:first-child svg {
    animation: label-Horizon-Tablet 1s ease-out 1.5s forwards;
  }
  main .approach.anim .label .wrap div:nth-child(2) svg {
    animation: label-Horizon-Tablet 1s ease-out 2.8s forwards;
  }
  main .approach.anim .label .wrap div:last-child svg {
    animation: label-Horizon-Tablet 1s ease-out 4.1s forwards;
  }
  main .about {
    padding: 80px 0 0;
  }
  main .about .title {
    padding-left: 175px;
  }
  main .about .title h2 p::before {
    transform: scale(0.8);
    bottom: -3px;
  }
  main .about .title h2 p::after {
    transform: scale(0.8);
    top: -2px;
  }
  main .about .grid {
    padding: 75px 35px 0;
  }
  main .about .splide {
    padding-top: 75px;
  }
  main .about .profil {
    max-width: 750px;
    margin: auto;
  }
  main .about .values {
    padding: 45px 20px 0;
    justify-content: center;
  }
  main .about .values .parallax-deco {
    transform-origin: top right;
    transform: scale(0.4);
    top: 117px;
    left: auto;
    right: 0;
  }
  main .about .values .parallax-deco svg {
    right: 750px;
  }
  main .collective {
    padding-top: 50px;
  }
  main .collective .title {
    padding-left: 175px;
  }
  main .collective .title h2::before {
    height: 80px;
    left: -40px;
  }
  main .collective .wrap {
    height: 600px;
  }
  main .collective .wrap .content {
    transform: scale(0.5);
  }
  main .clients .title {
    padding-left: 175px;
    margin-bottom: 80px;
  }
  main .clients .title h2::before {
    display: none;
  }
  main .reach .title {
    padding-left: 175px;
  }
  main .reach .title h2::before {
    bottom: 8px;
    left: -60px;
    height: 25px;
  }
  main .reach .content {
    padding-top: 25px;
  }
  main .reach .content .formulaire > p {
    font-size: 25px;
    margin-bottom: 25px;
  }
  main .reach .content > * {
    margin-bottom: 25px;
  }
  main .reach .content .wrap .cta {
    margin-bottom: 25px;
  }
  main .reach .deco svg.deco-3 {
    right: -1225px;
  }
  main .privacy-policy {
    padding-top: 100px;
  }
  main .privacy-policy .title {
    padding-left: 175px;
    margin-bottom: 40px;
  }
  main .privacy-policy .title h2::before {
    bottom: 8px;
    left: -60px;
    height: 25px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 25px;
  }
  header.primary {
    height: 60px;
  }
  header.primary .bar {
    padding: 0 25px;
  }
  header.primary + main {
    padding-top: 60px;
  }
  header .bar .logo svg {
    height: 30px;
  }
  main .player {
    padding: 0 25px;
  }
  main .player .content img, main .player .content video {
    height: auto;
  }
  main .player .content video {
    -webkit-clip-path: inset(0px 1px);
            clip-path: inset(0px 1px);
  }
  main .player .content h1 {
    top: calc(100% + 75px);
    padding: 30px 0 30px 100px;
  }
  main .player .deco svg.deco-5 {
    right: -52px;
    top: -81px;
    transform: scale(1.05);
  }
  main .goals .title {
    padding-left: 35px;
  }
  main .goals .title h2::before {
    height: 15px;
    bottom: 4px;
    left: -35px;
  }
  main .goals .content {
    grid-template-columns: repeat(2, minmax(185px, 1fr));
    grid-template-rows: 200px 200px 200px;
    padding: 75px 0 0;
  }
  main .goals .content .bubble-wrap {
    transform: scale(0.6);
  }
  main .goals .content .bubble-wrap.bubble-wrap-1 {
    left: -16px;
    bottom: 15px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-2 {
    right: 15px;
    top: 70px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-3 {
    bottom: 25px;
    left: 25px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-4 {
    top: 40px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-5 {
    left: -16px;
    bottom: 35px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-6 {
    top: 25px;
    right: 10px;
  }
  main .goals .content .bubble-wrap.bubble-wrap-6 .bubble h3 {
    padding-right: 80px;
  }
  main .goals .content .bubble-wrap .bubble h3 {
    font-size: 22px;
  }
  main .goals .content .bubble-wrap .bubble div {
    font-size: 16px;
  }
  main .goals .deco svg.deco-1 {
    bottom: auto;
    top: 400px;
    transform: scale(0.6);
    transform-origin: left;
  }
  main .goals .deco svg.deco-2 {
    right: -40px;
    top: 195px;
    transform: scale(0.4);
    opacity: 0;
  }
  main .goals .deco svg.deco-3 {
    right: -150px;
    bottom: -75px;
    transform: scale(0.4);
    opacity: 0;
  }
  main .goals.anim .deco svg.deco-2 {
    animation: opacityIn 0.5s ease-in 1.4s forwards;
  }
  main .goals.anim .deco svg.deco-3 {
    animation: opacityIn 0.5s ease-in 2.2s forwards;
  }
  main .approach .title {
    padding-left: 35px;
  }
  main .approach .title h2::before {
    height: 15px;
    bottom: 4px;
    left: -35px;
  }
  main .approach .title h2::after {
    height: 35px;
    top: 1px;
    left: 10px;
  }
  main .approach .label {
    padding-top: 20px;
  }
  main .approach .label .wrap {
    padding-top: 100px;
    min-width: 360px;
  }
  main .approach .label .wrap > div svg {
    transform: scale(0.4);
  }
  main .approach .label .wrap > div:first-child svg {
    left: 15px;
  }
  main .approach .label .wrap > div:nth-child(2) svg {
    left: 125px;
  }
  main .approach .label .wrap > div:last-child svg {
    right: 0;
  }
  main .approach .label .wrap > div div {
    padding: 0 5px;
  }
  main .approach .accroche {
    padding: 20px 50px 0 30px;
  }
  main .approach .accroche .text {
    margin-bottom: 10px;
  }
  main .approach .accroche .text::before {
    left: -47px;
    top: -8px;
    transform: scale(0.35);
  }
  main .approach .accroche .text::after {
    right: 68px;
    bottom: auto;
    transform: scale(0.8);
    top: 48px;
  }
  main .approach .accroche .content svg {
    height: 300px;
    top: -15px;
    right: -520px;
  }
  main .approach.anim .label .wrap div:first-child svg {
    animation: label-Horizon-Mob 1s ease-out 1.5s forwards;
  }
  main .approach.anim .label .wrap div:nth-child(2) svg {
    animation: label-Horizon-Mob 1s ease-out 2.8s forwards;
  }
  main .approach.anim .label .wrap div:last-child svg {
    animation: label-Horizon-Mob 1s ease-out 4.1s forwards;
  }
  main .about .title {
    padding-left: 35px;
  }
  main .about .title h2::before {
    height: 15px;
    bottom: 4px;
    left: -35px;
  }
  main .about .title h2::after {
    height: 35px;
    top: 1px;
    left: 10px;
  }
  main .about .grid {
    padding: 75px 25px 0;
    grid-template-columns: repeat(1, 1fr);
  }
  main .about .profil {
    max-width: 500px;
  }
  main .about .profil img {
    height: 150px;
    width: auto;
  }
  main .about .profil svg {
    height: 30px;
    width: auto;
  }
  main .about .accroche {
    padding: 75px 60px 0;
  }
  main .about .accroche p::before {
    content: url('data:image/svg+xml; utf8, <svg width="64" height="48" viewBox="0 0 64 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M38.8931 25.4443H0.282227L25.1392 0.753906H63.5834V22.6269L38.8931 47.4838L38.8931 25.4443Z" fill="black"/></svg>');
    transform: scale(0.5);
    left: -60px;
    top: -10px;
  }
  main .about .values {
    padding-top: 50px;
    flex-direction: column;
    align-items: flex-end;
  }
  main .about .values .content {
    padding: 20px 15px 0 0;
  }
  main .about .values .parallax-deco {
    top: 29px;
  }
  main .about .values .parallax-deco svg {
    right: 1050px;
  }
  main .collective {
    padding: 25px 0 0;
  }
  main .collective .title {
    padding-left: 35px;
  }
  main .collective .title h2::before {
    height: 60px;
    left: -35px;
  }
  main .collective .wrap {
    height: 400px;
  }
  main .collective .wrap .content {
    height: 100%;
    transform: none;
    padding-top: 0;
  }
  main .collective .wrap .content .deco-2 {
    transform: scale(0.25);
    left: 40px;
    bottom: 0;
  }
  main .collective .wrap .content .points .point {
    max-width: 180px;
  }
  main .collective .wrap .content .points .point > h4 {
    font-size: 11px;
    padding-top: 20px;
    text-align: center;
    cursor: pointer;
  }
  main .collective .wrap .content .points .point.point-1 {
    top: 90px;
    left: 803px;
  }
  main .collective .wrap .content .points .point.point-2 {
    top: 168px;
    left: 745px;
  }
  main .collective .wrap .content .points .point.point-3 {
    top: 253px;
    left: 770px;
  }
  main .collective .wrap .content .points .point.point-4 {
    top: 97px;
    right: 767px;
  }
  main .collective .wrap .content .points .point.point-5 {
    top: 173px;
    right: 720px;
  }
  main .collective .wrap .content .points .point.point-6 {
    top: 263px;
    right: 695px;
  }
  main .collective .wrap .content .points .point .modal {
    background: #FFFFFF;
  }
  main .collective .wrap .content .points .point .modal .info {
    text-align: left;
  }
  main .collective .wrap .content .points .point .modal .info h4 {
    margin-bottom: 15px;
  }
  main .collective .wrap .content .points .point.active {
    z-index: 10;
  }
  main .collective .wrap .content .points .point.active .modal {
    opacity: 1;
    pointer-events: auto;
  }
  main .collective.anim .wrap .content .deco-1 {
    animation: collective-scale-Mob 0.5s ease-out 2s forwards;
  }
  main .clients {
    padding: 25px 0 190px;
  }
  main .clients .title {
    padding-left: 35px;
  }
  main .clients .title h2 p::before {
    left: -40px;
    transform: scale(0.7);
    bottom: -30px;
  }
  main .clients .deco svg {
    transform: scale(0.4);
    left: -131px;
  }
  main .clients .splide {
    padding: 25px 0;
  }
  main .clients .splide li {
    padding: 0 10px;
  }
  main .clients .splide li img {
    width: 100px;
    height: 100px;
  }
  main .reach {
    padding: 80px 0px 225px;
  }
  main .reach .title {
    padding-left: 35px;
  }
  main .reach .title h2::before {
    height: 15px;
    bottom: 4px;
    left: -35px;
  }
  main .reach .content {
    padding: 25px 25px 0 25px;
  }
  main .reach .content .formulaire > p {
    font-size: 18px;
  }
  main .reach .deco svg.deco-2 {
    transform: scale(1.5);
    top: auto;
    bottom: 110px;
    right: -90px;
  }
  main .reach .deco svg.deco-3 {
    transform: scale(0.5) rotate(-44deg);
    right: -1055px;
    top: -185px;
  }
  main .reach .deco svg.deco-5 {
    transform: scale(0.3);
    transform-origin: bottom left;
    bottom: 0;
    left: -200px;
  }
  main .privacy-policy {
    padding-top: 50px;
  }
  main .privacy-policy .title {
    padding-left: 35px;
  }
  main .privacy-policy .title h2::before {
    height: 15px;
    bottom: 4px;
    left: -35px;
  }
  footer .wrap {
    align-items: center;
    flex-direction: column;
    padding: 30px 60px;
  }
  footer .wrap .logo {
    margin: 0 0 20px 0;
  }
  footer .wrap .logo svg {
    max-width: 100%;
    margin-bottom: 20px;
    height: 40px;
  }
  footer .wrap .logo p {
    font-size: 12px;
  }
  footer .wrap .info {
    padding: 0;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */