@charset "UTF-8";
html {
  overflow-x: hidden;
}

.padding-5 {
  padding: 5rem;
}
@media screen and (max-width: 900px) {
  .padding-5 {
    padding: 2rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-element {
  opacity: 0;
  /* Démarrez avec l'élément invisible */
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  /* L'animation reste appliquée après son exécution */
  animation-play-state: paused;
  /* Pausez l'animation jusqu'à ce qu'elle soit déclenchée */
}

.page-template-landing #navbar {
  box-shadow: none;
  z-index: 11;
  position: relative;
}

.page-template-landing .content-container,
.page-template-landing-header .content-container {
  max-width: 100%;
  padding: 5%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.page-template-landing .center,
.page-template-landing-header .center {
  text-align: center;
}
.page-template-landing #clients,
.page-template-landing-header #clients {
  padding: 5% 0;
  padding-bottom: 0;
}
@media screen and (max-width: 900px) {
  .page-template-landing h2,
  .page-template-landing .header-landing h1 .font-1,
  .page-template-landing .header-landing h1 .font-2,
  .page-template-landing-header h2,
  .page-template-landing-header .header-landing h1 .font-1,
  .page-template-landing-header .header-landing h1 .font-2 {
    font-size: 32px;
    line-height: 32px;
  }
}

/* Header */
.background-gradiant {
  background-size: cover;
  position: relative;
  background: linear-gradient(-45deg, #b2d0bb, #fce1da, #a3d0ce, #eae9e4);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes popAnimation {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.circle-pop {
  animation-fill-mode: forwards;
  animation-name: popAnimation;
  animation-duration: 0.5s;
}

/* header-landing */
.header-landing {
  z-index: 11;
  position: relative;
  /*   max-height: 91vh; */
}
.header-landing h1 {
  margin: 0;
}
.header-landing h1 .font-1 {
  color: #000;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 41px;
  /* 107.895% */
}
.header-landing h1 .font-2 {
  color: #000;
  font-family: Merriweather;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
}
.header-landing .container-fluid {
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex-direction: row;
}
.header-landing .container-fluid .col {
  /* display: flex; */
  width: -webkit-fill-available;
  max-width: 50%;
  flex-direction: column;
  justify-content: center;
}
.header-landing .left-white {
  z-index: 1;
  position: relative;
  background: #fff;
  left: 8%;
  padding: 2rem;
}
.header-landing .left-contact {
  padding-left: calc(8% + 2rem);
  padding-right: 2rem;
  margin-bottom: 2rem;
}
.header-landing img.ronded {
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.header-landing .slick-list,
.header-landing .slick-slider,
.header-landing .slick-track {
  height: 100%;
  max-height: 91vh;
}
.header-landing .slick-slide img {
  width: 100%;
  display: block;
  height: 100%;
  background-color: #fff;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-landing .person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.header-landing .person .person-info {
  color: #000;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header-landing .person .person-info strong {
  font-size: 18px;
}
.header-landing .btn-container {
  width: 100%;
  text-align: center;
}
.header-landing .btn-container .lil-text {
  color: #000;
  font-family: Poppins;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
  /* 130% */
}
.header-landing .btnOutlineBlack {
  display: flex;
  padding: 0.5rem;
  gap: 1rem;
}
.header-landing .btnOutlineBlack:hover {
  color: #000 !important;
  background-color: #A3D0CE !important;
}
.header-landing .contact-links.buttons {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 900px) {
  .header-landing {
    max-height: 100% !important;
  }
  .header-landing p {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
  }
  .header-landing .container-fluid {
    display: flex;
    width: 100%;
    max-height: -moz-fit-content !important;
    max-height: fit-content !important;
    justify-content: space-around !important;
    flex-direction: column-reverse !important;
  }
  .header-landing .container-fluid .col {
    width: auto;
    max-width: 100%;
    min-height: auto !important;
  }
  .header-landing .left-white,
  .header-landing .left-contact {
    padding: 1rem !important;
    left: auto;
    background: #fff;
  }
  .header-landing .contact-links.buttons {
    gap: 1rem;
    flex-direction: column;
  }
  .header-landing .btnOutlineBlack {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    width: -moz-max-content;
    width: max-content;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 420px) {
  .header-landing .slick-list,
  .header-landing .header-landing .slick-slider,
  .header-landing .header-landing .slick-track {
    max-height: 40vh;
  }
}

.feedtruck-header {
  z-index: 0;
  margin-top: 9vh;
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
}
.feedtruck-header .container-fluid {
  display: flex;
  width: 100%;
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
  flex-direction: row;
  justify-content: space-between;
}
.feedtruck-header h1 {
  font-size: 38px;
  line-height: 41px;
  /* 107.895% */
}
.feedtruck-header .sub-title {
  margin: 0;
  color: #000;
  font-family: Merriweather;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
}
.feedtruck-header img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* chiffres */
.chiffres {
  padding: 5%;
}
.chiffres .chiffres-listing {
  display: flex;
  flex-wrap: wrap;
}
.chiffres .chiffres-listing > div {
  flex-grow: 1;
  width: 33%;
}
.chiffres .chiffre-card {
  padding: 2rem;
}
.chiffres .chiffre-card h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.chiffres .chiffre-card h2 .title {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 900;
}
.chiffres .chiffre-card h2 .sub {
  color: #000;
  font-family: Merriweather;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 900;
}
@media screen and (max-width: 900px) {
  .chiffres .chiffre-card h2 .title {
    font-size: 2.5rem;
  }
  .chiffres .chiffre-card h2 .sub {
    font-size: 2rem;
  }
}
.chiffres .chiffre-card p {
  color: #000;
  text-align: center;
  /* Texte courant */
  font-family: Poppins;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 155.556% */
}
.chiffres .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2rem;
}
.chiffres .slick-dots li {
  font-size: 0;
  cursor: pointer;
  transition: 0.3s ease;
  width: 20%;
  line-height: 2px;
  margin-right: 10px;
}
.chiffres .slick-dots li:not(.slick-active) {
  filter: grayscale(1) invert(1);
}
.chiffres .slick-dots li button {
  font-size: 0;
  content: url(../images/LineActive.svg);
  background: url(../images/LineActive.svg);
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  border: none;
  width: 100%;
  /* margin: 0 5px 0 5px; */
}

.client-head h2 {
  margin-bottom: 2rem;
  color: #000;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 54.5px;
}
@media screen and (max-width: 900px) {
  .client-head h2 {
    font-size: 36px;
  }
}

/* timeline */
.timeline h2 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 5rem;
}
.timeline .circle-container {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0px;
}
.timeline .circle-container.reverse {
  flex-direction: column-reverse;
}
.timeline .circle-container p {
  margin: 0;
}
.timeline .circle-container .content {
  min-height: 70px;
}
.timeline .circle-container .content .title {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.timeline .circle-container .content p {
  color: #000;
  font-family: Merriweather;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.timeline .circle-container .circle-div {
  display: flex;
  min-height: 60px;
  align-items: center;
}
.timeline .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline .circle {
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s, opacity 0.5s;
  /* Assure une transition douce si nécessaire */
  background-color: #FF5733;
  border-radius: 50%;
  margin: 0 10px;
  /* Espacement fixe entre les cercles et les lignes */
}
@media screen and (max-width: 900px) {
  .timeline h2 {
    margin-bottom: 3rem;
  }
  .timeline .circle {
    width: 20px !important;
    height: 20px !important;
  }
  .timeline .circle-container {
    height: 300px;
    display: flex;
    flex-direction: row-reverse !important;
    text-align: left;
    flex: 1 1 0px;
    gap: 1rem;
  }
  .timeline .circle-container.reverse .circle-div {
    justify-content: flex-end;
  }
  .timeline .circle-container .circle-div {
    min-width: 70px;
    justify-content: flex-start;
  }
  .timeline .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-bottom: 2rem;
  }
  .timeline .container .content {
    min-height: auto;
  }
  .timeline .container .content .title {
    text-align: left;
  }
}

/* approches */
.approches h2 {
  text-align: center;
  margin-bottom: 5rem;
}
.approches h3 {
  font-family: Merriweather;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .approches h3 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
}
.approches p {
  margin-top: 0;
}
.approches .picto-content {
  width: 950px;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  gap: 2rem;
}
@media screen and (max-width: 900px) {
  .approches .picto-content {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.approches .picto-content .picto {
  min-width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .approches h2 {
    margin-bottom: 3rem;
  }
}

/* faq */
.faq h2 {
  text-align: center;
}
.faq details {
  padding: 2%;
  width: 100%;
  min-height: 5px;
  /*   max-width: 700px; */
  /*   padding: 45px 70px 45px 45px; */
  margin: 0 auto;
  position: relative;
  font-size: 22px;
  /*  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px; */
  box-sizing: border-box;
  transition: all 0.3s;
}
.faq details[open] {
  min-height: 50px;
  /*  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2); */
}
.faq details[open] summary {
  color: #000;
  font-family: Poppins;
  font-size: 22px;
  font-weight: 700;
}
.faq details p {
  color: #000;
  max-width: 90%;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.faq summary:focus {
  outline: none;
}
.faq summary:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  /* box-shadow: 0 0 0 5px rebeccapurple; */
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq .control-icon {
  fill: #000;
  transition: 0.3s ease;
  pointer-events: none;
  width: 50px;
}
.faq .control-icon-close {
  display: none;
}
.faq details[open] .control-icon-close {
  display: initial;
  transition: 0.3s ease;
}
.faq details[open] .control-icon-expand {
  display: none;
}

/* experises */
section.expertises .content-container {
  padding-bottom: 0;
}

.expertises {
  margin-bottom: 5%;
  /* Rotate the icon when the accordion is open */
}
.expertises .center {
  margin-bottom: 5rem;
}
@media screen and (max-width: 900px) {
  .expertises .center {
    margin-bottom: 1rem;
  }
}
.expertises .accordions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.expertises .accordions .bloc {
  width: calc(33.33% - 1rem);
}
@media screen and (max-width: 900px) {
  .expertises .accordions .bloc {
    width: calc(100% - 1rem);
  }
  .expertises .accordions .bloc .accordion:last-child {
    margin-bottom: 0;
  }
}
.expertises .accordions .bloc .accordion:last-child {
  margin-bottom: 0;
}
.expertises .accordion {
  font-family: "Arial", sans-serif;
}
.expertises .accordion-item {
  background-color: #000;
  margin-bottom: 1rem;
  overflow: hidden;
}
.expertises .accordion-title {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 27px 40px;
  cursor: pointer;
  transition: background-color 0.6s ease;
  flex-direction: column;
}
.expertises .accordion-title p.title {
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .expertises .accordion-title p.title {
    font-size: 20px;
    line-height: 28px;
    /* 140% */
  }
}
.expertises .accordion-title .intro {
  color: #000;
  font-family: Merriweather;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.expertises .accordion-title:hover {
  /*   background-color: #333; */
}
.expertises .accordion-icon {
  transition: transform 0.6s ease;
}
.expertises .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  padding: 0 40px;
}
.expertises .accordion-content p,
.expertises .accordion-content ul {
  margin-bottom: 20px;
  margin-top: 0;
}
.expertises .accordion-icon.rotate {
  transform: rotate(90deg);
}

.contenu .content-container {
  width: 1000px;
  max-width: 100%;
  text-align: center;
}
.contenu .content-container.text-left {
  text-align: left;
}
.contenu .content-container.text-right {
  text-align: right;
}
.contenu .content-p {
  margin-bottom: 2rem;
}
.contenu h2 {
  line-height: 38.5px;
}
.contenu h2 .font-1 {
  font-family: Poppins;
  font-size: 36px;
  font-weight: 800;
}
.contenu h2 .font-2 {
  font-family: Merriweather;
  font-size: 36px;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .contenu .content-container {
    width: auto;
  }
  .contenu .content-container h2 .font-1,
  .contenu .content-container h2 .font-2 {
    font-size: 30px;
  }
}

/* secteurs */
.secteurs {
  position: relative;
  /*   margin-top: 5%; */
}
.secteurs .secteurs-slider.slick-initialized.slick-slider {
  height: 100vh;
}
.secteurs .secteurs-slider.slick-initialized.slick-slider .slick-track,
.secteurs .secteurs-slider.slick-initialized.slick-slider .slick-list {
  height: 100vh;
}
.secteurs .slider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secteurs .slick-slide img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secteurs .secteur-content {
  padding: 0 10%;
  position: absolute;
  width: 100%;
  z-index: 2;
  max-width: 80%;
  top: 0;
  height: 100vh;
  left: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.secteurs .secteur-content .font-1 {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
}
.secteurs .secteur-content .font-2 {
  color: #FFF;
  font-family: Merriweather;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
}
.secteurs .secteur-content .description p {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.secteurs .secteur-content .secteurs-titles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 2rem;
  width: 900px;
  max-width: 100%;
}
.secteurs .secteur-content .secteurs-titles .secteur-t {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.secteurs .secteur-content .secteurs-titles .secteur-t a {
  color: #FFF;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.3s ease-in;
}
.secteurs .secteur-content .secteurs-titles .secteur-t a:not(.active) {
  opacity: 0.3;
}
.secteurs .secteur-content .secteurs-titles .secteur-t a:hover {
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .secteurs .secteurs-slider.slick-initialized.slick-slider {
    position: absolute;
    height: 100%;
  }
  .secteurs .secteurs-slider.slick-initialized.slick-slider .slick-list,
  .secteurs .secteurs-slider.slick-initialized.slick-slider .slick-slider,
  .secteurs .secteurs-slider.slick-initialized.slick-slider .slick-track {
    height: 100%;
  }
  .secteurs .secteurs-slider.slick-initialized.slick-slider .slick-slide img {
    /*         width: auto; */
    width: 100vw;
  }
  .secteurs .secteur-content {
    padding: 10% 10%;
    position: relative;
    z-index: 2;
  }
  .secteurs .secteur-content .font-1,
  .secteurs .secteur-content .font-2 {
    font-size: 32px;
  }
  .secteurs .secteur-content .secteurs-titles {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .secteurs .secteur-content .secteurs-titles .secteur-t {
    width: auto;
  }
  .secteurs .secteur-content .secteurs-titles .secteur-t a {
    font-size: 23px;
  }
}

.etic {
  position: relative;
  padding: 5%;
}
.etic .etic-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.etic .etic-parts {
  height: 100%;
  position: relative;
  max-width: 100%;
  margin: auto;
  min-height: 450px;
  min-width: 1024px;
}
.etic .etic-part {
  width: 240px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
}
.etic .etic-part.etic-e.etic-part {
  top: 20%;
  left: 0;
}
.etic .etic-part.etic-ti.etic-part {
  right: 0;
  top: 0;
}
.etic .etic-part.etic-c.etic-part {
  right: 0;
  bottom: 0;
  display: flex;
}
.etic .etic-part img {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 900px) {
  .etic {
    padding: 10% 0;
  }
  .etic .etic-parts {
    min-height: auto;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    margin-top: 2rem;
    min-width: auto;
  }
  .etic .etic-logo {
    padding: 1rem;
    position: initial;
    transform: none;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .etic .etic-part {
    width: auto;
    position: initial;
    flex-direction: row;
  }
}

/* picto-description */
.picto-description .content-container {
  gap: 2rem;
}
.picto-description h2 {
  line-height: 38.5px;
}
.picto-description h2 .font-1 {
  font-family: Poppins;
  font-size: 36px;
  font-weight: 800;
}
.picto-description h2 .font-2 {
  font-family: Merriweather;
  font-size: 36px;
  font-weight: 400;
}
.picto-description .pictos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.picto-description .pictos .picto-container {
  display: flex;
  text-align: center;
  width: 20%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.picto-description .pictos .picto-container .cont {
  padding: 5%;
}
.picto-description .pictos .picto-container .cont img {
  margin-bottom: 1rem;
  height: 80px;
}
.picto-description .pictos .picto-container .cont p {
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 900px) {
  .picto-description .content-container {
    width: auto;
  }
  .picto-description .content-container h2 .font-1,
  .picto-description .content-container h2 .font-2 {
    font-size: 30px;
  }
  .picto-description .pictos .picto-container {
    width: auto;
    min-width: 50%;
    flex: 1;
  }
}

/* slider-valeurs */
.slider-valeurs .content-container {
  position: absolute;
  z-index: 2;
  text-align: center;
  margin: auto;
  width: 90%;
}
.slider-valeurs h2 {
  line-height: 38.5px;
  color: #fff;
}
.slider-valeurs h2 .font-1 {
  font-family: Poppins;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
}
.slider-valeurs h2 .font-2 {
  font-family: Merriweather;
  font-size: 46px;
  font-weight: 400;
}
.slider-valeurs .valeur-slide {
  position: relative;
  display: flex;
  min-height: 730px;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.slider-valeurs .valeur-slide img.slider-img {
  width: 100%;
  background-color: #000;
  z-index: 1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-valeurs .valeur-slide .content {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slider-valeurs .valeur-slide .content h3,
.slider-valeurs .valeur-slide .content p {
  color: #fff;
}
.slider-valeurs .valeur-slide .content h3 {
  font-family: Poppins;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.slider-valeurs .slick-dots {
  display: flex;
  max-width: 90%;
  padding: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2rem;
  bottom: 5%;
  margin: auto;
  z-index: 5;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.slider-valeurs .slick-dots li {
  font-size: 0;
  cursor: pointer;
  height: 3px;
  transition: 0.3s ease;
  overflow: hidden;
  width: 68px;
  margin-right: 10px;
  background: #fff;
}
.slider-valeurs .slick-dots li:not(.slick-active) {
  filter: grayscale(1) invert(1);
}
.slider-valeurs .slick-dots li button {
  font-size: 0;
  text-indent: -9999px;
  text-decoration: none;
  border: none;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .slider-valeurs h2 {
    line-height: 36px;
  }
  .slider-valeurs h2 .font-1 {
    font-size: 36px;
  }
  .slider-valeurs h2 .font-2 {
    font-size: 36px;
  }
  .slider-valeurs .valeur-slide .content {
    top: 65%;
  }
  .slider-valeurs .valeur-slide .content h3 {
    color: #fff !important;
  }
}

/* contact-section */
.contact-section {
  z-index: 11;
  position: relative;
}
.contact-section .contactLeft {
  padding-top: 0 !important;
}
.contact-section input#gform_submit_button_3,
.contact-section input#gform_submit_button_4,
.contact-section input#gform_submit_button_5 {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  height: 0 !important;
  background: transparent;
  font-size: 0 !important;
}
.contact-section .container-form.contact-step {
  margin-bottom: 5rem !important;
  padding-bottom: 5rem;
  border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
  display: flex;
  flex-direction: column;
}
.contact-section .photo-info {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-direction: row;
}
.contact-section .photo-info img {
  border-radius: 100%;
}
.contact-section .tel-info {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.contact-section .tel-info a#dynamicButtonContact {
  padding: 8px;
  width: 100%;
  gap: 1rem;
  min-width: 240px;
  background: #fff;
}
.contact-section .tel-info a#dynamicButtonContact:hover {
  color: initial;
  background-color: #A3D0CE !important;
}
.contact-section .tel-info .info {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
}
.contact-section h5 {
  color: #000;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: normal;
  text-align: left;
  margin: 0;
  /* 100% */
}
.contact-section#contact {
  padding: 0;
}
@media screen and (max-width: 900px) {
  .contact-section#contact .container-form {
    margin: auto;
    text-align: center;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .contact-section .photo-info {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .contact-section .photo-info h5 {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    line-height: 30px;
    /* 125% */
  }
  .contact-section .tel-info {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-section .tel-info div {
    margin: auto;
  }
}

/* cases-section */
.cases-section {
  position: relative;
  padding: 120px 0;
}
.cases-section .card {
  padding: 0 25px;
  text-align: center;
}
.cases-section .card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cases-section .card .title {
  color: #000;
  text-align: center;
  font-family: Merriweather;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
  margin-bottom: 0;
  /* 121.875% */
}
.cases-section .card .sub-title {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 39px;
  margin-top: 0;
}
.cases-section .button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cases-section .link-case {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 8px 25px;
  min-width: 155px;
  border-radius: 50px;
  border: 1px solid rgba(203, 203, 203, 0.8);
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.cases-section .link-case:hover {
  background-color: #A3D0CE;
}
.cases-section .slick-dots {
  display: flex;
  max-width: 90%;
  padding: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2rem;
  bottom: -80px;
  margin: auto;
  z-index: 5;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.cases-section .slick-dots li {
  font-size: 0;
  cursor: pointer;
  transition: 0.3s ease;
  width: 68px;
  line-height: 2px;
  margin-right: 10px;
  background-color: #EAE9E4;
}
.cases-section .slick-dots li.slick-active {
  background-color: black;
}
.cases-section .slick-dots li button {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  border: none;
  width: 100%;
  /* margin: 0 5px 0 5px; */
  cursor: pointer;
  background: #EAE9E4;
}
.cases-section .slick-dots li.slick-active button {
  background: black;
}

.fixed-call {
  position: fixed;
  right: 2%;
  z-index: 10;
  top: 2%;
}
.fixed-call a.anchor-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 8px;
  border: #000 1px solid;
  border-radius: 50px;
  width: 183px;
  color: #000;
  background-color: #fff;
  transition: 0.3s ease-in;
}

/* Feed truck */
.title-picto-description {
  background: #FCE1DA;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.title-picto-description h2 {
  text-align: center;
}
.title-picto-description .picto-container {
  max-width: 90%;
  width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.title-picto-description .picto-container .item {
  display: flex;
  gap: 2rem;
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  align-items: center;
}
.title-picto-description .picto-container .item img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 900px) {
  .title-picto-description .picto-container {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .title-picto-description .picto-container .item {
    gap: 1rem;
    font-size: 20px;
    line-height: normal;
  }
}

section.background-gradiant.contenu {
  display: flex;
  min-height: 600px;
  align-items: center;
}
@media screen and (max-width: 900px) {
  section.background-gradiant.contenu {
    min-height: 400px;
  }
}

.feed-videos {
  margin-bottom: 5%;
  position: relative;
}
.feed-videos .cards.cards-slider.slick-initialized.slick-slider.slick-dotted {
  position: initial;
  padding-bottom: 100px;
}
.feed-videos .text-cont {
  text-align: center;
}
.feed-videos .text-cont h2 {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 41px;
  margin-bottom: 0;
  /* 107.895% */
}
.feed-videos .text-cont .sub {
  margin-top: 0;
  color: #000;
  font-family: Merriweather;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
}
.feed-videos img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feed-videos .card {
  margin-right: 1rem;
  text-align: center;
  padding-bottom: 1rem;
}
.feed-videos .card h4 {
  color: #000;
  text-align: center;
  font-family: Merriweather;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  margin-bottom: 0;
  margin-top: 2rem;
  line-height: 39px;
}
.feed-videos .card .date {
  margin-top: 0;
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 39px;
}
.feed-videos .card .btn {
  border-radius: 350px;
  border: 1px solid rgba(203, 203, 203, 0.8);
  background: #fff;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 10px 25px;
  margin-bottom: 23px;
  line-height: normal;
  transition: 0.3s ease-in;
}
.feed-videos .card .btn:hover {
  border-color: #000;
  color: #fff;
  background: #000;
}
.feed-videos .card .illustration {
  position: relative;
}
.feed-videos .card .illustration svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feed-videos .card.youtube-popup {
  transition: all 0.2s ease;
}
.feed-videos .card.youtube-popup:hover {
  filter: brightness(50%);
}
.feed-videos .slick-dots {
  display: flex;
  max-width: 90%;
  padding: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2rem;
  bottom: 0;
  margin: auto;
  z-index: 5;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.feed-videos .slick-dots li {
  font-size: 0;
  cursor: pointer;
  transition: 0.3s ease;
  width: 68px;
  line-height: 2px;
  margin-right: 10px;
}
.feed-videos .slick-dots li button {
  font-size: 0;
  background: #EAE9E4;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  border: none;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
}
.feed-videos .slick-dots li.slick-active button {
  background: #000;
}
@media screen and (max-width: 900px) {
  .feed-videos .text-cont .sub {
    font-size: 24px;
    line-height: normal;
  }
}

#contact .container-form.feed-conctact {
  width: 1180px;
  max-width: 95%;
}
#contact .container-form.feed-conctact .contactLeft {
  margin-bottom: 5%;
  padding-top: 5%;
}
#contact .container-form.feed-conctact .form-text {
  width: 450px;
  max-width: 100%;
}

.cta-img .container-fluid {
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex-direction: row;
}
.cta-img .container-fluid .col {
  display: flex;
  width: -webkit-fill-available;
  max-width: 50%;
  flex-direction: column;
  justify-content: center;
}
.cta-img .container-fluid {
  display: flex;
  width: 100%;
  max-height: 670px;
  flex-direction: row;
  justify-content: space-between;
}
.cta-img h2 {
  font-size: 38px;
  line-height: 41px;
  margin-bottom: 0;
}
.cta-img .sub-title {
  margin: 0;
  color: #000;
  font-family: Merriweather;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 41px;
  margin-bottom: 3rem;
}
.cta-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-img .btn {
  align-items: center;
  border-radius: 350px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 10px 25px;
  margin-bottom: 23px;
  line-height: normal;
  transition: 0.3s ease-in;
  display: flex;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.cta-img .btn svg path {
  fill: #000;
  transition: 0.3s ease;
}
.cta-img .btn:hover {
  border-color: #000;
  color: #fff;
  background: #000;
}
.cta-img .btn:hover svg path {
  fill: #fff;
}
@media screen and (max-width: 900px) {
  .cta-img {
    max-height: 100% !important;
  }
  .cta-img p {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
  }
  .cta-img .container-fluid {
    display: flex;
    width: 100%;
    max-height: -moz-fit-content !important;
    max-height: fit-content !important;
    justify-content: space-around !important;
    flex-direction: column-reverse !important;
  }
  .cta-img .container-fluid .col {
    width: auto;
    max-width: 100%;
    min-height: auto !important;
  }
  .cta-img .left-white,
  .cta-img .left-contact {
    padding: 1rem !important;
    left: auto;
    background: #fff;
  }
  .cta-img .contact-links.buttons {
    gap: 1rem;
    flex-direction: column;
  }
  .cta-img .btnOutlineBlack {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    width: -moz-max-content;
    width: max-content;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 900px) {
  h2,
  .sub-title {
    font-size: 30px !important;
    line-height: normal !important;
  }
}/*# sourceMappingURL=landing.css.map */