@font-face {
  font-family: "OfficinaSans";
  src: url("../fonts/OfficinaSans-Book.otf");
  font-weight: normal;
}
@font-face {
  font-family: "OfficinaSans";
  src: url("../fonts/OfficinaSans-Bold.otf");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Thin";
  src: url("../fonts/HelveticaNeue_UltraLight.otf");
}
@font-face {
  font-family: "Helvetica Medium";
  src: url("../fonts/HelveticaNeue_Medium.otf");
}
@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeueLTStd-Lt.otf");
  font-weight: normal;
}
@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/HelveticaNeueLTStd-MdCn.otf");
  font-weight: bold;
}
@font-face {
  font-family: "BellGothicStd-Black";
  src: url("../fonts/BellGot0.otf");
  font-weight: bold;
}
body {
  background-image: url("../img/fond.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 100vh;
  font-family: "OfficinaSans";
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 500px) {
  body {
    background-size: cover;
    padding-bottom: 50px;
  }
}
body#body_home {
  background-size: 100% 100%;
}
body#body_home h1 {
  font-family: "Helvetica Medium", sans-serif;
}
@media screen and (max-width: 500px) {
  body #logo_cont {
    display: flex;
    justify-content: center;
  }
}
body #logo_cont:before {
  content: "";
  background-image: url("../img/logo_ecpv.svg");
  background-size: cover;
  width: 445px;
  height: 455px;
  position: absolute;
  top: 50px;
  left: 50px;
  opacity: 10%;
}
@media screen and (max-width: 500px) {
  body #logo_cont:before {
    width: 70vw;
    height: 71vw;
    left: 0;
    position: relative;
    top: 70px;
  }
}

.page_size {
  width: 1260px;
  max-width: 100%;
  position: relative;
  left: 50vw;
  transform: translateX(-50%);
}

h1 {
  font-family: "Helvetica Thin", sans-serif;
  font-size: 36px;
  margin-top: -15px;
}

h2, h3 {
  font-family: "Helvetica Thin", sans-serif;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
#header #burger_menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(44, 93, 112);
  z-index: 10;
  color: white;
}
@media screen and (max-width: 500px) {
  #header #burger_menu {
    padding-top: 30px;
  }
}
#header #burger_menu #burger_container {
  display: flex;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  box-sizing: border-box;
  height: 100%;
}
#header #burger_menu ul {
  padding: 0;
  line-height: 30px;
}
#header #burger_menu ul li {
  list-style: none;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  #header #burger_menu ul li {
    margin-bottom: 20px;
  }
}
#header #burger_menu ul li a {
  color: white;
  font-family: "Helvetica Medium", sans-serif;
  text-decoration: none;
  font-size: 30px;
  position: relative;
}
@media screen and (max-width: 500px) {
  #header #burger_menu ul li a {
    font-size: 22px;
  }
}
#header #burger_menu ul li a:after {
  bottom: -3px;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  width: 0;
  background: white;
  transition-property: width;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}
#header #burger_menu ul li a:hover:after {
  left: 0;
  right: auto;
  width: 100%;
}
#header #burger_icon {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 45px;
  cursor: pointer;
}
#header #burger_close {
  display: none;
  position: absolute;
  top: 40px;
  left: 40px;
  width: 45px;
  z-index: 12;
  transform: rotate(45deg);
  cursor: pointer;
}
#header #btn_header {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: "HelveticaNeue";
  text-align: center;
  line-height: 16px;
  font-size: 17px;
  padding: 7px 24px 2px 25px;
}
#header #btn_header strong {
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  #header #btn_header {
    display: none;
  }
}

#b_header_mobile {
  display: none;
  position: fixed;
  bottom: 20px;
  right: -10px;
  font-family: "HelveticaNeue";
  text-align: center;
  line-height: 16px;
  font-size: 17px;
  padding: 7px 24px 2px 25px;
  z-index: 500;
}
#b_header_mobile strong {
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  #b_header_mobile {
    display: block;
  }
}

