@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700;1,900&display=swap");
.vertical-border {
  height: auto;
  border-left: 1px solid rgba(192, 192, 192, 0.9);
  margin: 20px;
}

.horizontal-border {
  width: 200px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.9);
  margin: auto 0 auto 15px;
}

.circle-1 {
  position: absolute;
  width: 465.948px;
  height: 465.948px;
  transform: rotate(-54.821deg);
  flex-shrink: 0;
  border-radius: 465.948px;
  background: linear-gradient(180deg, rgba(229, 85, 79, 0.2) 0%, rgba(229, 85, 79, 0) 100%);
}

.circle-2 {
  position: absolute;
  width: 281.858px;
  height: 281.858px;
  transform: rotate(-143.78deg);
  flex-shrink: 0;
  border-radius: 465.948px;
  background: linear-gradient(180deg, rgba(229, 85, 79, 0.2) 0%, rgba(229, 85, 79, 0) 100%);
}

.chiffres-border {
  width: 50px;
  border-bottom: 3px solid rgb(229, 85, 79);
}

.footer-border {
  width: 100%;
  border-bottom: 1px solid rgb(255, 255, 255);
  margin: 30px auto;
}

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

html {
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  color: rgb(0, 31, 69);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 80%;
  margin: auto;
}

h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

p {
  margin-bottom: 0;
}

.orange-text {
  color: rgb(229, 85, 79);
}

.subtitle {
  color: rgb(142, 80, 255);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.text-bold {
  font-weight: 600;
}

.main-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.main-button img {
  width: 10px;
}

.orange-button {
  background-color: rgb(229, 85, 79);
  color: rgb(255, 255, 255);
}
.orange-button:hover {
  background-color: rgb(222.4356435644, 42.0792079208, 34.5643564356);
  transition: 0.3s;
}

.purple-button {
  background-color: rgb(142, 80, 255);
  color: rgb(255, 255, 255);
}
.purple-button:hover {
  background-color: rgba(181.1956521739, 158, 255, 0.25);
  color: rgb(142, 80, 255);
  transition: 0.3s;
}
.purple-button.active {
  background-color: rgba(142.3913043478, 107, 255, 0.25);
  color: rgb(142, 80, 255);
  transition: background-color 0.3s, color 0.3s;
}

.blue-button {
  background-color: rgb(0, 31, 69);
  color: rgb(255, 255, 255);
}
.blue-button:hover {
  background-color: rgba(0, 53.9130434783, 120, 0.25);
  color: rgb(0, 53.9130434783, 120);
  transition: 0.3s;
}

.border-button {
  border: 2px solid rgb(186, 160, 255);
}

.charter-button {
  border: 2px solid rgb(229, 85, 79);
  color: rgb(229, 85, 79);
  margin-bottom: 10px;
}
.charter-button:hover {
  background-color: rgba(229, 85, 79, 0.25);
}

.image-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.7s ease-out;
}
.image-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-home {
  text-align: center;
  padding: 215px 60px 30px;
}
.hero-home h1 {
  margin-bottom: 40px;
}
.hero-home p {
  max-width: 800px;
  margin: auto;
  margin-bottom: 20px;
}
.hero-home .home-header-image {
  margin-top: 30px;
  width: 80%;
}

