﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@700;800&family=Open+Sans:wght@400;700&display=swap");
.red {
  color: #DA3344;
}

.gray {
  color: #667190;
}

.rich-text-editor ul {
  margin-left: 1rem;
  list-style: disc;
}
.rich-text-editor ul li::marker {
  color: #DA3344;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video,
input,
textarea,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  line-height: 150%;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  color: #FFFFFF;
  min-height: 100vh;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
  margin: 0;
}
input:hover {
  border: none;
}
input:focus {
  outline: none;
  outline-width: 0;
}

button {
  text-align: left;
}

.title-xxl {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .title-xxl {
    font-size: 2rem;
  }
}

.title-xl {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .title-xl {
    font-size: 1.75rem;
  }
}

.title-l-sz {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
  .title-l-sz {
    font-size: 1.25rem;
  }
}

.title-lx-sz {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
  .title-lx-sz {
    font-size: 1.5rem;
  }
}

.main__master {
  min-height: 100vh;
}

.defaultDelayedAnimationState {
  opacity: 0;
}

@keyframes wipe-enter {
  0% {
    transform: scale(0, 0.025);
  }
  50% {
    transform: scale(1, 0.025);
  }
}
.wipeEnter__animation {
  animation: wipe-enter 0.7s 1;
}

@keyframes slide-lef-to-right-with-opacity {
  0% {
    transform: translateX(-170px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-lef-to-right-with-opacity__animation {
  animation: slide-lef-to-right-with-opacity 1s 1;
}

@keyframes slide-bottom-to-top-with-opacity {
  0% {
    transform: translateY(70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.slide-bottom-to-top-with-opacity__animation {
  animation: slide-bottom-to-top-with-opacity 1s 1;
}

@keyframes scaleUp-with-opacity {
  0% {
    scale: 0.7;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    scale: 1;
  }
}
.scaleUp-with-opacity__animation {
  animation: scaleUp-with-opacity 1s 1;
}

.body {
  margin-top: 5.8rem;
}
.body--block {
  overflow-y: hidden;
}
.body--avoidanceMenu {
  margin-top: 143px;
}

.avoidance-menu {
  border: 1px solid #D3D6E1;
  padding: 0.75rem 5rem;
  display: flex;
  align-items: center;
  align-self: stretch;
  position: absolute;
  width: 100%;
  top: -50rem;
  z-index: 6;
}
.avoidance-menu--active {
  position: fixed;
  background-color: #FFFFFF;
  top: 0;
}
.avoidance-menu__list {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  gap: 1.5rem;
  display: flex;
}
.avoidance-menu__link {
  color: #667190;
  text-decoration: none;
}

.nav__list {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .nav__list {
    flex-direction: row;
  }
}
.nav__item {
  display: flex;
  flex-direction: column;
  padding-left: 0.5rem;
  align-items: flex-start;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .nav__item {
    padding: 0rem 0.25rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  .nav__item:hover {
    border-radius: 0.125rem;
    border-bottom: 2px solid #DA3344;
    background: #F1F2F5;
  }
  .nav__item:hover > ul, .nav__item:focus > ul {
    background-color: #FFFFFF;
    border: 2px solid #D3D6E1;
    top: 55px;
    display: block;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    white-space: nowrap;
    left: 0;
  }
  .nav__item--active > ul {
    background-color: #FFFFFF;
    border: 2px solid #D3D6E1;
    top: 55px;
    display: block;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    white-space: nowrap;
    left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .nav__item-contact {
    display: flex;
    height: 3.75rem;
    padding: 0 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.125rem;
    border: 2px solid #DA3344;
  }
}
@media only screen and (min-width: 1024px) {
  .nav__main-content {
    display: none;
  }
}
.nav__chevron {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .nav__chevron {
    display: block;
  }
}
.nav__title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  padding: 0.75rem 0.5rem 0.75rem 0rem;
  border-radius: 0.125rem;
  color: #3E4457;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
}
@media only screen and (min-width: 1024px) {
  .nav__title {
    font-size: 1rem;
  }
}
.nav__list {
  gap: 0.25rem;
  border-left: 2px solid #F1F2F5;
  display: flex;
  align-items: center;
}
.nav__selector {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #1F2127;
  padding: 0.75rem 1rem;
}
.nav__content {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: flex-start;
  align-self: stretch;
  text-decoration: none;
}
.nav__content:hover {
  background: #F1F2F5;
}
.nav__content--contact {
  color: #FFFFFF;
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  .nav__content--contact {
    color: #DA3344;
    padding: 0rem;
  }
}
@media only screen and (min-width: 1024px) {
  .nav__content {
    display: flex;
    align-items: flex-start;
    border-radius: 0.125rem;
    justify-content: center;
    width: 100%;
  }
}

.active-list {
  background-color: #F1F2F5;
  border-left: 2px solid #DA3344;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1rem 1rem 0.25rem;
  background-color: #FFFFFF;
  position: fixed;
  align-self: stretch;
  align-items: center;
  top: 0;
  z-index: 3;
  width: 100vw;
}
.header--avoidanceMenu {
  margin-top: 3.125rem;
}
@media only screen and (min-width: 1024px) {
  .header {
    padding: 1rem 5rem 1rem 5rem;
  }
}
.header__logo-container {
  min-width: 15rem;
  flex: 1 0 0;
  display: flex;
  align-items: center;
}
.header__text-container {
  flex: 1 0 0;
  display: flex;
  padding-left: 0px;
  align-items: center;
}
.header__text-container::before {
  background-color: #D3D6E1;
  height: 3rem;
  border-radius: 1rem;
  width: 2px;
  content: "";
}
.header__slogan {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #667190;
  font-size: 0.625rem;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 380px) {
  .header__slogan {
    width: 14rem;
  }
}
@media only screen and (min-width: 1024px) {
  .header__slogan {
    width: auto;
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1110px) {
  .header__slogan {
    width: 14rem;
  }
}
.header__menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .header__menu-container {
    flex-direction: row;
  }
}
.header__button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  padding: 0.5rem;
  gap: 0.5rem;
}
.header__burger-btn {
  display: flex;
  flex-direction: column;
  height: 1.5rem;
  width: 2rem;
  cursor: pointer;
  justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  .header__burger-btn {
    display: none;
  }
}
.header__burger-icon {
  height: 0.25rem;
  background-color: #667190;
  width: 100%;
  display: block;
  transition: background-color 0.5s ease-in-out;
}
.header__burger-btn.active .header__burger-icon:nth-child(2) {
  visibility: hidden;
}
.header__burger-btn.active .header__burger-icon:first-child {
  transition: transform 0.3s ease-out;
  transform-origin: left;
  transform: rotate(40deg);
}
.header__burger-btn.active .header__burger-icon:last-child {
  transition: transform 0.3s ease-out;
  transform-origin: left;
  transform: rotate(-40deg);
}
.header__burger-icon:last-child, .header__burger-icon:first-child {
  transition: transform 0.3s ease-out;
  transition-property: initial;
}
.header__nav-container {
  top: 5rem;
  background-color: #FFFFFF;
  border-top: 2px solid #D3D6E1;
  gap: 0.5rem;
  padding: 0rem 1rem;
  right: -100vw;
  width: 100vw;
  height: calc(100vh - 80px);
  position: fixed;
  z-index: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: 0.3s ease-in-out;
}
.header__nav-container--active {
  right: 0;
}
@media only screen and (min-width: 1024px) {
  .header__nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 0 0;
    position: inherit;
    height: auto;
    width: auto;
    border: none;
    padding: inherit;
    overflow: visible;
  }
}

.link {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #667190;
  text-align: center;
  text-decoration: none;
}

.tagline {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.tagline__title {
  color: #3E4457;
}
.tagline__title:before {
  content: "/";
  color: #DA3344;
  margin-right: 0.5rem;
}
.tagline__title--copyrigth {
  display: flex;
  align-items: center;
  font-size: 2rem;
  gap: 0.2rem;
}
@media only screen and (min-width: 1024px) {
  .tagline__title--copyrigth {
    gap: 0.5rem;
    font-size: 4rem;
  }
}
.tagline__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.5rem 2rem;
}
@media only screen and (min-width: 768px) {
  .tagline__header {
    padding: 5rem 2.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .tagline__header {
    min-height: 15rem;
  }
}
.tagline__text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.tagline__subtitle {
  color: #3E4457;
  font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
  .tagline__subtitle {
    font-size: 1.25rem;
  }
}
.tagline img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  .tagline .tagline__catchPhrase {
    max-width: 70%;
  }
}
.tagline .tagline__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding: 1rem 1rem 0;
  color: #667190;
}
@media only screen and (min-width: 1024px) {
  .tagline .tagline__text {
    padding: 2.5rem 10rem 0;
    font-size: 1.25rem;
  }
}

.tagline-left {
  align-items: flex-start;
}
.tagline-left__withImage {
  height: 60vh;
  max-height: 480px;
}
.tagline-left__withImage .tagline-left__header h1 {
  color: white;
  font-size: 2.5rem;
  position: relative;
  padding-left: 25px;
}
@media only screen and (min-width: 1024px) {
  .tagline-left__withImage .tagline-left__header h1 {
    padding-left: 40px;
  }
}
.tagline-left__withImage .tagline-left__header h1::before {
  position: absolute;
  content: "/";
  color: #DA3344;
  left: 0px;
}
.tagline-left__withImage .tagline-left__header h2 {
  font-size: 1.25rem;
  color: white;
}
.tagline-left__withImage .tagline-left__header h3 {
  font-size: 1rem;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.tagline-left__withImage .tagline-left__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.35;
}
@media only screen and (min-width: 1024px) {
  .tagline-left__withImage .tagline-left__header h1 {
    font-size: 5rem;
  }
  .tagline-left__withImage .tagline-left__header h2 {
    font-size: 2.25rem;
  }
  .tagline-left__withImage .tagline-left__header h3 {
    font-size: 1.25rem;
  }
}
.tagline-left__header {
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .tagline-left__header {
    padding: 1.5rem 5rem;
  }
}
.tagline-left__title {
  text-align: start;
}
.tagline-left h3 {
  color: #3E4457;
  text-align: start;
}
.tagline-left__text-container {
  align-items: flex-start;
}

.tagline-center {
  align-items: flex-start;
}
.tagline-center__withImage {
  height: 60vh;
  max-height: 480px;
}
.tagline-center__withImage .tagline-center__header h1 {
  font-size: 3rem;
  color: white;
}
.tagline-center__withImage .tagline-center__header h2 {
  font-size: 1.25rem;
  color: white;
}
.tagline-center__withImage .tagline-center__header h3 {
  font-size: 1rem;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.tagline-center__withImage .tagline-center__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.35;
}
@media only screen and (min-width: 1024px) {
  .tagline-center__withImage .tagline-center__header h1 {
    font-size: 5rem;
  }
  .tagline-center__withImage .tagline-center__header h2 {
    font-size: 2.25rem;
  }
  .tagline-center__withImage .tagline-center__header h3 {
    font-size: 1.25rem;
  }
}
.tagline-center__header {
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .tagline-center__header {
    padding: 1.5rem 5rem;
  }
}
.tagline-center__title {
  text-align: center;
}
.tagline-center h3 {
  color: #3E4457;
  text-align: center;
}
.tagline-center__text-container {
  align-items: center;
}

/*    .tagline-center {
        align-items: center;

        &__withImage {
            .tagline-center__title {
                color: $white;
            }

            .tagline-center__subtitle {
                color: $white;
                text-align: center;
            }

            .tagline-center__header {
                padding: 0;

                &:before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 13%, rgba(0,0,0,0.7) 25%, rgba(0,0,0,0) 100%);
                }
            }
        }

        &__header {
            align-items: center;
            padding: $spacing1 $spacing2;
        }
    }*/
.certificate-footer {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #3E4457;
  font-size: 0.75rem;
}
@media only screen and (min-width: 1024px) {
  .certificate-footer {
    width: 9.375rem;
    text-align: start;
  }
}

.certificate-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .certificate-hero {
    width: 430px;
  }
}
.certificate-hero--text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #3E4457;
  font-size: 0.75rem;
  width: 255px;
}
.certificate-hero--img {
  width: 8.9375rem;
  height: 5rem;
}
@media only screen and (min-width: 1024px) {
  .certificate-hero--img {
    flex-shrink: 0;
  }
}

.button {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  background-color: #DA3344;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  list-style-type: none;
  height: 3.4rem;
  transition: 0.1s ease-in-out;
  border-radius: 4px;
}
.button:hover {
  scale: 1.05;
}
.button--hero {
  padding: 1rem 1.5rem;
  text-decoration: none;
  white-space: nowrap;
  align-self: stretch;
}
@media only screen and (min-width: 768px) {
  .button--hero {
    width: 30%;
  }
}
@media only screen and (min-width: 1024px) {
  .button--hero {
    width: 160px;
  }
}
.button--forms {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  padding: 1rem 1.5rem;
  gap: 0.625rem;
  align-self: stretch;
}
.button--details-download {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  gap: 0.625rem;
}
.button--details-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  gap: 0.625rem;
  background-color: #F1F2F5;
  color: #667190;
}
.button--contact-video {
  color: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border: 0.13rem solid;
  background-color: unset;
}
.button--contact-menu {
  margin-top: 0.5rem;
  padding: 0.75rem 0rem;
  color: #FFFFFF;
}
@media only screen and (min-width: 1024px) {
  .button--contact-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #DA3344;
    background-color: #FFFFFF;
    padding: 0rem 1rem;
    margin-top: inherit;
    margin-left: 1rem;
  }
}