.btn {
  background-color: #e30613;
  color: white;
  border: 2px solid #e30613;
  padding: 10px 20px 5px 20px;
  border-radius: 70px;
  text-decoration: none;
  font-family: "Helvetica Medium", sans-serif;
  font-size: 20px;
  display: inline-block;
  font-weight: normal;
  transition: 0.3s;
  cursor: pointer;
}
.btn.btn_prev {
  padding-left: 40px;
  background-image: url("../img/prev.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: top 11px left 15px;
}
.btn.btn_prev:hover {
  background-image: url("../img/prev_red.svg");
}
.btn.btn_next {
  padding-right: 40px;
  background-image: url("../img/next.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: top 11px right 15px;
}
.btn.btn_next:hover {
  background-image: url("../img/next_red.svg");
}
.btn:hover {
  background-color: white;
  color: #e30613;
}
.btn.btn_secondary {
  background-color: white;
  border: 2px solid white;
  color: #e30613;
}
.btn.btn_secondary:hover {
  background: #e30613;
  color: white;
}

.btn + .btn {
  margin-top: 15px;
}

.plus img {
  width: 45px;
  transition: 0.3s;
}
.plus:hover img {
  transform: rotate(90deg);
}

.hero_section {
  color: white;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  .hero_section {
    background: none !important;
    margin: 0 !important;
  }
}
.hero_section h1 {
  text-transform: uppercase;
  font-size: 36px;
}
.hero_section h2 {
  text-transform: uppercase;
  font-size: 36px;
}
.hero_section p, .hero_section ul {
  font-size: 18px;
  line-height: 20px;
}
.hero_section p.home_welcome, .hero_section ul.home_welcome {
  font-family: "Helvetica Thin", sans-serif;
  font-size: 36px;
  margin-top: -15px;
}
.hero_section p a {
  color: white;
}
@media screen and (max-width: 500px) {
  .hero_section .hero_inside {
    width: 90% !important;
    box-sizing: border-box;
    text-align: center !important;
    padding: 60px 0 !important;
  }
  .hero_section .hero_inside h2 {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .hero_section .hero_inside p {
    width: 90% !important;
    text-align: center !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }
  .hero_section .hero_inside .plus {
    position: initial !important;
  }
}

#body_home #hero {
  background-image: url("../img/lignes_1.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top;
}
@media screen and (max-width: 500px) {
  #body_home #hero {
    padding-top: 0;
    margin-top: -100px !important;
  }
  #body_home #hero h1 {
    font-weight: normal;
    font-size: 28px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
#body_home #hero .hero_inside p {
  max-width: 410px;
  margin-left: 50px;
}
@media screen and (max-width: 500px) {
  #body_home #hero .hero_inside p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
#body_home #hero .hero_inside .plus {
  position: absolute;
  bottom: 50px;
  left: 430px;
}

#body_declaration #btn_header #body_declaration #btn_header_mobile {
  display: none;
}

#hero {
  position: relative;
}
#hero .hero_inside {
  padding-top: 155px;
  padding-bottom: 207px;
  width: 730px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 500px) {
  #hero .hero_inside {
    padding-top: 0;
    margin-top: -100px !important;
    padding-bottom: 0 !important;
  }
}
#hero .hero_inside p {
  max-width: 600px;
}

#hero2 {
  background-image: url("../img/lignes_2.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: -6px 290px;
}
#hero2 .hero_inside {
  padding-bottom: 283px;
  width: 770px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 500px) {
  #hero2 .hero_inside {
    width: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
#hero2 .hero_inside h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}
#hero2 .hero_inside p {
  display: inline-block;
  vertical-align: top;
  max-width: 280px;
  text-align: justify;
  margin-top: 0;
}
#hero2 .hero_inside .plus {
  position: absolute;
  bottom: 158px;
  left: 521px;
}

#hero3 {
  background-image: url("../img/lignes_3.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top;
  margin-right: -2px;
}
#hero3 .hero_inside {
  padding-top: 147px;
  padding-bottom: 289px;
  padding-right: 50px;
  width: 440px;
  margin: auto;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 500px) {
  #hero3 .hero_inside {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  #hero3 .hero_inside h2 {
    margin-top: 0 !important;
  }
}
#hero3 .hero_inside h2 {
  margin-top: 20px;
  margin-bottom: 30px;
}
#hero3 .hero_inside p {
  margin-top: 0px;
}
#hero3 .hero_inside .plus {
  position: absolute;
  top: 220px;
  right: -254px;
}

#hero4 {
  background-image: url("../img/lignes_4.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  margin-top: -2px;
  margin-left: 30px;
}
#hero4 .hero_inside {
  padding-top: 200px;
  padding-bottom: 100px;
  width: 1030px;
  margin: auto;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 500px) {
  #hero4 .hero_inside {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
#hero4 .hero_inside h2 {
  margin-top: -10px;
  margin-bottom: 18px;
  max-width: 520px;
  padding-left: 20px;
}
#hero4 .hero_inside p {
  margin-top: 0px;
  max-width: 460px;
}
#hero4 .hero_inside .plus {
  position: absolute;
  top: 161px;
  right: 96px;
}