.hero-page {
  padding: 215px 0 80px;
}
.hero-page .container .flex-hero-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-page .container .flex-hero-page .text-hero-page {
  max-width: 750px;
}
.hero-page .container .flex-hero-page .text-hero-page h1 {
  margin-bottom: 30px;
  font-size: 42px;
}
.hero-page .container .flex-hero-page .text-hero-page p {
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-page .container .flex-hero-page .image-hero-page {
  max-width: 540px;
}

.bloc-schema {
  padding: 60px 0;
}
.bloc-schema .container {
  max-width: 90%;
}
.bloc-schema .container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.bloc-schema .container .flex-schema {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.bloc-schema .container .flex-schema .schema {
  max-width: 300px;
  margin: 20px 10px;
}
.bloc-schema .container .flex-schema .schema h3 {
  font-size: 20px;
  color: rgb(229, 85, 79);
}
.bloc-schema .container .flex-schema .schema img {
  width: 150px;
  border-radius: 50px;
}

.profile-pain {
  padding: 60px 0;
  text-align: center;
  background-color: rgb(234, 240, 246);
}
.profile-pain .container {
  max-width: 1280px;
}
.profile-pain .container .flex-profile-pain {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 150px;
  padding: 20px 30px;
  margin: 15pxauto;
  text-align: left;
}
.profile-pain .container .flex-profile-pain img {
  width: 350px;
}
.profile-pain .container .flex-profile-pain h3 {
  font-size: 24px;
}
.profile-pain .container .flex-profile-pain p {
  margin-bottom: 25px;
}
.profile-pain .container .flex-profile-pain li {
  list-style: disc;
  margin-bottom: 15px;
}
.profile-pain .container hr {
  border-top: 2px solid rgba(0, 31, 69, 0.25);
  width: 50%;
  margin: 20px auto;
}

.title-slider {
  text-align: center;
  margin-bottom: 30px;
}

.bloc-chiffres {
  border-top: 1px solid rgba(220, 209, 255, 0.25);
  border-bottom: 1px solid rgba(220, 209, 255, 0.25);
}
.bloc-chiffres .container {
  padding: 40px 0 50px;
}
.bloc-chiffres .container h2 {
  text-align: center;
  margin-bottom: 65px;
}
.bloc-chiffres .container .flex-chiffres {
  display: flex;
  justify-content: space-between;
}
.bloc-chiffres .container .flex-chiffres .bloc-chiffres {
  border-radius: 15px;
  border: rgba(220, 209, 255, 0.25);
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 4px 0px rgba(220, 209, 255, 0.25);
  padding: 20px 30px;
  width: 300px;
}
.bloc-chiffres .container .flex-chiffres .bloc-chiffres .chiffres {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.bloc-chiffres .container .flex-chiffres .bloc-chiffres .chiffres p {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.bloc-chiffres .container .flex-chiffres .bloc-chiffres .chiffres img {
  width: 35px;
}
.bloc-chiffres .container .flex-chiffres .bloc-chiffres .chiffres-info {
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 10px;
}

.bloc-cases {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  padding: 50px 0 60px;
}
.bloc-cases .slider-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.bloc-cases .slider-dots .dot {
  width: 15px;
  height: 15px;
  margin: 0 10px;
  background-color: rgba(229, 85, 79, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.bloc-cases .slider-dots .dot.active {
  background-color: rgb(229, 85, 79);
}
.bloc-cases .container {
  position: relative;
  height: 500px;
}
.bloc-cases .container .card-cases {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(220, 209, 255, 0.25);
  border-radius: 15px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 500px;
  margin: 10px auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.bloc-cases .container .card-cases.show {
  opacity: 1;
  visibility: visible;
}
.bloc-cases .container .card-cases div {
  width: 570px;
}
.bloc-cases .container .card-cases div h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 30px;
}
.bloc-cases .container .card-cases div a {
  margin-top: 20px;
}
.bloc-cases .container .card-cases img {
  width: 460px;
  padding: 10px;
}
.bloc-cases .container #case1 {
  opacity: 1;
  visibility: visible;
}
.bloc-cases .bottom-cases {
  position: relative;
  margin-top: 50px;
  text-align: center;
}

.bloc-cibles {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  padding: 50px 0 60px;
}
.bloc-cibles .container {
  position: relative;
  height: 500px;
}
.bloc-cibles .container .button-cibles {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-bottom: 20px;
}
.bloc-cibles .container .card-cibles {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(220, 209, 255, 0.25);
  border-radius: 15px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 430px;
  margin: 10px auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.bloc-cibles .container .card-cibles div {
  width: 570px;
}
.bloc-cibles .container .card-cibles div h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 30px;
}
.bloc-cibles .container .card-cibles img {
  width: 460px;
  padding: 10px;
}
.bloc-cibles .container .card-cibles.show {
  opacity: 1;
  visibility: visible;
}
.bloc-cibles .container #cible1 {
  opacity: 1;
  visibility: visible;
  background-color: rgb(255, 255, 255);
}
.bloc-cibles .container #cible2 {
  background-color: rgb(255, 255, 255);
}
.bloc-cibles .container #cible3 {
  background-color: rgb(255, 255, 255);
}
.bloc-cibles .bottom-cibles {
  position: relative;
  margin-top: 50px;
  text-align: center;
}

.generic-white {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
}

.generic-blue {
  background-color: rgb(234, 240, 246);
}

.generic-purple {
  background-color: rgb(243, 240, 255);
}

.reverse-flex {
  flex-direction: row-reverse;
}

.bloc-generic .container {
  padding: 50px 0;
}
.bloc-generic .container .flex-generic {
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
}
.bloc-generic .container .flex-generic .image-generic-left {
  width: 480px;
}
.bloc-generic .container .flex-generic .text-generic {
  width: 600px;
}
.bloc-generic .container .flex-generic .text-generic h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 30px;
}
.bloc-generic .container .flex-generic .text-generic p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.bloc-generic .container .flex-generic .text-generic li {
  margin-bottom: 10px;
  list-style: circle inside url("../img/icon/arrow-o-r-1.png");
}
.bloc-generic .container .flex-generic .text-generic a {
  margin-top: 20px;
}

.purple-2text {
  background: rgb(243, 240, 255) !important;
}

.bloc-2text {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  padding: 40px 0;
}
.bloc-2text .container .flex-2text {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.bloc-2text .container .flex-2text .card-2text {
  width: 490px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(220, 209, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(220, 209, 255, 0.25);
  padding: 30px;
}
.bloc-2text .container .flex-2text .card-2text .image-2text {
  width: 80px;
}
.bloc-2text .container .flex-2text .card-2text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}
.bloc-2text .container .flex-2text .card-2text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.bloc-2text-alt {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  padding: 40px 0;
}
.bloc-2text-alt .container .flex-2text-alt {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.bloc-2text-alt .container .flex-2text-alt .card-2text-alt {
  width: 340px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(220, 209, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(220, 209, 255, 0.25);
  padding: 30px;
}
.bloc-2text-alt .container .flex-2text-alt .card-2text-alt .image-2text-alt {
  width: 80px;
}
.bloc-2text-alt .container .flex-2text-alt .card-2text-alt h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}
.bloc-2text-alt .container .flex-2text-alt .card-2text-alt p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.bloc-3text {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  padding: 40px 0;
}
.bloc-3text .container .flex-3text {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.bloc-3text .container .flex-3text .card-3text {
  width: 340px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(220, 209, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(220, 209, 255, 0.25);
  padding: 30px;
}
.bloc-3text .container .flex-3text .card-3text .image-3text {
  width: 80px;
}
.bloc-3text .container .flex-3text .card-3text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}
.bloc-3text .container .flex-3text .card-3text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.bloc-demo {
  background-image: url(../img/background/background-demo.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  text-align: center;
  padding: 40px 0 80px;
}
.bloc-demo h3 {
  margin-bottom: 60px;
}
.bloc-demo p {
  max-width: 790px;
  margin: 0 auto 60px;
}

.bloc-ressources {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  padding: 50px 0;
}
.bloc-ressources .container h2 {
  text-align: center;
  margin-bottom: 65px;
}
.bloc-ressources .container .flex-ressources {
  display: flex;
  justify-content: space-between;
}
.bloc-ressources .container .flex-ressources .card-ressources {
  width: 320px;
  min-height: 390px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(220, 209, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(220, 209, 255, 0.25);
  padding: 0 0 10px 0;
}
.bloc-ressources .container .flex-ressources .card-ressources .image-ressources {
  width: 100%;
  border-radius: 15px 15px 0 0;
}
.bloc-ressources .container .flex-ressources .card-ressources .text-ressources {
  margin: 20px 30px;
}
.bloc-ressources .container .flex-ressources .card-ressources .text-ressources .info-ressources {
  color: rgb(186, 160, 255);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.bloc-ressources .container .flex-ressources .card-ressources .text-ressources h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 15px 0 10px 0;
}
.bloc-ressources .container .flex-ressources .card-ressources .text-ressources p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.bloc-mentions .container {
  padding: 215px 0 60px 0;
  margin: auto;
  width: 50%;
}
.bloc-mentions .container .title {
  margin-bottom: 40px;
}
.bloc-mentions .container .mentions {
  margin-bottom: 40px;
}
.bloc-mentions .container .mentions h2 {
  font-size: 24px;
}
.bloc-mentions .container .mentions h3 {
  font-size: 18px;
}
.bloc-mentions .container .mentions td {
  border: solid 1px black;
  padding: 5px;
}
.bloc-mentions .container .mentions p .text-bold {
  font-weight: 600;
}
.bloc-mentions .container .mentions p a {
  color: rgb(229, 85, 79);
  text-decoration: none;
}

.bloc-faq .container {
  padding: 215px 0 60px 0;
}
.bloc-faq .container h2 {
  font-size: 26px;
  color: rgb(229, 85, 79);
  margin-top: 40px;
}
.bloc-faq .container h3 {
  font-size: 18px;
  margin-top: 20px;
}

.hero-team {
  padding: 215px 0 80px;
}
.hero-team .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-team .container .text-hero-team {
  max-width: 750px;
  text-align: center;
  margin: auto;
}
.hero-team .container .text-hero-team h1 {
  margin-bottom: 30px;
  font-size: 42px;
}
.hero-team .container .text-hero-team p {
  margin-bottom: 30px;
}
.hero-team .container .image-hero-team {
  max-width: 80%;
  margin: auto;
}

.bloc-team .container .flex-team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.bloc-team .container .flex-team .member {
  text-decoration: none;
  cursor: default;
  text-align: center;
  width: 250px;
}
.bloc-team .container .flex-team .member .picture {
  width: 150px;
}
.bloc-team .container .flex-team .member .name {
  color: rgb(229, 85, 79);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}
.bloc-team .container .flex-team .member .job {
  color: rgb(0, 31, 69);
}

.bloc-contact {
  padding-bottom: 60px;
}
.bloc-contact .container {
  background-color: white;
  border: 2px solid rgba(220, 209, 255, 0.25);
  padding: 30px 40px;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(220, 209, 255, 0.25);
  width: 50%;
}

.bloc-contenu {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(251, 250, 255) 50%, rgb(255, 255, 255) 100%);
  padding: 50px 0;
}
.bloc-contenu .container .flex-contenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.bloc-contenu .container .flex-contenu .card-contenu {
  width: 320px;
  min-height: 390px;
  background-color: rgb(255, 255, 255);
  border: 2px solid rgba(220, 209, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(220, 209, 255, 0.25);
  padding: 0 0 10px 0;
  text-decoration: none;
}
.bloc-contenu .container .flex-contenu .card-contenu .image-contenu {
  width: 100%;
  border-radius: 15px 15px 0 0;
}
.bloc-contenu .container .flex-contenu .card-contenu .text-contenu {
  margin: 20px 30px;
}
.bloc-contenu .container .flex-contenu .card-contenu .text-contenu .info-contenu {
  color: rgb(186, 160, 255);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.bloc-contenu .container .flex-contenu .card-contenu .text-contenu h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 15px 0 10px 0;
  color: rgb(0, 31, 69);
}
.bloc-contenu .container .flex-contenu .card-contenu .text-contenu p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
  color: rgb(0, 31, 69);
}

.bloc-partners .container .flex-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.bloc-partners .container .flex-partners .partner img {
  width: 260px;
}

.bloc-rdv .container {
  padding-bottom: 60px;
}
.bloc-rdv .container .flex-rdv {
  display: flex;
  justify-content: space-between;
}
.bloc-rdv .container .flex-rdv .text-rdv {
  max-width: 500px;
}
.bloc-rdv .container .flex-rdv .text-rdv li {
  margin-bottom: 20px;
  list-style: circle inside url("../img/icon/arrow-o-r-1.png");
}
.bloc-rdv .container .flex-rdv .text-rdv p {
  margin-bottom: 20px;
}
.bloc-rdv .container .flex-rdv .form-rdv {
  width: 500px;
}

.search-container {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.search-container select, .search-container input, .search-container button {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.search-container button {
  background-color: rgb(255, 255, 255);
  color: rgb(229, 85, 79);
  cursor: pointer;
  border: solid 2px rgb(229, 85, 79);
  padding: 8px 16px;
}
.search-container button:hover {
  background-color: rgb(229, 85, 79);
  color: rgb(255, 255, 255);
  transition: 0.3s;
}
.search-container .search-container button:hover {
  background-color: #E5554F;
}

@media (max-width: 1150px) {
  .bloc-schema .container .flex-schema {
    flex-wrap: wrap;
    gap: 20px;
  }
  .profile-pain .container .flex-profile-pain {
    gap: 20px;
  }
  .bloc-cases .container {
    height: 750px;
  }
  .bloc-cases .container .card-cases {
    flex-direction: column;
    min-height: 750px;
  }
  .bloc-cases .container .card-cases div {
    width: 100%;
  }
  .bloc-cases .container .card-cases img {
    display: none;
  }
  .bloc-generic .container .flex-generic {
    gap: 20px;
  }
  .bloc-generic .container .flex-generic .image-generic-left {
    width: 50%;
  }
  .bloc-generic .container .flex-generic .text-generic {
    width: 90%;
  }
}
@media (max-width: 768px) {
  /* Adjust container width for mobile */
  .container {
    max-width: 95%;
  }
  /* Heading adjustments for mobile */
  h1 {
    font-size: 32px; /* Adjust h1 font size */
  }
  h2 {
    font-size: 28px; /* Adjust h2 font size */
  }
  h3 {
    font-size: 24px; /* Adjust h3 font size */
  }
  /* Button adjustments for mobile */
  .main-button {
    font-size: 16px; /* Adjust button font size */
    padding: 8px 15px; /* Reduce button padding */
  }
  /* Partner image adjustments for mobile */
  .bloc-partners .partner img {
    width: 150px; /* Reduce partner image size */
  }
  /* Flexbox adjustments for mobile */
  .flex-rdv {
    flex-direction: column; /* Stack flex items vertically */
  }
  .text-rdv {
    max-width: 100%; /* Make text block full width */
  }
  .form-rdv {
    width: 100%; /* Make form full width */
  }
  /* Section padding adjustments for mobile */
  .section {
    padding: 40px 0; /* Reduce section padding */
  }
  /* Card padding adjustments */
  .card {
    padding: 15px; /* Reduce card padding for mobile */
  }
  .flex-chiffres {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .profile-pain .container .flex-profile-pain {
    flex-direction: column;
    align-items: center;
  }
  .hero-page .container .flex-hero-page {
    flex-direction: column;
  }
  .hero-page .container .flex-hero-page .image-hero-page {
    width: 90%;
    margin-top: 20px;
  }
  .bloc-logo .carousel-container .carousel-track img {
    width: 100px;
  }
  .bloc-generic .container .flex-generic {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .bloc-generic .container .flex-generic .image-generic-left {
    width: 100%;
  }
  .bloc-generic .container .flex-generic .text-generic {
    width: 90%;
  }
  .bloc-cases .container {
    height: 750px;
  }
  .bloc-cases .container .card-cases {
    flex-direction: column;
    min-height: 750px;
    min-width: 100%;
  }
  .bloc-cases .container .card-cases div {
    width: 100%;
  }
  .bloc-cases .container .card-cases img {
    display: none;
  }
  .bloc-2text .container .flex-2text {
    flex-direction: column;
    gap: 10px;
  }
  .bloc-2text .container .flex-2text .card-2text {
    width: 100%;
  }
  .bloc-2text .container .flex-2text .card-2text .image-2text {
    width: 60px;
  }
  .bloc-2text-alt .container .flex-2text-alt {
    flex-direction: column;
    gap: 10px;
  }
  .bloc-2text-alt .container .flex-2text-alt .card-2text-alt {
    width: 100%;
  }
  .bloc-2text-alt .container .flex-2text-alt .card-2text-alt .image-2text-alt {
    width: 60px;
  }
  .bloc-3text .container .flex-3text {
    flex-direction: column;
    gap: 10px;
  }
  .bloc-3text .container .flex-3text .card-3text {
    width: 100%;
  }
  .bloc-3text .container .flex-3text .card-3text .image-3text {
    width: 60px;
  }
  .bloc-ressources .container .flex-ressources {
    flex-direction: column;
    gap: 10px;
  }
  .bloc-ressources .container .flex-ressources .card-ressources {
    width: 100%;
  }
  .bloc-cibles {
    height: 850px;
  }
  .bloc-cibles .container .button-cibles {
    flex-direction: column;
    gap: 20px;
  }
  .bloc-cibles .container .card-cibles {
    flex-direction: column;
    top: 200px;
    padding: 20px 30px;
    height: 550px;
    width: 100%;
  }
  .bloc-cibles .container .card-cibles div {
    width: 100%;
  }
  .bloc-cibles .container .card-cibles div h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .bloc-cibles .container .card-cibles img {
    display: none;
  }
  .bloc-cibles .container .card-cibles .testimonial-slide .testimonial-flex {
    flex-direction: column;
  }
  .bloc-contact .container {
    width: 90%;
  }
  .bloc-mentions .container {
    width: 90%;
  }
}

/*# sourceMappingURL=main.css.map */