.bloc-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.bloc-img .cards {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  margin: 20px;
  width: 100%;
}
.bloc-img .cards {
  background-color: white;
  color: black;
}
.bloc-img .cards.theme-noir {
  background-color: black;
  color: white;
}
.bloc-img .cards .text-container {
  flex: 1;
  max-width: 600px;
}
.bloc-img .cards .image-container {
  flex: 1;
  max-width: 400px;
  margin-left: 20px;
  margin-right: 20px;
}
.bloc-img .cards .image-container img {
  width: 100%;
  border-radius: 8px;
}
.bloc-img .cards h2, .bloc-img .cards p, .bloc-img .cards .button {
  margin-bottom: 10px;
}
.bloc-img .cards .button {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}
.bloc-img .cards .button:hover {
  background-color: #0056b3;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 0rem 1rem;
  margin-top: 0.5rem;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .hero {
    padding: 0rem 5rem;
    margin-top: unset;
  }
}
.hero__container {
  background-color: #F1F2F5;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .hero__container {
    height: 38.1875rem;
    gap: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-self: stretch;
  }
}
.hero__img {
  height: 10rem;
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 500px) {
  .hero__img {
    height: 250px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__img {
    height: 350px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__img {
    height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__img-container {
    width: 50%;
    height: 100%;
  }
}
@media only screen and (min-width: 1600px) {
  .hero__img-container {
    width: 65%;
  }
}
.hero__text-container {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .hero__text-container {
    width: 35.5rem;
    padding: 4rem 0rem 5rem 3.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .hero__title-container {
    gap: 0.5rem;
    display: flex;
    align-items: flex-start;
    align-self: stretch;
  }
}
.hero__title {
  color: #3E4457;
}
.hero__title:before {
  content: "/";
  color: #DA3344;
}
.hero__title--subtitle {
  color: #667190;
  display: flex;
}
@media only screen and (min-width: 1024px) {
  .hero__title--subtitle {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
  }
}
.hero__title--text-line {
  white-space: nowrap;
}
.hero__title--slash {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .hero__title--slash {
    display: inline;
    color: #DA3344;
  }
}
.hero__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #3E4457;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}

.training {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1rem 1rem;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .training {
    padding: 2.5rem 5rem 2.5rem 5rem;
  }
}
.training__title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21.5rem;
  gap: 0.25rem;
}
.training__title {
  color: #3E4457;
  white-space: nowrap;
}
.training__title:before {
  content: "/";
  color: #DA3344;
}
.training__card-global-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  align-self: stretch;
}
@media only screen and (min-width: 768px) {
  .training__card-global-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 1024px) {
  .training__card-global-container {
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
  }
}
.training__img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 1rem;
}
.training__img {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.training__cards {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  min-width: 15rem;
  padding: 1.25rem;
  border-radius: 0.25rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 16px 0px rgba(33, 37, 41, 0.16);
  gap: 1rem;
  position: relative;
  transition: 0.3s ease-in-out;
}
.training__cards:hover {
  scale: 1.1;
}
@media only screen and (min-width: 768px) {
  .training__cards {
    width: 243px;
    min-height: 420px;
    padding-bottom: 3rem;
  }
}
.training__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  height: 100%;
}
.training__container--title {
  color: #3E4457;
}
@media only screen and (min-width: 768px) {
  .training__container {
    gap: 1.5rem;
  }
}
.training__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  height: 100%;
}
.training__text-header {
  color: #3E4457;
}
@media only screen and (min-width: 768px) {
  .training__text-header {
    height: 4.25rem;
  }
}
.training__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #1F2127;
}
@media only screen and (min-width: 1024px) {
  .training__text {
    margin-top: 1rem;
  }
}
.training__main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.training__link-container {
  display: flex;
}
.training__link-name {
  text-align: start;
}
.training__link-arrow {
  transform: translate(4px, 3.5px);
}
.training__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.training__link:hover {
  box-shadow: unset;
  border: 1px solid #D3D6E1;
  border-radius: 0.25rem;
}

