@charset "UTF-8";
/*
1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(5rem);
  }
  80% {
    transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 39.5%;
  }
}

body {
  box-sizing: border-box;
  padding: 2rem;
}
@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

::selection {
  background-color: #4393b8cc;
  color: #fff;
}

.showNavTop {
  display: none;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  /*recherche pour mieux comprendre */
}
.heading-primary--main {
  display: block;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 2.5rem;
  animation: moveInLeft 1s, ease-in;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--main {
    font-size: 2rem;
    letter-spacing: 1rem;
  }
}
.heading-primary--sub {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1rem;
  text-align: center;
  animation: moveInRight 1s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--sub {
    font-size: 1.2rem;
    letter-spacing: 0.75rem;
  }
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  box-sizing: border-box;
}

.heading-secondary {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.5);
  display: inline-block;
  background-image: linear-gradient(to right, #4a93b4cc, #2189b9cc);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.2s;
  letter-spacing: 1.5px;
}
@media only screen and (max-width: 56.25em) {
  .heading-secondary {
    text-shadow: none;
    opacity: 1;
  }
}
.heading-secondary:hover {
  transform: scale(1.05);
}
@media only screen and (max-width: 56.25em) {
  .heading-secondary:hover {
    transform: scale(1);
  }
}

.heading-expertise {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.5);
  display: inline-block;
  color: white;
  background-image: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.2s;
  letter-spacing: 1.5px;
}
.heading-expertise:hover {
  transform: scale(1.05);
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.heading-quaternary {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.paragraph {
  font-size: 1.6rem;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 6rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 4rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2.5rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  /*recherche pour mieux comprendre */
  position: relative;
  font-size: 1.6rem;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn:active,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  outline: none;
}

.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}

.btn--bleu {
  background-color: #2189b9cc;
  color: #fff;
  font-weight: 300;
}
.btn--bleu::after {
  background-color: #2189b9cc;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.6s;
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.5s;
  animation-fill-mode: backwards;
}

.btn-text:link,
.btn-text:visited {
  font-size: 1.6rem;
  color: #4393b8cc;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #4393b8cc;
  padding: 3px;
  transition: all 0.2s;
}

.btn-text:hover {
  background-color: #4393b8cc;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-radius: 2px;
}

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0px);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  height: 47rem;
  position: relative;
}
.card__side {
  height: 47rem;
  transition: all 0.9s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #4a93b4cc, #2189b9cc);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0deg);
}
.card__picture {
  background-size: cover;
  height: 23rem;
  background-blend-mode: screen;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730),
    url(../img/website.webp);
}
@media (min-resolution: 192dpi) and (min-width: 37.5em), (min-width: 125em) {
  .card__picture--1 {
    background-image: linear-gradient(to right bottom, #ffb900, #ff7730),
      url(../img/website-large.webp);
  }
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa),
    url(../img/PontAcomba.webp);
}
@media (min-resolution: 192dpi) and (min-width: 37.5em), (min-width: 125em) {
  .card__picture--2 {
    background-image: linear-gradient(to right bottom, #2998ff, #5643fa),
      url(../img/PontAcomba-large.webp);
  }
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, #4a93b4cc, #2189b9cc),
    url(../img/SoftWareDevelopment.webp);
}
@media (min-resolution: 192dpi) and (min-width: 37.5em), (min-width: 125em) {
  .card__picture--3 {
    background-image: linear-gradient(to right bottom, #4a93b4cc, #2189b9cc),
      url(../img/SoftWareDevelopment-large.webp);
  }
}
.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 12rem;
  right: 1.5rem;
  width: 75%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(
    to right bottom,
    rgba(255, 185, 0, 0.85),
    rgba(255, 119, 48, 0.85)
  );
}
.card__heading-span--2 {
  background-image: linear-gradient(
    to right bottom,
    rgba(41, 152, 255, 0.85),
    rgba(86, 67, 250, 0.85)
  );
}
.card__heading-span--3 {
  background-image: linear-gradient(
    to right bottom,
    rgba(74, 147, 180, 0.85),
    rgba(33, 137, 185, 0.85)
  );
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
  text-transform: uppercase;
  /*      &:first-child {
          font-weight: 700;
        } */
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__cta a[href="#section-book"] {
  display: none;
}
.card__cta a[href="#popup"] {
  display: inline-block;
}
.card__price-box {
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 8rem;
}
.card__price-only {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 200;
}
@media only screen and (max-width: 56.25em), only screen and (hover: non) {
  .card {
    height: auto;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
    margin-bottom: -2.5rem;
  }
  .card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 10%, 100% 2%, 100% 100%, 0 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__details {
    padding: 1rem 3rem;
  }
  .card__cta {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
  }
  .card__cta a[href="#section-book"] {
    display: inline-block;
  }
  .card__cta a[href="#popup"] {
    display: none;
  }
  .card__cta a {
    margin-bottom: 4rem;
  }
  .card__price-box {
    padding: 4rem;
    margin-bottom: 0;
  }
  .card__price-value {
    font-size: 4rem;
  }
}

.composition {
  position: relative;
}
.composition__photo {
  transition: all 0.2s;
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 10;
  outline-offset: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.3333333333333%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.3);
  }
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p1 {
    top: 0;
    transform: scale(1.2);
  }
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p2 {
    transform: scale(1.3);
    top: -1rem;
    z-index: 100;
  }
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p3 {
    left: 0;
    top: 1rem;
    transform: scale(1.1);
  }
}
.composition__photo:hover {
  outline: 1.5rem solid #4393b8cc;
  transform: scale(1.1) translateY(-0.5rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo:hover {
    z-index: 200;
    transform: scale(1.2) translateY(-0.5rem);
  }
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.9);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
@media only screen and (max-width: 56.25em) {
  .feature-box {
    padding: 2rem;
  }
}
.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background-image: linear-gradient(to right, #4a93b4cc, #2189b9cc);
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 56.25em) {
  .feature-box__icon {
    margin-bottom: 0;
  }
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.clsStory {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 4rem;
  padding-left: 5rem;
  font-size: 1.6rem;
  transform: skewX(-10deg);
}
@media only screen and (max-width: 56.25em) {
  .clsStory {
    width: 100%;
    padding: 4rem;
    padding-left: 7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .clsStory {
    transform: skewX(0);
    padding-left: 4rem;
  }
}
.clsStory__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(10deg);
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .clsStory__shape {
    transform: translateX(-3rem) skewX(0);
  }
}
.clsStory__img {
  height: 100%;
  transform: translateX(-2rem) scale(1.2);
  transition: all 0.5s;
}
.clsStory__text {
  transform: skewX(10deg);
}
@media only screen and (max-width: 37.5em) {
  .clsStory__text {
    transform: skewX(0);
  }
}
.clsStory__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.clsStory:hover .clsStory__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.clsStory:hover .clsStory__img {
  transform: translateX(-4rem) scale(1);
  filter: blur(2px) brightness(80%);
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.25;
  overflow: hidden;
}
.bg-video__content {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.form__services {
  width: 80%;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  height: 5rem;
  padding: 1rem;
  border-radius: 2px;
  font-family: inherit;
  color: inherit;
}
@media only screen and (max-width: 56.25em) {
  .form__services {
    width: 100%;
  }
}
.form__services:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #4393b8cc;
}
.form__services * {
  color: #000;
  background-color: #f7f7f7;
  text-transform: uppercase;
}

.form__drop-down {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .form__drop-down {
    display: block;
  }
}

.form__input {
  font-size: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  font-family: inherit;
  color: inherit;
  border-bottom: 3px solid transparent;
  width: 80%;
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .form__input {
    width: 100%;
    padding: 1rem 1.5rem;
    height: 5rem;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #4393b8cc;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #999;
}

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}

.form__label {
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__radio-group {
  width: 32%;
  display: inline-block;
}
@media only screen and (max-width: 75em) {
  .form__radio-group {
    display: none;
  }
}

.form__radio-input {
  display: none;
}

.form__radio-label {
  font-size: 1.3rem;
  cursor: pointer;
  position: relative;
  padding-left: 2.5rem;
}

.form__radio-button {
  height: 2rem;
  width: 2rem;
  border: 5px solid #4393b8cc;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.3rem;
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  left: 50.5%;
  transform: translate(-50%);
  background-color: #4393b8cc;
  opacity: 0;
  transition: opacity 0.4s;
}

.form__radio-input:checked + .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.popup {
  opacity: 0;
  visibility: hidden;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  transition: all 0.8s;
  background-color: rgba(0, 0, 0, 0.3);
}
@supports (backdrop-filter: blur(10px)) {
  .popup {
    backdrop-filter: blur(10px);
  }
}
.popup__content {
  width: 75%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  display: table;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.6s 0.1s;
}
.popup__left {
  width: 33.333333%;
  display: table-cell;
}
.popup__right {
  width: 66.6666667%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
.popup__img {
  display: block;
  width: 100%;
  margin-top: 2rem;
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  column-count: 2;
  column-gap: 4rem;
  column-rule: 1px solid #eee;
  hyphens: auto;
}
.popup__close:link,
.popup__close:visited {
  color: #2189b9cc;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  line-height: 1;
}
.popup__close:hover {
  color: #4a93b4cc;
  transform: scale(1.1);
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.section-about {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -15vh;
}
@media only screen and (max-width: 56.25em) {
  .section-about {
    padding: 20rem 0;
  }
}

.section-features {
  padding: 20rem 0;
  background-image: linear-gradient(
      to bottom right,
      rgba(74, 147, 180, 0.8),
      rgba(33, 137, 185, 0.8)
    ),
    url(../img/Expertise.webp);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: -11rem;
}
.section-features > * {
  transform: skewY(7deg);
}
@media only screen and (max-width: 56.25em) {
  .section-features {
    padding: 10rem 0;
  }
}
@media (min-resolution: 192dpi) and (min-width: 37.5em), (min-width: 125em) {
  .section-features {
    background-image: linear-gradient(
        to bottom right,
        rgba(74, 147, 180, 0.8),
        rgba(33, 137, 185, 0.8)
      ),
      url(../img/Expertise-large.webp);
  }
}

.section-tours {
  margin-top: -15vh;
  background-color: #f7f7f7;
  padding: 25rem 0 15rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-tours {
    margin-top: -10vh;
    padding: 20rem 0 5rem 0;
  }
  .section-tours .btn--animated {
    display: none;
  }
}

.section-stories {
  position: relative;
  padding: 15rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-stories {
    padding: 10rem 0;
  }
}

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #4a93b4cc, #2189b9cc);
}
.section-stories .row:last-child {
  max-width: 70vw;
}

.book {
  background-image: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      transparent 42%
    ),
    url(../img/Contact_background-large.webp);
  background-size: cover;
  height: 50rem;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 56.25em) {
  .book {
    background-color: #eee;
    opacity: 0.8;
    background-image: none;
    height: 45rem;
  }
}
@media (min-resolution: 192dpi) and (min-width: 37.5em), (min-width: 125em) {
  .book {
    background-image: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.9) 42%,
        transparent 42%
      ),
      url(../img/Contact_background-large.webp);
  }
}
.book__forms {
  width: 50%;
  padding: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .book__forms {
    width: 100%;
    padding: 2rem;
  }
}

.header {
  height: 95vh;
  background-image: linear-gradient(to right bottom, #4a93b4cc, #2189b9cc),
    url(../img/idesucces_small.webp);
  background-position: top;
  clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  position: relative;
  background-size: 100% 100%;
}
@media (min-resolution: 192dpi) and (min-width: 37.5em), (min-width: 125em) {
  .header {
    background-image: linear-gradient(to right bottom, #4a93b4cc, #2189b9cc),
      url(../img/idesucces.webp);
  }
}
@media only screen and (max-width: 56.25em) {
  .header {
    clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%);
    height: 75vh;
  }
}
.header__logo-box {
  position: absolute;
  top: 4rem;
  left: 4rem;
}
.header__logo {
  height: 8rem;
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
  /*tout excepté la dernière */
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row:not(:last-child) {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^="col-"] {
  float: left;
}
.row [class^="col-"]:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^="col-"]:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^="col-"] {
    width: 100% !important;
    margin-bottom: 6rem;
  }
  .section-stories .row:last-child {
    height: 150px;
  }
  .section-stories .slides {
    height: 150px;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - (2 * 6rem)) / 3);
}
.row .col-2-of-3 {
  width: calc((2 * ((100% - (2 * 6rem)) / 3)) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - (3 * 6rem)) / 4);
}
.row .col-2-of-4 {
  width: calc((2 * ((100% - (3 * 6rem)) / 4)) + 6rem);
}
.row .col-3-of-4 {
  width: calc((3 * ((100% - (3 * 6rem)) / 4)) + (2 * 6rem));
}

