@charset "UTF-8";
@media (max-width: 1500px) {
  :root {
    --wp--preset--font-size--xx-large: 42px;
    --wp--preset--font-size--large: 20px;
  }
}
@media (max-width: 992px) {
  :root {
    --wp--preset--font-size--large: 18px;
    --wp--preset--font-size--medium: 16px;
  }
}
span.gradient {
  background: var(--Gradient, linear-gradient(90deg, #0976C6 0%, #E8187F 50%, #FF5B3B 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
a.rainbow, div.rainbow a {
  border: 2px solid #0000;
  padding: 6px 18px 9px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  color: #242851;
  text-decoration: none;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #0976C6 0%, #E8187F 50%, #FF5B3B 100%) border-box;
}
a.rainbow:hover, div.rainbow a:hover {
  background: linear-gradient(90deg, #0976C6 0%, #E8187F 50%, #FF5B3B 100%) border-box;
  color: #fff;
}
@-moz-document url-prefix() {
  a.rainbow, div.rainbow a {
    padding: 9px 18px 6px;
  }
}
.my-inline-block {
  display: inline-block;
}
.apollo-workflow * {
  font-family: var(--wp--preset--font-family--body);
}
.apollo-workflow__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: calc((100% - 1300px) / 2);
  padding-right: calc((100% - 1300px) / 2);
}
@media (max-width: 1340px) {
  .apollo-workflow__timeline {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1005px) {
  .apollo-workflow__timeline {
    grid-template-columns: 1fr;
  }
}
.apollo-workflow__timeline::before {
  content: "";
  position: absolute;
  top: 91px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d5d6eb;
}
@-moz-document url-prefix() {
  .apollo-workflow__timeline::before {
    top: 84.5px;
  }
}
@media (max-width: 1023px) {
  .apollo-workflow__timeline::before {
    width: 100%;
  }
}
.apollo-workflow__stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  align-items: flex-start;
}
.apollo-workflow__stage:nth-child(1) .apollo-workflow__stage-dot, .apollo-workflow__stage:nth-child(2) .apollo-workflow__stage-dot, .apollo-workflow__stage:nth-child(5) .apollo-workflow__stage-dot, .apollo-workflow__stage:nth-child(6) .apollo-workflow__stage-dot {
  margin-top: -15px;
}
.apollo-workflow__stage:nth-child(3), .apollo-workflow__stage:nth-child(4) {
  width: 270px;
}
@media (max-width: 1320px) {
  .apollo-workflow__stage:nth-child(3), .apollo-workflow__stage:nth-child(4) {
    width: 210px;
  }
}
@media (max-width: 1300px) {
  .apollo-workflow__stage:nth-child(3), .apollo-workflow__stage:nth-child(4) {
    width: 140px;
  }
}
.apollo-workflow__stage:nth-child(6) {
  width: 200px;
}
@media (max-width: 1300px) {
  .apollo-workflow__stage:nth-child(6) {
    width: 175px;
  }
}
@media (max-width: 1005px) {
  .apollo-workflow__stage:nth-child(2) {
    transform: translateY(-13px);
  }
}
.apollo-workflow__stage-label {
  padding: 8px 20px 10px;
  border-radius: 50px;
  background: #f5f5f7;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #242851;
}
@-moz-document url-prefix() {
  .apollo-workflow__stage-label {
    padding: 11px 20px 7px;
  }
}
.apollo-workflow__stage-dot {
  width: 8px;
  height: 8px;
  margin-top: 40px;
  border-radius: 50%;
  background: #D5D6EB;
  position: relative;
}
.apollo-workflow__stage-dot::before {
  content: "";
  width: 2px;
  height: 45px;
  background: linear-gradient(to bottom, #F5F5F7 0%, #D5D6EB 100%);
  bottom: 7px;
  left: 3px;
  position: absolute;
}
.apollo-workflow__trigger {
  position: relative;
  height: 68px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #ff5b3b;
  cursor: pointer;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 5px;
}
@media (max-width: 1300px) {
  .apollo-workflow__trigger {
    font-size: 20px;
    line-height: 27px;
    padding-top: 13px;
  }
}
.apollo-workflow__trigger span {
  position: absolute;
  top: -20px;
  left: 76px;
}
@media (max-width: 1300px) {
  .apollo-workflow__trigger span {
    left: 50px;
  }
}
.apollo-workflow__trigger span:not(.apollo-workflow__stage-dot-color) {
  animation: pulse-anim 1.2s infinite;
  /* Durée et boucle infinie */
}
@keyframes pulse-anim {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    /* L'élément grossit légèrement */
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.apollo-workflow__trigger::before {
  position: absolute;
  content: " ";
  top: -1px;
  left: -30px;
  right: -30px;
  height: 2px;
  background: linear-gradient(90deg, #D5D6EB 0%, #FF5B3B 50%, #D5D6EB 100%);
}
@media (max-width: 1300px) {
  .apollo-workflow__trigger::before {
    left: -10px;
    right: -10px;
  }
}
.apollo-workflow__trigger:hover {
  background: var(--Gradient, linear-gradient(90deg, #0976C6 0%, #E8187F 50%, #FF5B3B 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.apollo-workflow__trigger span.apollo-workflow__stage-dot-color {
  display: none;
}
.apollo-workflow #apollo-workflow-tab-interpret {
  color: #e8187f;
}
.apollo-workflow #apollo-workflow-tab-interpret span:not(.apollo-workflow__stage-dot-color) {
  position: absolute;
  top: -20px;
  left: 83px;
}
@media (max-width: 1300px) {
  .apollo-workflow #apollo-workflow-tab-interpret span:not(.apollo-workflow__stage-dot-color) {
    left: 56px;
  }
}
.apollo-workflow #apollo-workflow-tab-interpret::before {
  position: absolute;
  content: " ";
  background: linear-gradient(90deg, #D5D6EB 0%, #e8187f 50%, #D5D6EB 100%);
}
.apollo-workflow #apollo-workflow-tab-interpret.is-active span.apollo-workflow__stage-dot-color {
  background: #e8187f !important;
  left: 97px;
}
.apollo-workflow #apollo-workflow-tab-interpret.is-active span.apollo-workflow__stage-dot-color::before {
  background: #e8187f !important;
}
@media (max-width: 1300px) {
  .apollo-workflow #apollo-workflow-tab-interpret.is-active span.apollo-workflow__stage-dot-color {
    left: 71px;
  }
}
@media (max-width: 1023px) {
  .apollo-workflow #apollo-workflow-tab-interpret.is-active span.apollo-workflow__stage-dot-color {
    display: none;
  }
}
.apollo-workflow__trigger.is-active {
  padding-top: 13px;
}
.apollo-workflow__trigger.is-active span.apollo-workflow__stage-dot-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5B3B;
  top: unset;
  margin-top: 0;
  left: 92px;
  bottom: -27px;
  display: block;
  position: relative;
}
.apollo-workflow__trigger.is-active span.apollo-workflow__stage-dot-color::before {
  content: "";
  width: 2px;
  height: 23px;
  background: #FF5B3B;
  top: -21px;
  left: 3px;
  position: absolute;
}
@media (max-width: 1300px) {
  .apollo-workflow__trigger.is-active span.apollo-workflow__stage-dot-color {
    left: 65px;
  }
}
@media (max-width: 1023px) {
  .apollo-workflow__trigger.is-active span.apollo-workflow__stage-dot-color {
    display: none;
  }
}
.apollo-workflow__trigger.is-active span:not(.apollo-workflow__stage-dot-color) {
  animation: none;
}
.apollo-workflow__panels {
  margin-top: 20px;
}
@media (max-width: 1300px) {
  .apollo-workflow__panels {
    margin-top: 30px;
  }
}
.apollo-workflow__panel--acquire {
  background: #F5F5F7;
  position: relative;
}
.apollo-workflow__panel--acquire::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #D5D6EB 0%, #FF5B3B 50%, #D5D6EB 100%);
  height: 2px;
}
.apollo-workflow__panel--interpret {
  background: #F5F5F7;
  position: relative;
}
.apollo-workflow__panel--interpret::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #D5D6EB 0%, #e8187f 50%, #D5D6EB 100%);
  height: 2px;
}
.apollo-workflow__panel--interpret .apollo-workflow__panel-header .apollo-workflow__eyebrow {
  color: #e8187f !important;
}
.apollo-workflow__panel--interpret .apollo-workflow__steps {
  grid-template-columns: repeat(2, 1fr);
  max-width: 855px;
}
@media (max-width: 600px) {
  .apollo-workflow__panel--interpret .apollo-workflow__steps {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;
  }
}
.apollo-workflow__panel {
  padding: 56px 20px 75px;
}
.apollo-workflow__panel .apollo-workflow__panel-header .apollo-workflow__eyebrow {
  color: #FF5B3B;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.apollo-workflow__panel .apollo-workflow__panel-header .apollo-workflow__panel-title {
  color: #242851;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.apollo-workflow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding: 0;
  list-style: none;
  max-width: 1583px;
  margin: auto;
}
@media (max-width: 1023px) {
  .apollo-workflow__steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 0;
  }
}
@media (max-width: 600px) {
  .apollo-workflow__steps {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;
  }
}
.apollo-workflow__steps .apollo-workflow__step {
  margin-top: 36px;
}
.apollo-workflow__steps img {
  max-width: 100%;
  height: auto;
  max-height: 163px;
  width: auto;
  mix-blend-mode: darken;
}
.apollo-workflow__steps .step-title {
  color: #242851;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 5px;
}
.apollo-workflow__steps .apollo-workflow__step-text p {
  color: #71728E;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@keyframes workflow-line {
  to {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .apollo-workflow__stage {
    opacity: 0;
  }
  .apollo-workflow.is-visible .apollo-workflow__timeline::before {
    animation: workflow-line 0.7s ease-out forwards;
  }
  .apollo-workflow.is-visible .apollo-workflow__stage {
    animation: workflow-stage 0.45s ease-out forwards;
    animation-delay: calc(.7s + (var(--stage-index) * 0.75s));
  }
  .apollo-workflow__panels.rwd {
    display: none;
  }
}
@media (max-width: 1023px) {
  .apollo-workflow__panels {
    display: none;
  }
  .apollo-workflow__panels.rwd {
    display: block;
    transform: translateX(-10px);
    margin-top: 20px;
  }
  .apollo-workflow__timeline::before {
    width: 2px;
    height: 100%;
    left: 23px;
    top: 0;
  }
  .apollo-workflow__timeline .apollo-workflow__stage {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: flex-start;
    text-align: center;
    align-items: center;
    padding-left: 46px;
    width: 100% !important;
    margin-bottom: 36px;
  }
  .apollo-workflow__timeline .apollo-workflow__stage .apollo-workflow__stage-dot {
    margin-top: 0;
    position: absolute;
    left: 0;
  }
  .apollo-workflow__timeline .apollo-workflow__stage .apollo-workflow__stage-dot::before {
    content: "";
    width: 45px;
    height: 2px;
    background: linear-gradient(to left, #F5F5F7 0%, #D5D6EB 100%);
    bottom: 3px;
    left: 3px;
    position: absolute;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(2) {
    transform: translate(0);
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(3)::before {
    position: absolute;
    content: " ";
    top: 0px;
    bottom: 0;
    left: 3px;
    width: 2px;
    background: linear-gradient(to bottom, #D5D6EB 0%, #FF5B3B 50%, #D5D6EB 100%);
    transform: translateY(-25%);
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(3) button::before {
    content: none;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(3) .apollo-workflow__stage-dot {
    top: 21px;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(3) .apollo-workflow__trigger {
    padding-top: 64px;
    height: unset;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(3) .apollo-workflow__trigger span {
    top: 24px;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(4)::before {
    position: absolute;
    content: " ";
    top: 0px;
    bottom: 0;
    left: 3px;
    width: 2px;
    background: linear-gradient(to bottom, #D5D6EB 0%, #e8187f 50%, #D5D6EB 100%);
    transform: translateY(-25%);
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(4) button::before {
    content: none !important;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(4) .apollo-workflow__stage-dot {
    top: 21px;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(4) .apollo-workflow__trigger {
    padding-top: 64px;
    height: unset;
  }
  .apollo-workflow__timeline .apollo-workflow__stage:nth-of-type(4) .apollo-workflow__trigger span {
    top: 24px !important;
  }
}
@keyframes workflow-stage {
  to {
    opacity: 1;
  }
}
body.home .apollo-workflow__stage-dot::before {
  height: 47px;
}
body.home .apollo-workflow__trigger {
  text-decoration: none;
  padding-top: 20px;
}
body.home .apollo-workflow__trigger:hover {
  background: var(--Gradient, linear-gradient(90deg, #0976C6 0%, #E8187F 50%, #FF5B3B 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1300px) {
  body.home .apollo-workflow__trigger {
    height: auto;
  }
  body.home .apollo-workflow__trigger::before {
    top: 1px;
  }
  body.home .apollo-workflow__trigger span {
    top: -17px !important;
  }
}
@media (max-width: 1023px) {
  body.home .apollo-workflow__trigger span {
    top: 24px !important;
  }
}
@media (max-width: 1300px) {
  body.home .apollo-workflow__timeline::before {
    top: 93px;
  }
}
@media (max-width: 1023px) {
  body.home .apollo-workflow__timeline::before {
    top: 0px;
  }
}
@media (max-width: 1023px) {
  body.home .apollo-workflow__stage a::before {
    content: none;
  }
  body.home .apollo-workflow__stage:nth-of-type(3) a::before, body.home .apollo-workflow__stage:nth-of-type(4) a::before {
    content: none !important;
  }
}