.trainingDetails {
  display: flex;
  align-items: flex-start;
  background-color: #F1F2F5;
  padding: 1rem;
  gap: 1.5rem;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .trainingDetails {
    padding: 5rem;
  }
}
.trainingDetails__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.trainingDetails__card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  max-width: 66.4375rem;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.trainingDetails__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
.trainingDetails__header-title {
  gap: 0.5rem;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .trainingDetails__header-title {
    align-items: center;
  }
}
.trainingDetails__logo-title {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  gap: 0.5rem;
  border-radius: 0.125rem;
  background-color: #DA3344;
  color: #FFFFFF;
  margin-top: 4px;
  flex-direction: column;
}
.trainingDetails__title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #3E4457;
  flex: 1 0 0;
}
.trainingDetails__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #667190;
}
.trainingDetails__text ul li::before {
  content: "/";
  margin-inline: 1.375rem 0.375rem;
  color: #D3D6E1;
}
.trainingDetails__button-container {
  gap: 0.5rem;
  display: flex;
  align-self: stretch;
  flex-wrap: wrap;
}

.elearning {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 2.5rem;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .elearning {
    padding: 2.5rem 5rem 2.5rem 2.5rem;
    justify-content: center;
  }
}
.elearning__title {
  color: #3E4457;
  text-align: center;
  display: flex;
}
.elearning__title:before {
  content: "/";
  color: #DA3344;
}
.elearning__card-global-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .elearning__card-global-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}
.elearning__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  align-self: stretch;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 1024px) {
  .elearning__card {
    flex: 1 0 0;
    text-align: center;
  }
}
.elearning__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.elearning__text-header-title {
  color: #3E4457;
  white-space: nowrap;
}
@media only screen and (min-width: 1024px) {
  .elearning__text-header-title {
    font-size: 1rem;
  }
}
.elearning__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #3E4457;
  text-align: center;
}
.elearning__wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .elearning__wrapper {
    flex-direction: row;
  }
}
.elearning__wrapper:not(:last-of-type):after {
  flex-direction: column;
  height: 1px;
  width: 100%;
  content: "";
  background-color: #D3D6E1;
}
@media only screen and (min-width: 1024px) {
  .elearning__wrapper:not(:last-of-type):after {
    height: 7rem;
    width: 1px;
    content: "";
    margin-left: 1.5rem;
  }
}

.card {
  display: flex;
  align-items: flex-end;
  padding: 1rem 1rem 0rem 1rem;
  border-radius: 1rem;
  gap: 2rem;
  align-items: center;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .card {
    padding: 5rem 5rem 0rem 5rem;
  }
}
.card__container {
  display: flex;
  flex-direction: column;
  background: linear-gradient(0deg, rgba(31, 33, 39, 0.8) 0%, rgba(31, 33, 39, 0.8) 100%), url("/assets/img/logo/background-img.png"), lightgray 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  gap: 2rem;
  padding: 2.5rem 1rem;
  border-radius: 1rem;
  flex: 1 0 0;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .card__container {
    background: linear-gradient(258deg, rgba(31, 33, 39, 0.8) 45.46%, rgba(31, 33, 39, 0) 99.22%), url("/assets/img/logo/background-img.png") lightgray 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    flex-direction: row;
    justify-content: flex-end;
  }
}
.card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .card__content {
    justify-content: center;
    flex: 0 0 50%;
  }
}
.card__title-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  align-self: stretch;
}
.card__title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
  align-self: stretch;
}
.card__title span {
  color: #DA3344;
}
.card__paragraph {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #D3D6E1;
}
@media only screen and (min-width: 1024px) {
  .card__paragraph {
    font-size: 1.125rem;
  }
}
.card__icon-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.card__icon-container span {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #DA3344;
}
.card__icon {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: #FFFFFF;
  gap: 0.5rem;
  display: flex;
}
.card__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
}
@media only screen and (min-width: 1024px) {
  .card__text {
    font-size: 1.125rem;
  }
}
.card__button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 0.125rem;
  background: #DA3344;
  gap: 0.5rem;
  cursor: pointer;
}

