@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.ttf") format("woff");
}

@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/Roboto-Bold.ttf") format("woff");
}

* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: default;
}

body {
  font-family: "Roboto", sans-serif;
  min-width: 320px;
  scroll-behavior: smooth;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bold {
  font-family: "RobotoBold", sans-serif;
  font-weight: bold;
}

header {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #000000;
}

header .header_container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .header_container .header_line {
  width: 100%;
  height: 5px;
  background-color: red;
}

header .header_container .header_title {
  min-height: 70px;
  padding: 10px;
  text-align: center;
  background-color: #003565;
  color: #fff;
  font-size: 1.5rem;
  text-shadow: 1px 1px 1px black;
}

.section_underHeader {
  width: 100%;
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.section_underHeader .unerHeader_container {
  width: 1000px;
  max-width: 1000px;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 100%;
      grid-template-rows: 100%;
  grid-auto-columns: 65% 35%;
  gap: 10px;
  grid-auto-flow: column;
}

.section_underHeader .unerHeader_container .section_left {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.left_header {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #17183e;
}

.left_header .left_header_cadre {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 550px;
  background-color: #fdeee1;
  background: url("../images/background.jpg");
  background-repeat: no-repeat;
  z-index: -1;
}

.left_header .left_header_title {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  padding-top: 35px;
}

.left_header .left_header_bigTitle {
  width: 100%;
  height: 130px;
  font-size: 2.4rem;
}

.left_header .left_header_bigTitle .red {
  color: #d6243a;
}

.left_header .left_header_bigTitle .underline {
  background: url("../images/underline_blue.svg");
  background-position: 50% 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.left_header .left_header_image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(43, 90, 160, 0.35);
          box-shadow: 0 0 15px rgba(43, 90, 160, 0.35);
  border: 2px solid #fac04b;
}

.left_header .left_header_image img {
  width: 100%;
  height: 100%;
}

.section_quality {
  width: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section_quality .quality_title {
  width: 100%;
  height: 50px;
  color: #17183e;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section_quality .quality_underTitle {
  width: 100%;
  height: 50px;
  color: #d6243a;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5px;
}

.section_quality .quality_containerCase {
  width: 100%;
  min-height: 160px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin-top: 20px;
}

.section_quality .quality_containerCase .quality_containerCase_case {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section_quality .quality_containerCase .quality_containerCase_case .quality_containerCase_caseImage {
  width: 100%;
  height: 70px;
  padding: 5px 20px;
}

.section_quality .quality_containerCase .quality_containerCase_case .quality_containerCase_caseImage img {
  width: 50px;
  height: 50px;
}

.section_quality .quality_containerCase .quality_containerCase_case .quality_containerCase_caseText {
  width: 100%;
  min-height: 90px;
  text-align: center;
  padding: 7px 5px 7px 5px;
  font-size: 1rem;
}

.section_quality .quality_containerCase .quality_containerCase_case .quality_containerCase_caseText span {
  display: inline-block;
}

.section_reseau {
  width: 100%;
  height: 300px;
  margin-top: 40px;
  background-color: #f5f5f5;
  border-radius: 10px;
  background: url("../images/background_reseau.jpg");
  background-position: 60% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section_reseau .section_reseauPara {
  width: 50%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0 10px 10px;
}

.section_reseau .section_reseauPara .section_reseauPara_title {
  width: 100%;
  height: 80px;
  font-size: 1.4rem;
  color: #17183e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section_reseau .section_reseauPara .section_reseauPara_title2 {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  color: #dc3318;
}

.section_reseau .section_reseauPara .section_reseauPara_title3 {
  width: 100%;
  height: 110px;
  color: #555;
  font-size: 1.1rem;
}

.section_normes {
  width: 100%;
  height: 140px;
  background-color: #f5f5f5;
  margin-top: 40px;
  border-radius: 10px;
}

.section_normes .section_normesTitle {
  width: 100%;
  height: 50px;
  font-size: 1.2rem;
  text-align: center;
  color: #dc3318;
}

.section_normes .section_normes_containerImages {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
}

.section_normes .section_normes_containerImages .section_normes_containerImagesCase {
  width: 95px;
  height: 60px;
}

.section_normes .section_normes_containerImages .section_normes_containerImagesCase img {
  width: 100%;
  height: 100%;
}

.section_article {
  width: 100%;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}

.section_article .section_articleTitle {
  width: 100%;
  height: 60px;
  font-size: 1.5rem;
  color: #17183e;
}

.section_article .section_articleContainer {
  width: 100%;
  min-height: 300px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 100%;
      grid-template-rows: 100%;
  grid-auto-columns: 49% 49%;
  gap: 10px;
  grid-auto-flow: column;
  margin-top: 20px;
}

.section_article .section_articleContainer .section_articleContainer_article {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

.section_article .section_articleContainer .section_articleContainer_article .section_articleContainer_articleImage {
  width: 100%;
  height: 200px;
}

.section_article .section_articleContainer .section_articleContainer_article .section_articleContainer_articleImage img {
  width: 100%;
  height: 100%;
}

.section_article .section_articleContainer .section_articleContainer_article .section_articleContainer_articleText {
  width: 100%;
  min-height: 200px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
}

.section_article .section_articleContainer .section_articleContainer_article .section_articleContainer_articleText .section_articleContainer_articleText_title {
  width: 100%;
  height: auto;
  font-size: 1.2rem;
}

.section_article .section_articleContainer .section_articleContainer_article .section_articleContainer_articleText .section_articleContainer_articleText_para {
  margin: 20px 0;
  font-size: 1.1rem;
}

.section_confiance {
  width: 100%;
  min-height: 300px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.section_confiance .section_confianceTitle {
  width: 100%;
  height: 50px;
  font-size: 1.6rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section_confiance .section_confianceTitle span {
  margin-left: 5px;
  color: #34db90;
}

.section_confiance .section_confianceContainer {
  width: 100%;
  min-height: 400px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  padding: 10px;
}

.section_confiance .section_confianceContainer .carousel {
  width: 90%;
  margin: 0px auto;
  max-width: 600px;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case {
  width: 300px !important;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-left: 20px;
  cursor: pointer;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .section_confianceContainer_casePicture {
  width: 100%;
  height: 110px;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .section_confianceContainer_casePicture .casePicture_circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin-top: 10px;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .section_confianceContainer_casePicture .casePicture_circle img {
  width: 100%;
  height: 100%;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .casePicture_title {
  width: 100%;
  min-height: 50px;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #34db90;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .casePicture_name {
  width: 100%;
  min-height: 25px;
  font-size: 1rem;
  padding: 0 10px;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .casePicture_commentaire {
  width: 100%;
  min-height: 100px;
  padding: 0 10px;
  font-size: 1.1rem;
  margin-top: 20px;
  color: #2f3a44;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .casePicture_stars {
  width: 100%;
  height: 40px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section_confiance .section_confianceContainer .carousel .section_confianceContainer_case .casePicture_stars img {
  width: 100px;
  height: 40px;
}

.section_confiance .section_confianceContainer .section_confianceContainer_case:first-child {
  margin-left: 0;
}

.section_right {
  width: 100%;
  height: 100%;
  padding-top: 50px;
  position: relative;
}

.section_right .right_formulaire {
  width: 100%;
  height: 450px;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  background-color: #fff;
  border: 2px solid #fac04b;
  border-radius: 10px;
  overflow: hidden;
}

.section_right .right_formulaire .formulaire_head {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fac04b;
  color: #17183e;
}

.section_right .right_formulaire .formulaire_head .formulaire_headTitle {
  width: 100%;
  padding: 0 10px;
  text-align: center;
  height: 100%;
}

.section_right .right_formulaire .formulaire_body {
  width: 100%;
  height: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section_right .right_formulaire .formulaire_body .formulaire_bodyTitle {
  height: 80px;
  width: 100%;
  padding: 0 10px;
  font-size: 1.5rem;
  text-align: center;
  color: #17183e;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape {
  width: 100%;
  height: auto;
  padding: 20px 10px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container {
  width: 100%;
  height: 200px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape1_title {
  width: 100%;
  min-height: 30px;
  font-size: 1.2rem;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape3_containerSelect {
  width: 100%;
  height: 80px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape3_containerSelect .etape3_departement {
  width: 100%;
  height: 40px;
  margin-top: 40px;
  font-size: 1rem;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape3_containerSelect_erreur {
  background-color: #ff9898;
  border: 1px solid #ff7e7e;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape1_contains {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 49% 49%;
  gap: 10px;
  grid-auto-flow: column;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape1_contains .etape1_case {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 0 10px rgba(43, 90, 160, 0.35);
          box-shadow: 0 0 10px rgba(43, 90, 160, 0.35);
  border-radius: 5px;
  cursor: pointer;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape1_contains .etape1_case .etape1_caseTitle {
  width: 100%;
  height: 50px;
  font-size: 1rem;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape1_contains .etape1_case .etape1_caseImage {
  width: 100%;
  height: 100%;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape1_contains .etape1_case .etape1_caseImage img {
  width: 80px;
  height: 80px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape1 .etape1_contains .etape1_case:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  border: 3px solid #83bd48;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 15px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc {
  width: 100%;
  min-height: 40%;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc .etape4_blocTitle {
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc .etape4_blocInput {
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc .etape4_blocInput input {
  width: 100%;
  height: 35px;
  border: none;
  -webkit-box-shadow: inset 0px 2px 6px 0px #cbc9c9;
          box-shadow: inset 0px 2px 6px 0px #cbc9c9;
  padding-left: 5px;
  font-size: 1rem;
  border-radius: 5px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc .etape4_blocInput .input_svg {
  width: 40px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc .etape4_blocInput .erreur_input {
  background-color: #ff9898;
  border: 1px solid #ff7e7e;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc .etape4_blocInput .valide_input {
  border: 2px solid #93ff7e;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape4_bloc .etape4_blocInput .erreur_message {
  color: red;
  margin: 2px 0 10px 0;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_flashText {
  width: 100%;
  height: 50px;
  color: #61bd75;
  -webkit-animation: text-zoom 1s linear infinite;
          animation: text-zoom 1s linear infinite;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_title {
  width: 100%;
  height: 30px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_blocInput {
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: 5px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_blocInput input {
  width: 100%;
  height: 35px;
  border: none;
  -webkit-box-shadow: inset 0px 2px 6px 0px #cbc9c9;
          box-shadow: inset 0px 2px 6px 0px #cbc9c9;
  padding-left: 5px;
  font-size: 1rem;
  border-radius: 5px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_blocInput .input_svg {
  width: 40px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_blocInput .erreur_input {
  background-color: #ff9898;
  border: 1px solid #ff7e7e;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_blocInput .valide_input {
  border: 2px solid #93ff7e;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape4 .etape5_blocInput .erreur_message {
  color: red;
  margin: 2px 0 10px 0;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_load {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_load .etape_loadSvg {
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_load .etape_loadSvg svg {
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_load .etape_loadTitle {
  width: 100%;
  min-height: 40px;
  text-align: center;
  color: #17183e;
  font-size: 1rem;
  padding: 0 10px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_end {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.1rem;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_end .etape_endTitle {
  width: 100%;
  height: 75px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0cb231;
  margin-bottom: 65px;
  font-size: 1.2rem;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_end .etape_endDetail1 {
  width: 100%;
  height: 80px;
  text-align: center;
  color: #003565;
  margin-bottom: 60px;
  margin-top: 20px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_end .etape_endDesc {
  width: 100%;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #003565;
  -webkit-animation: text-zoom-deux 1s linear infinite;
          animation: text-zoom-deux 1s linear infinite;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_button {
  width: 100%;
  height: 70px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_button button {
  width: 100%;
  height: 45px;
  border: 1px solid #0cb231;
  background-color: #0cb231;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 5px;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_button button:hover {
  background-color: #0c8125;
  cursor: pointer;
}

.section_right .right_formulaire .formulaire_body .formulaire_body_etape .etape_container .etape_button button:disabled {
  cursor: default;
  background-color: #b7e9b7;
  border: 1px solid #c2f7c2;
}

footer {
  width: 100%;
  height: 440px;
  margin-top: 70px;
  background-color: #eff2f5;
}

footer .footer_container {
  width: 900px;
  height: 100%;
}

footer .footer_container .footer_image {
  width: 100%;
  height: 120px;
  margin-top: 20px;
}

footer .footer_container .footer_image img {
  width: 100%;
  height: 100%;
}

footer .footer_container .footer_desc {
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 20px;
  color: #959595;
}

footer .footer_container .footer_menu {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer_container .footer_menu a {
  text-decoration: none;
  font-size: 0.8rem;
  margin: 0 25px;
  color: #363636;
}

footer .footer_container .footer_menu a:hover {
  text-decoration: underline;
}

footer .footer_container .footer_copy {
  width: 100%;
  height: 60px;
  color: #959595;
}

.section_mentions {
  width: 100%;
  min-height: 100vh;
  height: auto;
}

.section_mentions .section_mentions_container {
  width: 900px;
  height: 100%;
  padding: 40px 0;
  margin-bottom: 50px;
}

.section_mentions .section_mentions_container .section_mentions_title {
  font-size: 2rem;
}

.section_mentions .section_mentions_container .section_mentions_para {
  width: 100%;
  height: auto;
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.section_mentions .section_mentions_container .section_mentions_lit_title {
  font-size: 1.2rem;
  margin: 2px 0;
}

.section_mentions .section_mentions_container .section_mentions_clear {
  height: 20px;
  width: 100%;
}

.section_confidentialite {
  width: 100%;
  min-height: 100vh;
  height: auto;
}

.section_confidentialite .section_confidentialite_container {
  width: 900px;
  height: 100%;
  padding: 40px 0;
  margin-bottom: 50px;
  text-align: center;
}

.section_confidentialite .section_confidentialite_container .section_confidentialite_title {
  text-decoration: underline;
  width: 100%;
  height: auto;
}

.section_confidentialite .section_confidentialite_container .section_confidentialite_para {
  width: 100%;
  height: auto;
  margin: 20px 0;
}

.section_confiance .button_endFormulaire{
  width: 100%;
  height: 100px;
  display: none;
}
.section_confiance .button_endFormulaire a{
  width: auto;
  height: auto;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 10px;
  background-color: #0cb231;
  color: #fff;
  cursor: pointer;
}
.section_confiance .button_endFormulaire a svg{
  margin-right: 5px;
}

@-webkit-keyframes text-zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes text-zoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes cli {
  0% {
    border: 2px solid transparent;
  }
  100% {
    border: 2px solid #fac04b;
  }
}

@-webkit-keyframes text-zoom-deux {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes text-zoom-deux {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media (max-width: 321px) {
  .section_right {
    top: 540px !important;
  }
  .section_reseau {
    height: 370px;
  }
  .section_confiance .section_confianceContainer .carousel .section_confianceContainer_case {
    width: 250px !important;
  }
  .section_right .right_formulaire {
    animation: cli 1s linear infinite;
  }
  .section_confiance .button_endFormulaire{
    display: flex;
  }
}

@media (min-width: 322px) and (max-width: 451px) {
  .section_right {
    top: 510px !important;
  }
  .section_right .right_formulaire {
    animation: cli 1s linear infinite;
  }
  .section_confiance .button_endFormulaire{
    display: flex;
  }
}

@media (min-width: 451px) and (max-width: 500px) {
  .section_right {
    top: 480px !important;
  }
  .section_right .right_formulaire {
    animation: cli 1s linear infinite;
  }
  .section_confiance .button_endFormulaire{
    display: flex;
  }
}

@media (min-width: 501px) and (max-width: 538px) {
  .section_right {
    top: 460px !important;
  }
  .section_right .right_formulaire {
    animation: cli 1s linear infinite;
  }
  .section_confiance .button_endFormulaire{
    display: flex;
  }
}

@media (min-width: 539px) and (max-width: 700px) {
  .section_right {
    top: 460px !important;
  }
  .left_header .left_header_image {
    background: none !important;
  }
  .left_header .left_header_image img {
    display: block !important;
  }
  .section_confiance .button_endFormulaire{
    display: flex;
  }
}

@media (min-width: 701px) and (max-width: 999px) {
  .left_header .left_header_image {
    background: none !important;
  }
  .left_header .left_header_image img {
    display: block !important;
  }
  .section_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 445px !important;
  }
  .section_right .right_formulaire {
    max-width: 700px !important;
  }
  .section_quality .quality_containerCase {
    display: -ms-grid !important;
    display: grid !important;
  }
  .section_normes {
    min-height: 140px !important;
  }
  .section_normes .section_normes_containerImages {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .section_article .section_articleContainer {
    display: -ms-grid !important;
    display: grid !important;
  }
  .section_confiance .button_endFormulaire{
    display: flex;
  }
}

@media (max-width: 1000px) {
  .section_underHeader .unerHeader_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .section_underHeader .unerHeader_container .section_left {
    padding: 0 10px;
  }
  footer {
    height: auto;
  }
  footer .footer_container {
    padding: 0 10px;
  }
  footer .footer_container .footer_image {
    height: auto;
  }
  footer .footer_container .footer_desc {
    height: auto;
    margin-bottom: 20px;
  }
  footer .footer_container .footer_menu a {
    margin: 0 15px;
  }
  footer .footer_container .footer_copy {
    font-size: 0.9rem;
  }
  .left_header .left_header_title {
    min-height: 70px;
    height: auto;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .left_header .left_header_bigTitle {
    height: auto;
    font-size: 1.6rem;
    margin-bottom: 23px;
  }
  .left_header .left_header_image {
    background: url("../images/image_head.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: -250px;
  }
  .left_header .left_header_image img {
    display: none;
  }
  .section_quality {
    margin-top: 450px;
  }
  .section_quality .quality_title {
    height: auto;
    margin-top: 40px;
  }
  .section_quality .quality_underTitle {
    height: auto;
    text-align: center;
    font-size: 1.2rem;
  }
  .section_quality .quality_containerCase {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section_quality .quality_containerCase .quality_containerCase_case {
    height: auto;
  }
  .section_quality .quality_containerCase .quality_containerCase_case .quality_containerCase_caseText {
    min-height: 60px;
  }
  .section_reseau {
    background: none;
    background-color: #f5f5f5;
  }
  .section_reseau .section_reseauPara {
    width: 100%;
  }
  .section_reseau .section_reseauPara .section_reseauPara_title {
    height: auto;
    font-size: 1.5rem;
    padding: 20px 0;
  }
  .section_reseau .section_reseauPara .section_reseauPara_title2 {
    height: auto;
    font-size: 1.4rem;
    padding: 10px 0 20px 0;
  }
  .section_reseau .section_reseauPara .section_reseauPara_title3 {
    font-size: 1.2rem;
    height: auto;
  }
  .section_normes {
    min-height: 200px;
    height: auto;
  }
  .section_normes .section_normesTitle {
    height: auto;
    padding: 15px 0;
  }
  .section_normes .section_normes_containerImages {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[1];
        grid-template-rows: repeat(1, 1fr);
    grid-gap: 10px;
    height: auto;
    margin-bottom: 15px;
  }
  .section_normes .section_normes_containerImages .section_normes_containerImagesCase {
    width: 100%;
  }
  .section_article .section_articleContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_right {
    position: absolute;
    top: 510px;
    height: auto;
    padding: 10px;
  }
  .section_right .right_formulaire {
    display: block;
  }
  header .header_container .header_title{
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=style.css.map */