#hero5 {
  background-image: url("../img/lignes_5.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -8px;
  box-sizing: border-box;
  max-width: 100%;
}
#hero5 .hero_inside {
  padding-top: 170px;
  padding-bottom: 155px;
  width: 370px;
  margin: auto;
  position: relative;
  text-align: left;
  padding-left: 100px;
}
@media screen and (max-width: 500px) {
  #hero5 .hero_inside {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  #hero5 .hero_inside h2 {
    margin-top: 0 !important;
  }
}
#hero5 .hero_inside h2 {
  margin-top: 40px;
  margin-bottom: 30px;
  max-width: 280px;
}
#hero5 .hero_inside p {
  margin-top: 0px;
  max-width: 380px;
}
#hero5 .hero_inside .plus {
  position: absolute;
  bottom: 80px;
  right: 92px;
}

#hero6 {
  background-image: url("../img/lignes_6.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top;
  margin-left: -6.5px;
  margin-top: -1px;
  box-sizing: border-box;
  max-width: 100%;
}
#hero6 .hero_inside {
  padding-top: 60px;
  padding-bottom: 199px;
  width: 700px;
  margin: auto;
  position: relative;
  text-align: left;
  padding-left: 150px;
}
@media screen and (max-width: 500px) {
  #hero6 .hero_inside {
    padding-top: 0 !important;
  }
  #hero6 .hero_inside h2 {
    margin-top: 0 !important;
  }
}
#hero6 .hero_inside h2 {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 520px;
}
#hero6 .hero_inside p {
  margin-top: 0px;
  max-width: 610px;
}
#hero6 .hero_inside p.hero6_cout {
  margin-top: 20px;
  position: relative;
}
#hero6 .hero_inside p.hero6_cout .btn {
  position: absolute;
  right: -200px;
  bottom: -10px;
}
@media screen and (max-width: 500px) {
  #hero6 .hero_inside p.hero6_cout .btn {
    display: none;
  }
}
#hero6 .hero_inside p.hero6_cout .btn:before {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: white;
  left: -120px;
  top: 18px;
  position: absolute;
}
#hero6 .hero_inside ul {
  padding-left: 15px;
}
#hero6 .hero_inside .plus {
  position: absolute;
  bottom: 110px;
  right: 45px;
}

.hero_single {
  background: none;
}

.decla_section {
  display: none;
}
.decla_section#decla1 {
  display: block;
}
.decla_section#decla1 p {
  text-align: left !important;
}

#declaform {
  display: none;
  margin-bottom: 50px;
  position: relative;
}
#declaform p em {
  margin-bottom: 25px;
  display: block;
}
#declaform p {
  margin-left: 0;
  margin-right: 0;
  width: 100% !important;
  text-align: left !important;
}
#declaform:before {
  display: block;
  content: "";
  width: calc((100% - 50px) / 2);
  height: 6px;
  background: #c21111;
  position: absolute;
  top: 0;
  border-radius: 2px;
  left: 25px;
  transition: 1s;
}

form {
  background: white;
  border-radius: 30px;
  padding: 50px;
  color: black;
}
@media screen and (max-width: 500px) {
  form {
    padding: 30px 20px;
  }
}
form label {
  width: 400px;
  display: block;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding-left: 3px;
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  form label {
    text-align: left;
  }
}
form input[type=text], form input[type=date], form input[type=email], form input[type=number], form #card-element, form textarea, form select {
  background: #eee;
  width: 400px;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  margin-bottom: 30px;
  border: 0;
  padding: 15px 20px;
  border-radius: 20px;
  font-size: 20px;
  font-family: "OfficinaSans";
}
form input[type=text] + .error, form input[type=date] + .error, form input[type=email] + .error, form input[type=number] + .error, form #card-element + .error, form textarea + .error, form select + .error {
  margin-top: -20px;
  margin-bottom: 30px;
  font-style: italic;
  padding: 5px;
  border-left: 5px solid #c21111;
}
@media screen and (max-width: 500px) {
  form input[type=text], form input[type=date], form input[type=email], form input[type=number], form #card-element, form textarea, form select {
    padding: 5px;
    width: 100%;
  }
}