.form-container {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 0rem 1rem;
  align-items: center;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .form-container {
    padding: 5rem;
  }
}

.form {
  border-radius: 0.5rem;
  background: #F1F2F5;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .form {
    padding: 5rem;
  }
}
.form__content {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  gap: 1rem;
  flex: 1 0 0;
}
@media only screen and (min-width: 768px) {
  .form__content {
    align-items: normal;
  }
}
@media only screen and (min-width: 1024px) {
  .form__content {
    gap: 1.5rem;
  }
}
.form__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  align-self: stretch;
}
.form__title {
  color: #3E4457;
  gap: 0.25rem;
  display: flex;
}
.form__first-name {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-content: flex-start;
  align-self: stretch;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .form__first-name {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}
.form__number-mail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-content: flex-start;
  align-self: stretch;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .form__number-mail {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}
.form__paragraphe {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #3E4457;
}
.form__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1 0 0;
}
.form__field--submit {
  position: relative;
}
.form__input {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  border: 1px solid #D3D6E1;
  border-radius: 0.125rem;
  padding: 0.75rem;
  gap: 0.5rem;
  color: #667190;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.form__input:hover {
  border: 1px solid #667190;
}
.form__input--checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.125rem;
  background: #FFFFFF;
  gap: 0.5rem;
  padding: 0.25rem 0rem;
  display: flex;
  align-items: flex-start;
  align-self: self-start;
  margin-top: 5px;
  position: absolute;
}
.form__input--error {
  border-color: #DA3344;
}
.form__textarea {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  height: 9rem;
  border: 1px solid #D3D6E1;
  border-radius: 0.125rem;
  padding: 0.75rem;
  gap: 0.5rem;
  color: #667190;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  align-self: stretch;
  resize: none;
}
.form__textarea--error {
  border-color: #DA3344;
}
.form__label {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #3E4457;
}
.form__label--agreed {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin-left: 2rem;
  width: 90%;
}
.form__toast {
  padding: 1rem;
  width: 19rem;
  background-color: #3E4457;
  border-radius: 0.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  display: flex;
  position: fixed;
  right: -24rem;
  bottom: 1rem;
  z-index: 5;
  transition: 1s;
}
@media only screen and (min-width: 1024px) {
  .form__toast {
    bottom: 5rem;
  }
}
.form__toast::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22.5C14.7848 22.5 17.4555 21.3938 19.4246 19.4246C21.3938 17.4555 22.5 14.7848 22.5 12C22.5 9.21523 21.3938 6.54451 19.4246 4.57538C17.4555 2.60625 14.7848 1.5 12 1.5C9.21523 1.5 6.54451 2.60625 4.57538 4.57538C2.60625 6.54451 1.5 9.21523 1.5 12C1.5 14.7848 2.60625 17.4555 4.57538 19.4246C6.54451 21.3938 9.21523 22.5 12 22.5ZM16.6348 10.0723L11.3848 15.3223L10.6875 16.0195L9.99023 15.3223L7.36523 12.6973L6.66797 12L8.0625 10.6096L8.75977 11.3068L10.6875 13.2346L15.2402 8.67773L15.9375 7.98047L17.3279 9.375L16.6307 10.0723H16.6348Z' fill='%2372C68F'/%3E%3C/svg%3E%0A");
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.25rem;
}
.form__toast--open {
  right: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .form__toast--open {
    right: 5rem;
  }
}
.form__error {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #3E4457;
  display: flex;
  margin-top: 0.5rem;
}
.form__error::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 15C9.85652 15 11.637 14.2625 12.9497 12.9497C14.2625 11.637 15 9.85652 15 8C15 6.14348 14.2625 4.36301 12.9497 3.05025C11.637 1.7375 9.85652 1 8 1C6.14348 1 4.36301 1.7375 3.05025 3.05025C1.7375 4.36301 1 6.14348 1 8C1 9.85652 1.7375 11.637 3.05025 12.9497C4.36301 14.2625 6.14348 15 8 15ZM8.65625 4.5V5.15625V8.21875V8.875H7.34375V8.21875V5.15625V4.5H8.65625ZM7.34375 11.0625V9.75H8.65625V11.0625H7.34375Z' fill='%23DA3344'/%3E%3C/svg%3E%0A");
  height: 1rem;
  width: 1rem;
  display: block;
  margin-right: 0.5rem;
}

.form__input--error {
  border: 1px solid #DA3344;
}

.footer {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem 1rem 2.5rem 1rem;
  gap: 2.5rem;
  align-self: stretch;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .footer {
    align-self: stretch;
    align-items: center;
  }
}
@media only screen and (min-width: 1024px) {
  .footer {
    padding: 2.5rem 5rem 2.5rem 5rem;
    justify-content: space-between;
    flex-direction: row;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .footer__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .footer__img {
    width: 9rem;
    height: 5rem;
  }
}
.footer__wrapper-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .footer__wrapper-container {
    max-width: fit-content;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }
}
.footer__phone-number {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #1F2127;
  cursor: pointer;
}
.footer__link {
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #667190;
  gap: 0.5rem;
  cursor: pointer;
}
.footer__circle {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #DA3344;
}
.footer__icon {
  display: none;
}
@media only screen and (min-width: 1600px) {
  .footer__icon {
    display: block;
  }
}

.bloc-image-100 {
  max-height: 10rem;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media only screen and (min-width: 1024px) {
  .bloc-image-100 {
    max-height: 15rem;
  }
}

.blocsheadertraining {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .blocsheadertraining {
    gap: 2.5rem;
    padding: 0rem 5rem 0rem 0rem;
    flex-direction: row;
  }
}
.blocsheadertraining__img {
  object-fit: cover;
  width: 100%;
  height: 11rem;
}
@media only screen and (min-width: 1024px) {
  .blocsheadertraining__img {
    position: absolute;
    height: 100%;
    width: 33%;
  }
}
.blocsheadertraining__content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem 1rem 1rem;
  gap: 1rem;
  align-items: flex-start;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .blocsheadertraining__content {
    padding: 2.5rem 5rem 2.5rem 2.5rem;
    gap: 1.5rem;
    width: 66%;
    margin-left: 36%;
  }
}
.blocsheadertraining__header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: column;
  align-self: stretch;
  flex: 0 0 1;
}
.blocsheadertraining__title {
  color: #3E4457;
}
.blocsheadertraining__title:before {
  content: "/";
  color: #DA3344;
}
.blocsheadertraining__subtitles {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #3E4457;
}
.blocsheadertraining__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #3E4457;
}
.blocsheadertraining__button-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  align-content: flex-start;
  align-self: stretch;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .blocsheadertraining__button-container {
    padding: 1rem 0rem;
  }
}