.footer {
  background-color: #333;
  padding: 10rem 0;
  font-size: 1.4rem;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 2rem 0;
  }
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__logo-box {
    margin-bottom: 2rem;
  }
}
.footer__logo {
  width: 15rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #f7f7f7;
  text-align: center;
  padding-top: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__navigation {
    width: 100%;
  }
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 1rem;
}
.footer__link:link,
.footer__link:visited {
  color: #f7f7f7;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.4s;
  background-color: #333;
}
.footer__link:hover,
.footer__link:active {
  color: #4393b8cc;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: rotate(2deg) scale(1.1);
}
.footer__copyright {
  color: #f7f7f7;
  border-top: 1px solid #f7f7f7;
  text-align: center;
  padding-top: 1rem;
  width: 90%;
}
@media only screen and (max-width: 37.5em) {
  .footer__copyright {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-stories .row:last-child {
    height: 100px;
  }
  .section-stories .slides {
    height: 100px;
  }
}

.navigation {
  height: 7.5rem;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: transparent;
  z-index: 100;
  margin: 2rem;
}
.navigation__button {
  background-color: #fff;
  height: 7.3rem;
  width: 7.3rem;
  float: right;
  border-radius: 50%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  margin: 2px;
  opacity: 0.6;
}
.navigation__nav {
  height: 4rem;
  width: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 3px;
  margin-top: 1.3rem;
  margin-right: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  float: right;
}
.navigation__list {
  list-style: none;
}
.navigation__item {
  display: inline-block;
  transition: all 0.2s;
}
.navigation__item:not(:last-child) {
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid gray;
}
@media only screen and (max-width: 26em) {
  .navigation__item:not(:last-child) {
    margin-right: 0;
    padding: 0.5rem;
    border-bottom: 1px solid gray;
    border-right: none;
  }
}
@media only screen and (max-width: 26em) {
  .navigation__item {
    display: list-item;
    text-align: center;
  }
}
.navigation__link,
.navigation__link_support {
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
}
.navigation__link:hover,
.navigation__link:active,
.navigation__link_support:hover,
.navigation__link_support:active {
  color: #2189b9cc;
  text-decoration: underline;
  font-weight: 700;
}

@media only screen and (max-width: 26em) {
  .navigation__link,
  .navigation__link_support {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -1rem;
}
.navigation__icon::after {
  top: 1rem;
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 0.7;
  width: 58rem;
}
@media only screen and (max-width: 26em) {
  .navigation__checkbox:checked ~ .navigation__nav {
    width: 15rem;
    height: 26rem;
  }
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__button:hover .navigation__icon::before {
  top: -1.2rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1.2rem;
}
.navigation__checkbox {
  display: none;
}
.navigation-bottom {
  height: 7rem;
  width: 7rem;
  position: fixed;
  bottom: 2rem;
  right: 0.5rem;
  z-index: 100;
  opacity: 0.5;
  transition: all 1s;
}
.navigation-bottom__button {
  background-color: #fff;
  color: #4393b8cc;
  height: 6.8rem;
  width: 6.8rem;
  border-radius: 50%;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
  opacity: 1;
  font-size: 6rem;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}
.slider {
  width: 70vw; /* Set the width as per your requirement */
  overflow: hidden;
}

.slides {
  display: flex;
  align-items: center; /* Align items vertically */

  transition: transform 0.5s ease-in-out;
  height: 300px; /* Set a height for the container */
}

.slide {
  flex: 0 0 auto;
  width: 200px; /* Set the width of each logo */
  margin-right: 10px; /* Set margin between logos */
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}