#decla4 button {
  cursor: pointer;
}

#loader {
  width: 40px;
  position: relative;
  top: 15px;
  opacity: 0;
}
#loader.loader_show {
  opacity: 1;
}

.hero_success .btn {
  margin-top: 15px;
  margin-bottom: 15px;
}

#galerie_portraits {
  line-height: 0;
  -webkit-column-count: 3;
  -webkit-column-gap: 20px;
  -moz-column-count: 3;
  -moz-column-gap: 20px;
  column-count: 3;
  column-gap: 20px;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
}
#galerie_portraits img {
  width: 100% !important;
  height: auto !important;
  margin: 20px auto;
  border-radius: 5px;
}

@media (max-width: 800px) {
  #galerie_portraits {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}
@media (max-width: 400px) {
  #galerie_portraits {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
.alert {
  padding: 10px 20px;
  color: white;
  margin-bottom: 20px;
  border-radius: 10px;
}

.alert-danger {
  background: #841313;
}

.alert-success {
  background: #3a8602;
}

.plus_page, .plus_page_real, .faq_plus {
  width: 45px;
  transition: 0.3s;
  cursor: pointer;
}
.plus_page:hover, .plus_page_real:hover, .faq_plus:hover {
  transform: rotate(90deg);
}

.faq_plus {
  width: 30px;
  margin-top: -10px;
}

.reponse {
  display: none;
  margin-bottom: 40px;
}

.addendum {
  display: none;
}

#alert_paiement_echoue,
#alert_paiement_echoue2 {
  margin-top: 20px;
  display: none;
}
#alert_paiement_echoue p,
#alert_paiement_echoue2 p {
  max-width: 100% !important;
}
#alert_paiement_echoue p a,
#alert_paiement_echoue2 p a {
  margin-top: 20px;
}

#enquete_form p {
  margin-top: 30px;
}
#enquete_form p:first-child {
  margin-top: 0;
}
#enquete_form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 120px;
  box-sizing: border-box;
}
#enquete_form label {
  display: inline-block;
}

.hero_inside .slider {
  width: 710px;
  height: 300px;
  margin-bottom: 100px;
}
@media screen and (max-width: 500px) {
  .hero_inside .slider {
    width: 90%;
    height: auto;
    margin: auto;
    margin-bottom: 40px;
  }
}
.hero_inside .slider .flexslider {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}
.hero_inside .slider span {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  margin: 0 !important;
  text-align: center;
  font-size: 30px;
  padding: 10px 0;
}
.hero_inside .slider .flex-direction-nav a {
  padding-top: 10px;
}
.hero_inside .slider .flex-viewport {
  max-height: 350px;
}
.hero_inside .slider .slides li {
  overflow: hidden;
}
.hero_inside .slider .slides img {
  min-width: 100%;
  min-height: 100%;
}

#form_galerie .alert {
  display: none;
}
#form_galerie input[type=file] {
  display: none;
}
#form_galerie label {
  width: auto;
}
#form_galerie p {
  display: inline-block;
}
#form_galerie #choix_galerie {
  display: flex;
  justify-content: center;
  gap: 50px;
}
#form_galerie #webcam_galerie {
  display: none;
}
#form_galerie #webcam_galerie canvas {
  width: 100%;
}
#form_galerie #webcam_galerie #my_camera_container {
  position: relative;
  overflow: hidden;
}
#form_galerie #webcam_galerie #my_camera_container #loader_cont {
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0.6;
  display: none;
}
#form_galerie #webcam_galerie #my_camera_container #loader {
  position: absolute;
  z-index: 200;
  width: 41px;
  top: 46%;
  left: 46%;
  opacity: 1;
  display: none;
}
#form_galerie #webcam_galerie #my_camera {
  margin: auto;
  width: 640px;
  height: 0 !important;
  padding-bottom: 50.505%;
  border-radius: 15px;
}
#form_galerie #webcam_galerie #camera_bandeau {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  margin: 0 !important;
  text-align: center;
  font-size: 30px;
  padding: 10px 0;
  color: white;
}

#back_link {
  padding-top: 20px;
  font-size: 16px;
}
#back_link svg {
  position: relative;
  top: 2px;
  width: 20px;
}

.lignes_mobiles {
  display: none;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .lignes_mobiles {
    display: block;
  }
}

#ligne1 {
  margin-bottom: 25px;
}

#ligne3, #lignes5 {
  margin-top: -20px;
}

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