.bloc-situation {
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  position: relative;
}
.bloc-situation:hover .bloc-situation__image-ctn img {
  scale: 1.05;
}
@media only screen and (min-width: 1024px) {
  .bloc-situation {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.bloc-situation--reverse {
  flex-direction: row-reverse;
}
.bloc-situation__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.bloc-situation__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1024px) {
  .bloc-situation__text {
    font-size: 1rem;
  }
}
.bloc-situation__content {
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bloc-situation__content::after {
  content: "";
  background-color: #000000;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  .bloc-situation__content::after {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .bloc-situation__content {
    padding: 5rem;
    width: 50%;
    justify-content: center;
    gap: 1.5rem;
    background-color: #1F2127;
  }
}
.bloc-situation__content--light {
  position: relative;
  color: black;
}
.bloc-situation__content--light::after {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  .bloc-situation__content--light::after {
    opacity: 1;
  }
}
.bloc-situation__title {
  display: flex;
}
.bloc-situation__title:before {
  content: "/";
  color: #DA3344;
}
.bloc-situation__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: -1;
  transition: 0.2s ease-in-out;
}
.bloc-situation__image-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .bloc-situation__image-wrap {
    width: 50%;
    right: 0;
  }
}
.bloc-situation__image-wrap--reverse {
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .bloc-situation__image-ctn {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgb(31, 33, 39) 0%, rgba(31, 33, 39, 0.75) 19%, rgba(31, 33, 39, 0) 60%);
  }
  .bloc-situation__image-ctn--dark-reverse {
    background: linear-gradient(90deg, rgba(31, 33, 39, 0.1) 75%, rgb(31, 33, 39) 100%);
  }
  .bloc-situation__image-ctn--light {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 37%);
  }
  .bloc-situation__image-ctn--light-reverse {
    background: linear-gradient(90deg, rgba(31, 33, 39, 0) 75%, rgb(255, 255, 255) 100%);
  }
}
.bloc-situation__button {
  width: max-content;
}

.blocListeFormations {
  gap: 1.5rem;
  padding: 1rem;
  display: grid;
}
@media only screen and (min-width: 1024px) {
  .blocListeFormations {
    padding: 2.5rem 5rem 2.5rem 5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.blocListeFormations__item {
  position: relative;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.blocListeFormations__item:hover {
  scale: 1.05;
}
.blocListeFormations__link {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.blocListeFormations__link:hover ~ article {
  box-shadow: unset;
  border: 1px solid #D3D6E1;
}
.blocListeFormations__card {
  color: #667190;
  padding: 1.25rem;
  box-shadow: 0px 0px 16px 0px rgba(33, 37, 41, 0.16);
  border-radius: 0.25rem;
  position: relative;
  border: 1px solid transparent;
  height: 100%;
}
.blocListeFormations__card-tag {
  display: flex;
  align-items: center;
  align-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  background-color: #DA3344;
  width: max-content;
  color: #FFFFFF;
  position: absolute;
  left: 1.75rem;
  top: 1.75rem;
  border-radius: 0.5rem;
}
.blocListeFormations__card-tag::before {
  content: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.1339 8.91092L15.6666 8.37825L15.1339 7.84557L10.3211 3.03268L9.78838 2.5L8.72616 3.56222L9.25884 4.0949L12.787 7.62623H2.41864H1.66663V9.13026H2.41864H12.7839L9.2557 12.6585L8.72303 13.1911L9.78525 14.2534L10.3179 13.7207L15.1339 8.91092Z' fill='white'/%3E%3C/svg%3E");
  margin-right: 0.25rem;
  height: 1rem;
  width: 1rem;
}
.blocListeFormations__card-img {
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  width: 100%;
  max-height: 11.25rem;
  min-height: 7rem;
  object-fit: cover;
  object-position: top;
}
.blocListeFormations__card-title {
  color: #3E4457;
}
.blocListeFormations__card-type {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
}
.blocListeFormations__card-content {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 6rem;
}

.blocRequestDocumentation, .blocRequestDemo {
  padding: 1.5rem;
  background-color: #FFFFFF;
  height: 100%;
  width: 90%;
  position: fixed;
  right: -90%;
  top: 0;
  z-index: 4;
  transition: 0.3s ease-in;
  overflow-y: auto;
}
@media only screen and (min-width: 1024px) {
  .blocRequestDocumentation, .blocRequestDemo {
    width: 35rem;
    height: -35rem;
  }
}
.blocRequestDocumentation__layout, .blocRequestDemo__layout {
  width: 100vw;
  height: 100vh;
  background-color: #3E4457;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 3;
  display: none;
}
.blocRequestDocumentation *, .blocRequestDemo * {
  color: #3E4457;
}
.blocRequestDocumentation__header, .blocRequestDemo__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blocRequestDocumentation__title, .blocRequestDemo__title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.blocRequestDocumentation__close-btn, .blocRequestDemo__close-btn {
  padding: 0.8rem 0.5rem 0.5rem 0.5rem;
  cursor: pointer;
}
.blocRequestDocumentation__close-btn::before, .blocRequestDemo__close-btn::before {
  padding-top: 0.25rem;
  content: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.9 8.3L27 7.2L24.8 5.00647L23.7 6.10647L16 13.8065L8.3 6.1L7.2 5L5.00647 7.2L6.10647 8.3L13.8065 16L6.1 23.7L5 24.8L7.2 26.9935L8.3 25.8935L16 18.1935L23.7 25.9L24.8 27L26.9935 24.8L25.8935 23.7L18.1935 16L25.9 8.3Z' fill='%23667190'/%3E%3C/svg%3E%0A");
}
.blocRequestDocumentation__info, .blocRequestDemo__info {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #667190;
  padding-bottom: 1.5rem;
}
.blocRequestDocumentation__info::before, .blocRequestDemo__info::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #D3D6E1;
  margin-bottom: 1.5rem;
}
.blocRequestDocumentation__info-item:first-child, .blocRequestDemo__info-item:first-child {
  margin-bottom: 0.5rem;
}
.blocRequestDocumentation__info-item--bold, .blocRequestDemo__info-item--bold {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.blocRequestDocumentation__form, .blocRequestDemo__form {
  display: flex;
  flex-direction: column;
}
.blocRequestDocumentation__form-label, .blocRequestDemo__form-label {
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 1024px) {
  .blocRequestDocumentation__form-label, .blocRequestDemo__form-label {
    font-size: 1rem;
  }
}
.blocRequestDocumentation__form-input-wrap, .blocRequestDemo__form-input-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.blocRequestDocumentation__form-input-text, .blocRequestDemo__form-input-text {
  border: 1px solid #D3D6E1;
  padding: 0.75rem;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1024px) {
  .blocRequestDocumentation__form-input-text, .blocRequestDemo__form-input-text {
    font-size: 1rem;
  }
}
.blocRequestDocumentation__form-input-text:hover, .blocRequestDocumentation__form-input-text:focus, .blocRequestDocumentation__form-input-text:active, .blocRequestDemo__form-input-text:hover, .blocRequestDemo__form-input-text:focus, .blocRequestDemo__form-input-text:active {
  border: 1px solid #3E4457;
}
.blocRequestDocumentation__form-input-text--not-valid, .blocRequestDemo__form-input-text--not-valid {
  border: 1px solid red;
}
.blocRequestDocumentation__form-agreement, .blocRequestDemo__form-agreement {
  margin-bottom: 1.5rem;
}
.blocRequestDocumentation__form-agreement-checkbox, .blocRequestDemo__form-agreement-checkbox {
  height: 1.25rem;
  width: 1.25rem;
  appearance: none;
  outline: 1px solid #D3D6E1;
  outline-offset: -1px;
  float: left;
  margin-top: 3px;
}
.blocRequestDocumentation__form-agreement-checkbox:checked, .blocRequestDocumentation__form-agreement-checkbox:focus, .blocRequestDemo__form-agreement-checkbox:checked, .blocRequestDemo__form-agreement-checkbox:focus {
  outline: 1px solid #D3D6E1;
  appearance: auto;
}
.blocRequestDocumentation__form-agreement-label, .blocRequestDemo__form-agreement-label {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  display: block;
  margin-left: 1.75rem;
}
.blocRequestDocumentation__form-btn, .blocRequestDemo__form-btn {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  padding: 1rem 1.5rem;
  color: #FFFFFF;
  border-radius: 0.125rem;
}
@media only screen and (min-width: 1024px) {
  .blocRequestDocumentation__form-btn, .blocRequestDemo__form-btn {
    padding: 1rem 0rem;
  }
}
.blocRequestDocumentation__form-btn:hover, .blocRequestDemo__form-btn:hover {
  filter: brightness(80%);
}
.blocRequestDocumentation__error, .blocRequestDemo__error {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  display: flex;
  margin-top: 0.5rem;
}
.blocRequestDocumentation__error::before, .blocRequestDemo__error::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 15C9.85652 15 11.637 14.2625 12.9497 12.9497C14.2625 11.637 15 9.85652 15 8C15 6.14348 14.2625 4.36301 12.9497 3.05025C11.637 1.7375 9.85652 1 8 1C6.14348 1 4.36301 1.7375 3.05025 3.05025C1.7375 4.36301 1 6.14348 1 8C1 9.85652 1.7375 11.637 3.05025 12.9497C4.36301 14.2625 6.14348 15 8 15ZM8.65625 4.5V5.15625V8.21875V8.875H7.34375V8.21875V5.15625V4.5H8.65625ZM7.34375 11.0625V9.75H8.65625V11.0625H7.34375Z' fill='%23DA3344'/%3E%3C/svg%3E%0A");
  height: 1rem;
  width: 1rem;
  display: block;
  margin-right: 0.5rem;
}
.blocRequestDocumentation__toast, .blocRequestDemo__toast {
  padding: 1rem;
  width: 19rem;
  background-color: #3E4457;
  border-radius: 0.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  display: flex;
  position: fixed;
  right: -24rem;
  bottom: 1rem;
  z-index: 5;
  transition: 1s;
}
@media only screen and (min-width: 1024px) {
  .blocRequestDocumentation__toast, .blocRequestDemo__toast {
    bottom: 5rem;
  }
}
.blocRequestDocumentation__toast--open, .blocRequestDemo__toast--open {
  right: 1.25rem;
}
@media only screen and (min-width: 1024px) {
  .blocRequestDocumentation__toast--open, .blocRequestDemo__toast--open {
    right: 5rem;
  }
}
.blocRequestDocumentation__toast--valid::before, .blocRequestDemo__toast--valid::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22.5C14.7848 22.5 17.4555 21.3938 19.4246 19.4246C21.3938 17.4555 22.5 14.7848 22.5 12C22.5 9.21523 21.3938 6.54451 19.4246 4.57538C17.4555 2.60625 14.7848 1.5 12 1.5C9.21523 1.5 6.54451 2.60625 4.57538 4.57538C2.60625 6.54451 1.5 9.21523 1.5 12C1.5 14.7848 2.60625 17.4555 4.57538 19.4246C6.54451 21.3938 9.21523 22.5 12 22.5ZM16.6348 10.0723L11.3848 15.3223L10.6875 16.0195L9.99023 15.3223L7.36523 12.6973L6.66797 12L8.0625 10.6096L8.75977 11.3068L10.6875 13.2346L15.2402 8.67773L15.9375 7.98047L17.3279 9.375L16.6307 10.0723H16.6348Z' fill='%2372C68F'/%3E%3C/svg%3E%0A");
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.25rem;
}
.blocRequestDocumentation__toast--error::before, .blocRequestDemo__toast--error::before {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 15C9.85652 15 11.637 14.2625 12.9497 12.9497C14.2625 11.637 15 9.85652 15 8C15 6.14348 14.2625 4.36301 12.9497 3.05025C11.637 1.7375 9.85652 1 8 1C6.14348 1 4.36301 1.7375 3.05025 3.05025C1.7375 4.36301 1 6.14348 1 8C1 9.85652 1.7375 11.637 3.05025 12.9497C4.36301 14.2625 6.14348 15 8 15ZM8.65625 4.5V5.15625V8.21875V8.875H7.34375V8.21875V5.15625V4.5H8.65625ZM7.34375 11.0625V9.75H8.65625V11.0625H7.34375Z' fill='%23DA3344'/%3E%3C/svg%3E%0A");
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.25rem;
}

.blocRequestDocumentation--open {
  right: 0;
}
.blocRequestDocumentation--open ~ .blocRequestDocumentation__layout {
  display: unset;
}

.blocRequestDemo--open {
  right: 0;
}
.blocRequestDemo--open ~ .blocRequestDemo__layout {
  display: unset;
}

.blocTexte__twoColumns {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
}
@media only screen and (min-width: 1024px) {
  .blocTexte__twoColumns {
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    padding: 5rem;
  }
  .blocTexte__twoColumns--gris {
    background: #F1F2F5;
  }
  .blocTexte__twoColumns .blocTexte__container {
    max-width: 650px;
    padding: 0;
    flex: 1;
  }
}
.blocTexte__fourColumns {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
}
@media only screen and (min-width: 1024px) {
  .blocTexte__fourColumns {
    gap: 1.5rem;
    padding: 5rem;
  }
  .blocTexte__fourColumns--gris {
    background: #F1F2F5;
  }
}
.blocTexte__fourColumns .blocTexte__columnsContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  .blocTexte__fourColumns .blocTexte__columnsContainer {
    justify-content: space-evenly;
  }
}
.blocTexte__fourColumns .blocTexte__container {
  width: 144px;
}
@media only screen and (min-width: 768px) {
  .blocTexte__fourColumns .blocTexte__container {
    padding: 0;
    width: unset;
  }
}
.blocTexte__container {
  display: flex;
  flex-direction: column;
  margin: 1rem 1rem;
  gap: 1rem;
  align-items: flex-start;
  align-self: stretch;
  justify-content: flex-start;
}
.blocTexte__container--centre {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blocTexte__container--gauche {
  display: flex;
  align-items: flex-start;
}
.blocTexte__container--droite {
  display: flex;
  align-items: flex-end;
}
.blocTexte__container--gris {
  background: #F1F2F5;
  margin: 1.5rem 1rem 1rem 1rem;
  border-radius: 8px;
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .blocTexte__container {
    padding: 2.5rem 5rem;
    gap: 1.5rem;
  }
  .blocTexte__container--gris {
    margin: 5rem;
    padding: 2.5rem 5rem;
  }
}
.blocTexte__title {
  color: #3E4457;
}
.blocTexte__title:before {
  content: "/";
  color: #DA3344;
  margin-right: 0.25rem;
}
.blocTexte__content {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #667190;
}
.blocTexte__content--droite {
  text-align: right;
}
.blocTexte__content--centre {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .blocTexte__content {
    max-width: 60rem;
  }
}

.blocVideo {
  display: flex;
  flex-direction: column;
  background-color: #1F2127;
}
@media only screen and (min-width: 1024px) {
  .blocVideo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 2.5rem 0;
  }
}
.blocVideo__content {
  padding: 3rem 1rem 2rem 1rem;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .blocVideo__content {
    width: 50%;
    padding: 5rem;
  }
}
.blocVideo__title {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  position: relative;
  padding-left: 15px;
}
@media only screen and (min-width: 1024px) {
  .blocVideo__title {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1024px) {
  .blocVideo__title {
    padding-left: 20px;
  }
}
.blocVideo__title::before {
  position: absolute;
  content: "/";
  color: #DA3344;
  left: 0px;
}
.blocVideo__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 1.5rem 0;
}
.blocVideo__actions {
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #FFFFFF;
}
.blocVideo__media {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .blocVideo__media {
    position: absolute;
    padding: 2rem 0;
    width: 50%;
    right: 0;
    height: 100%;
  }
}
.blocVideo__media-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
@media only screen and (min-width: 1024px) {
  .blocVideo__media-iframe {
    position: unset;
  }
}
.blocVideo__media-wrap {
  padding: 56.25% 0 0 0;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .blocVideo__media-wrap {
    padding: 2.5rem 5rem;
    padding-left: 0px;
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .blocVideo--reverse {
    flex-direction: row-reverse;
  }
  .blocVideo--reverse .blocVideo__media-wrap {
    padding-left: 5rem;
    padding-right: 0px;
  }
}

.breadCrumb {
  display: flex;
  padding: 0.5rem 1rem;
}
@media only screen and (min-width: 1024px) {
  .breadCrumb {
    margin-left: 5rem;
    justify-content: flex-start;
  }
}
.breadCrumb__item {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 0.875rem;
}
.breadCrumb__item-link {
  color: #667190;
}
.breadCrumb__item:not(:last-of-type) a {
  text-decoration-color: #F1F2F5;
}
.breadCrumb__item:not(:last-of-type) a:hover {
  color: #1F2127;
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  .breadCrumb__item:not(:last-of-type)::after {
    content: "/";
    color: #D3D6E1;
    margin: 0 0.5rem;
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .breadCrumb__item:last-of-type a {
    pointer-events: none;
    text-decoration: none;
  }
}
.breadCrumb__item:not(:nth-last-child(-n+2)), .breadCrumb__item:last-child {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .breadCrumb__item:not(:nth-last-child(-n+2)), .breadCrumb__item:last-child {
    display: block;
  }
}
.breadCrumb__item:nth-last-child(-n+2) {
  position: relative;
  margin-left: 1rem;
}
@media only screen and (min-width: 1024px) {
  .breadCrumb__item:nth-last-child(-n+2) {
    margin-left: unset;
  }
}
.breadCrumb__item:nth-last-child(-n+2)::before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.20547 6.5001L2.60391 6.89853L7.10156 11.3985L7.5 11.797L8.29453 11.0001L7.89609 10.6017L3.79453 6.5001L7.89844 2.39854L8.29687 2.0001L7.5 1.20557L7.10156 1.604L2.60156 6.10166L2.20312 6.5001L2.20547 6.5001Z' fill='%23667190'/%3E%3C/svg%3E%0A");
  display: inline-block;
  color: #667190;
  left: -1rem;
  top: 0.125rem;
}
@media only screen and (min-width: 1024px) {
  .breadCrumb__item:nth-last-child(-n+2)::before {
    display: none;
  }
}
.breadCrumb__item:last-child::before {
  display: none;
}

.blocCards__container {
  display: flex;
  flex-direction: column;
  background-color: #F1F2F5;
  padding: 1.5rem 1rem 1rem 1rem;
  gap: 1rem;
  background-color: #F1F2F5;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
@media only screen and (min-width: 768px) {
  .blocCards__container {
    padding: 2.5rem 5rem;
  }
}
.blocCards__title {
  color: #3E4457;
}
.blocCards__subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #3E4457;
  font-size: 0.875rem;
}
@media only screen and (min-width: 1024px) {
  .blocCards__subtitle {
    max-width: 60rem;
    font-size: 1rem;
  }
}
.blocCards__global-container {
  gap: 1rem;
  display: grid;
}
@media only screen and (min-width: 768px) {
  .blocCards__global-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .blocCards__global-container {
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.blocCards__card {
  display: flex;
  flex-direction: column;
  min-width: 15rem;
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  gap: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #D3D6E1;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
  transition: 0.3s ease-in-out;
  background: #FFFFFF;
}
.blocCards__card:hover {
  scale: 1.05;
}
.blocCards__main-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
}
.blocCards__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blocCards__card-title {
  color: #3E4457;
}
.blocCards__card-subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #667190;
  font-size: 0.875rem;
  align-self: stretch;
}
@media only screen and (min-width: 1024px) {
  .blocCards__card-subtitle {
    font-size: 1rem;
    height: 100%;
  }
}
.blocCards__link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.blocCards__link:hover {
  box-shadow: unset;
  border: 1px solid #D3D6E1;
  border-radius: 0.25rem;
}
.blocCards__card-link {
  display: flex;
  align-items: center;
}
.blocCards__arrow {
  transform: translate(5px, 1.5px);
}

.blocTemoignage {
  background-color: #F1F2F5;
  padding: 1rem 1rem;
}
@media only screen and (min-width: 1024px) {
  .blocTemoignage {
    padding: 5rem;
    padding-bottom: 1.5rem;
  }
}
.blocTemoignage__img-ctn {
  width: 7.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center;
}
.blocTemoignage__img-ctn img {
  transform: translateX(-19px);
}
@media only screen and (min-width: 1024px) {
  .blocTemoignage__img-ctn img {
    transform: none;
  }
}
@media only screen and (min-width: 1024px) {
  .blocTemoignage__img-ctn {
    margin-bottom: unset;
    overflow: unset;
  }
}
.blocTemoignage__item {
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  gap: 20px;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .blocTemoignage__item {
    display: flex;
  }
}
.blocTemoignage__title {
  color: #3E4457;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
}
.blocTemoignage__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #667190;
}
.blocTemoignage__actions {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  gap: 0.5rem;
}
.blocTemoignage__details-btn {
  color: #FFFFFF;
}
.blocTemoignage__contact-btn {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: #667190;
  border: 2px solid #667190;
}

.blocReference {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blocReference ul {
  padding: 0 1rem;
  gap: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .blocReference ul {
    padding: 0 5rem;
    gap: 1.5rem;
    margin-top: 5rem;
    max-width: 1432px;
  }
}
.blocReference__item {
  padding: 1rem;
  min-height: 8.75rem;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .blocReference__item {
    padding: 1.25rem;
  }
}
.blocReference__item--hidden {
  display: none;
}
.blocReference__img {
  max-height: 7.5rem;
}
.blocReference__title {
  margin: 0.5rem 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #3E4457;
}
@media only screen and (min-width: 1024px) {
  .blocReference__title {
    font-size: 1.25rem;
  }
}
.blocReference__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #667190;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 768px) {
  .blocReference__text {
    font-size: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}

.filters__container {
  background: #F1F2F5;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.filters__container .filter__button {
  border: 2px #667190 solid;
  color: #667190;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  padding: 6px 12px;
}
@media only screen and (min-width: 1024px) {
  .filters__container .filter__button {
    padding: 16px 24px;
  }
}
.filters__container .filter__button--selected {
  border-color: #1F2127;
  color: #1F2127;
}

.blocLink {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  padding: 2rem 5rem;
  align-items: center;
}
.blocLink--gris {
  background: #F1F2F5;
}
.blocLink--gauche {
  align-items: flex-start;
}
.blocLink--droite {
  align-items: flex-end;
}
.blocLink__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
}

.blocTexteImage {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  gap: 1rem;
  background-color: #FFFFFF;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .blocTexteImage {
    padding: 0rem 0rem 2.5rem 0rem;
  }
}
@media only screen and (min-width: 1024px) {
  .blocTexteImage {
    padding: 0rem 0rem 2.5rem 0rem;
  }
}
.blocTexteImage__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem 1rem 1rem;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
}
.blocTexteImage__container--right {
  align-items: flex-start;
}
.blocTexteImage__title {
  color: #3E4457;
}
.blocTexteImage__title::before {
  content: "/";
  color: #DA3344;
  margin-right: 0.25rem;
}
@media only screen and (min-width: 1024px) {
  .blocTexteImage__title {
    width: 50%;
    padding-left: 4rem;
  }
  .blocTexteImage__title--right {
    width: 50%;
    padding-left: 4rem;
  }
}
.blocTexteImage__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .blocTexteImage__content {
    flex-direction: row-reverse;
  }
  .blocTexteImage__content--right {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .blocTexteImage__content {
    flex-direction: row-reverse;
    gap: inherit;
    position: relative;
  }
  .blocTexteImage__content--right {
    flex-direction: row;
  }
  .blocTexteImage__content--right .blocTexteImage__img-container {
    right: 0;
    left: auto;
  }
}
.blocTexteImage__text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #3E4457;
}
@media only screen and (min-width: 768px) {
  .blocTexteImage__text {
    width: 66%;
  }
}
@media only screen and (min-width: 1024px) {
  .blocTexteImage__text {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    padding: 4rem;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
  }
}
.blocTexteImage__img-container img {
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .blocTexteImage__img-container {
    width: 33%;
  }
}
@media only screen and (min-width: 1024px) {
  .blocTexteImage__img-container {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
  }
}
.blocTexteImage__img {
  justify-content: center;
  display: flex;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.blocTexteImageOut {
  display: flex;
  flex-direction: column;
}
.blocTexteImageOut__container {
  width: auto;
  background: #F1F2F5;
  padding: 1.5rem;
  margin: 2.5rem 1.5rem;
  border-radius: 8px;
}
.blocTexteImageOut__container .blocTexte__title {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
  .blocTexteImageOut__container {
    padding: 0rem 0rem 0rem 0rem;
    margin: 5rem;
    max-height: 341px;
  }
}
.blocTexteImageOut__img-container {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .blocTexteImageOut__img-container {
    width: 30%;
    left: 65% !important;
  }
  .blocTexteImageOut__img-container img {
    width: 100%;
    height: 100%;
    scale: 1.15;
  }
}
.blocTexteImageOut__img-container img {
  width: 100%;
  max-width: 340px;
}
@media only screen and (min-width: 1024px) {
  .blocTexteImageOut__text {
    width: 60%;
    max-height: 336px;
    overflow: hidden;
  }
}

.blocCarousel {
  overflow: hidden;
  padding: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  .blocCarousel {
    padding: 40px 20px;
  }
}
.blocCarousel h2 {
  color: #3E4457;
  text-align: center;
}
.blocCarousel h2:before {
  content: "/";
  color: #DA3344;
  margin-right: 0.5rem;
}
.blocCarousel--gris {
  margin: 0;
  background: #F1F2F5;
}
.blocCarousel .customCarousel {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  position: relative;
  margin: 1rem;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer / Edge */
  user-select: none; /* Standard */
}
@media only screen and (min-width: 768px) {
  .blocCarousel .customCarousel {
    margin: 2.5rem 5rem;
    margin-bottom: 0;
  }
}
.blocCarousel .customCarousel__container {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.3s;
  cursor: grab;
}
.blocCarousel .customCarousel__container--grabbing {
  cursor: grabbing;
}
.blocCarousel .customCarousel__container:after {
  content: "";
  clear: both;
  display: table;
}
.blocCarousel .customCarousel__item {
  float: left;
}
.blocCarousel .navigator__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-bottom: 11px;
}
.blocCarousel .navigator__dot {
  width: 15.79px;
  height: 15.947px;
  border-radius: 50px;
  box-shadow: 0px 0px 18px -2px #000000;
  cursor: pointer;
  background: #FFFFFF;
  transition: 0.3s ease-in-out;
}
.blocCarousel .navigator__dot:hover {
  box-shadow: 0px 0px 18px 2px #000000;
}
.blocCarousel .navigator__dot--selected {
  background: #F1F2F5;
}
.blocCarousel__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 16px 0px rgba(33, 37, 41, 0.16);
  padding: 1rem;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}
@media only screen and (min-width: 1024px) {
  .blocCarousel__card:hover {
    transform: translateY(-5px);
  }
}
.blocCarousel__card--image {
  height: 100;
  width: 100%;
}
.blocCarousel__card--image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.blocCarousel__card--title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #3E4457;
  font-size: 1.25rem;
  text-align: center;
}
.blocCarousel__card--link {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #667190;
  font-size: 1rem;
  text-align: center;
  border-bottom: none;
  position: relative;
  text-decoration: none;
}
.blocCarousel__card--link::after {
  content: url("data:image/svg+xml,%3Csvg width='14' height='16' viewBox='0 0 14 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='arrow-right-sharp-solid 1'%3E%3Cpath id='Vector' d='M13.2063 8.70635L13.9156 8.0001L13.2094 7.29385L8.70938 2.79385L8 2.08447L6.5875 3.5001L7.29375 4.20635L10.0875 7.0001H1H0V9.0001H1H10.0844L7.29063 11.7938L6.5875 12.5001L8 13.9157L8.70625 13.2095L13.2063 8.70947V8.70635Z' fill='%23DA3344'/%3E%3C/g%3E%3C/svg%3E%0A");
  position: absolute;
  margin-right: 0.25rem;
  height: 1rem;
  width: 1rem;
  top: 3px;
  right: -26px;
}
