@charset "UTF-8";
body header {
  background-color: #25305e;
  height: 19vh;
  padding-bottom: 15px;
  padding-top: 15px;
}
body header .row {
  height: 100%;
}
body header .row .row.logo.col-2 {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 5%;
}
body header .row .row.logo.col-2 a, body header .row .row.logo.col-2 img {
  width: 10vw;
  height: 10vw;
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
}
body header .row .col-8 {
  display: flex;
  align-items: center;
}
body header .row .col-8 .nav {
  width: 100%;
}
body header .row .col-8 .nav nav {
  text-align: center;
  width: 100%;
}
body header .row .col-8 .nav nav ul {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}
body header .row .col-8 .nav nav ul li {
  text-align: center;
  width: 25%;
}
body header .row .col-8 .nav nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 30px;
  display: inline-block;
  text-align: center;
}
body header .row .col-8 .nav nav ul li a:hover {
  color: rgb(6, 10, 24);
}
body header .row .col-2.reseaux {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body header .row .col-2.reseaux a {
  display: flex;
  height: 100%;
  align-items: center;
}
body header .row .col-2.reseaux a img {
  height: 100%;
  max-height: 50px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 992px) {
  body header {
    height: auto;
  }
  body header .main-nav {
    display: none;
  }
  body header #burger-icon {
    display: block;
  }
  body header #burger-icon {
    z-index: 10000;
  }
  body header #mobile-menu {
    z-index: 9999;
  }
  body header .row {
    flex-direction: column;
    align-items: stretch;
  }
  body header .row .row.logo.col-2 {
    width: 100%;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 10px;
  }
  body header .row .row.logo.col-2 a, body header .row .row.logo.col-2 img {
    margin: 0 auto;
    width: 30vw;
    height: 30vw;
    max-width: 120px;
    max-height: 120px;
  }
  body header .row .col-8, body header .row .col-2.reseaux {
    display: none;
  }
  body header .row .burger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 20px;
    padding-left: 25px;
  }
  body header .row .burger-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
  }
  body header .row .burger-icon span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  body header .row .mobile-menu {
    display: none;
    flex-direction: column;
    background: #25305e;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 1000;
    padding-bottom: 20px;
  }
  body header .row .mobile-menu.open {
    display: flex;
  }
  body header .row .mobile-menu ul.nav {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  body header .row .mobile-menu ul.nav li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  body header .row .mobile-menu ul.nav li a {
    color: white;
    font-size: 20px;
  }
  body header .row .mobile-menu ul.nav li a:hover {
    color: black;
  }
  body header .row .mobile-menu .reseaux {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 32px;
  }
  body header .row .mobile-menu .reseaux a img {
    min-width: 100px;
    max-height: 40px;
    max-width: 40px;
  }
}
@media (min-width: 992px) {
  body .main-nav {
    display: flex;
  }
  body #burger-icon, body #mobile-menu {
    display: none;
  }
  body .burger-menu.mobile-menu {
    display: none !important;
  }
}

body footer {
  background-color: #25305e;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 100px;
}
body footer .container .row .col-md-4.text1 p {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}
body footer .container .row .col-md-4.text2 p {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}
body footer .container .row .col-md-4.text3 p {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}
body footer .container hr {
  border: 1.5px solid #ffffff;
  background-color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
}
body footer .container p {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

body .container .titre_accueil h1 {
  color: #25305e;
  font-size: 70px;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 100px;
}
body .container .presentation_accueil {
  padding-bottom: 70px;
  position: relative;
  margin-bottom: 90px;
}
body .container .presentation_accueil::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/logoFond.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}
body .container .presentation_accueil h2 {
  padding-bottom: 20px;
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
  padding-top: 50px;
  z-index: 2;
  position: relative;
}
body .container .presentation_accueil h2 label {
  color: #25305e;
}
body .container .presentation_accueil p {
  position: relative;
  z-index: 2;
}
body .container .presentation_accueil p {
  color: #000000;
  font-size: 25px;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
}
body .container hr {
  border: 1.5px solid #25305e;
  background-color: #25305e;
  margin-top: 20px;
  margin-bottom: 100px;
  opacity: 1 !important;
}
body .container .formations_accueil {
  padding-bottom: 70px;
}
body .container .formations_accueil h2 {
  padding-bottom: 40px;
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
}
body .container .formations_accueil .row .col-md-4.formation1 .formation1 {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
  padding-top: 10px;
  border-radius: 10px;
}
body .container .formations_accueil .row .col-md-4.formation1 .formation1:hover {
  transform: scale(1.1);
}
body .container .formations_accueil .row .col-md-4.formation1 .formation1 img {
  height: 140px;
  width: 96%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 5px;
}
body .container .formations_accueil .row .col-md-4.formation1 .formation1 h3 {
  color: #25305e;
  font-size: 23px;
  margin-top: 10px;
  margin-left: 2%;
}
body .container .formations_accueil .row .col-md-4.formation1 .formation1 p {
  color: #000000;
  font-size: 16px;
  margin-left: 2%;
  padding-bottom: 20px;
}
body .container .formations_accueil .row .col-md-4.formation1 a {
  color: #25305e;
}
body .container .formations_accueil .row .col-md-4.formation1 a:hover {
  color: rgb(6, 10, 24);
}
body .container .formations_accueil .row .col-md-4.formation2 .formation2 {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
  padding-top: 10px;
  border-radius: 10px;
}
body .container .formations_accueil .row .col-md-4.formation2 .formation2:hover {
  transform: scale(1.1);
}
body .container .formations_accueil .row .col-md-4.formation2 .formation2 img {
  height: 140px;
  width: 96%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 5px;
}
body .container .formations_accueil .row .col-md-4.formation2 .formation2 h3 {
  color: #25305e;
  font-size: 23px;
  margin-top: 10px;
  margin-left: 2%;
}
body .container .formations_accueil .row .col-md-4.formation2 .formation2 p {
  color: #000000;
  font-size: 16px;
  margin-left: 2%;
  padding-bottom: 20px;
}
body .container .formations_accueil .row .col-md-4.formation2 a {
  color: #25305e;
}
body .container .formations_accueil .row .col-md-4.formation2 a:hover {
  color: rgb(6, 10, 24);
}
body .container .formations_accueil .row .col-md-4.formation3 .formation3 {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
  padding-top: 10px;
  border-radius: 10px;
}
body .container .formations_accueil .row .col-md-4.formation3 .formation3:hover {
  transform: scale(1.1);
}
body .container .formations_accueil .row .col-md-4.formation3 .formation3 img {
  height: 140px;
  width: 96%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 5px;
}
body .container .formations_accueil .row .col-md-4.formation3 .formation3 h3 {
  color: #25305e;
  font-size: 23px;
  margin-top: 10px;
  margin-left: 2%;
}
body .container .formations_accueil .row .col-md-4.formation3 .formation3 p {
  color: #000000;
  font-size: 16px;
  margin-left: 2%;
  padding-bottom: 20px;
}
body .container .formations_accueil .row .col-md-4.formation3 a {
  color: #25305e;
}
body .container .formations_accueil .row .col-md-4.formation3 a:hover {
  color: rgb(6, 10, 24);
}
body .container .formations_accueil a.details_accueil.col-12 {
  color: #25305e;
  font-size: 26px;
  text-align: center;
  width: 100%;
  display: block;
  padding-top: 70px;
}
body .container .formations_accueil a.details_accueil.col-12:hover {
  color: rgb(6, 10, 24);
}
body .container .formateur_accueil {
  margin-bottom: 100px;
}
body .container .formateur_accueil h2 {
  padding-bottom: 20px;
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
body .container .formateur_accueil img {
  border-radius: 100px;
  display: block;
  margin: 0 auto;
}
body .container .formateur_accueil h3 {
  color: #25305e;
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
body .container .formateur_accueil p {
  color: #000000;
  font-size: 24px;
  text-align: center;
  margin-top: 20px;
}
body .container .formateur_accueil p label {
  color: #25305e;
}
body .container .actualites_accueil h2 {
  padding-bottom: 20px;
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
}
body .container .actualites_accueil .row {
  display: flex;
  align-items: flex-start;
}
body .container .actualites_accueil .row .actualite {
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .container .actualites_accueil .row .actualite img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
body .container .actualites_accueil .row .actualite h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 10px;
}
body .container .actualites_accueil .row .actualite .description {
  display: none;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #333;
  border-top: 1px solid #eee;
}
body .container .actualites_accueil .row .actualite .description .date {
  margin-top: 20px;
}
body .container .actualites_accueil .row .actualite .description a {
  font-size: 15px;
  text-align: start;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
body .container .actualites_accueil .row .actualite .toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 10px;
  font-weight: bold;
  color: #1a237e;
  cursor: pointer;
  border-top: solid 1px #ddd;
}
body .container .actualites_accueil .row .actualite .toggle .arrow {
  transition: transform 0.3s ease;
}
body .container .actualites_accueil .row .actualite .toggle:hover {
  background-color: #e0e0e0;
}
body .container .actualites_accueil .row .actualite.open .description {
  display: block;
}
body .container .actualites_accueil .row .actualite.open .arrow {
  transform: rotate(180deg);
}
body .container .actualites_accueil .row .actualite .toggle:hover {
  background-color: #e0e0e0;
}
body .container .actualites_accueil .row a {
  color: #25305e;
  font-size: 26px;
  text-align: center;
  width: 100%;
  display: block;
  padding-top: 70px;
  margin-bottom: 80px;
}
body .container .actualites_accueil .row a:hover {
  color: rgb(6, 10, 24);
}
body .container .contact_accueil a, body .container .contact_accueil h2 {
  padding-bottom: 20px;
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
  color: #25305e;
}
body .container .contact_accueil a:hover, body .container .contact_accueil h2:hover {
  color: rgb(6, 10, 24);
}

body h1 {
  margin-top: 170px !important;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
body p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
body .alert-success, body .alert-danger {
  width: 100%;
  margin: 40px auto 30px auto;
  background: #e6f9ec !important;
  color: #217a3a !important;
  border: 1px solid #b7e4c7 !important;
  border-radius: 12px !important;
  padding: 16px 32px !important;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: block;
}
body .alert-danger {
  background: #ffeaea !important;
  color: #a32121 !important;
  border: 1px solid #e4b7b7 !important;
}
body .container button#scrollToTop {
  position: fixed;
  bottom: 80px;
  right: 60px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #25305e;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;
}
body .container button#scrollToTop:hover {
  background-color: #39446f;
}

body .container .titre_actualites h1 {
  color: #25305e;
  font-size: 70px;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 100px;
}
body .container .annee h2 {
  padding-bottom: 20px;
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
  padding-top: 50px;
  z-index: 2;
  position: relative;
}
body .container .month-row {
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
}
body .container .timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #25305e;
  z-index: 0;
}
body .container .timeline-base {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #25305e;
  z-index: 0;
}
body .container .timeline-month-row {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}
body .container .timeline-container {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
body .container .timeline-container {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
body .container .month-banner {
  position: relative;
  width: 100%;
  min-height: 48px;
  margin-bottom: 20px;
  background-image: linear-gradient(to right, #25305e 0%, #25305e 100%);
  background-repeat: no-repeat;
  background-position: 0 60%;
  background-size: 100% 4px;
  display: flex;
  align-items: flex-start;
}
body .container .month-banner h3 {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(37, 48, 94, 0.08);
  padding: 2px 30px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #25305e;
  font-weight: 700;
  top: 10px;
  outline: 4px solid #25305e;
}
body .container .timeline-bar-container {
  position: relative;
  height: 80px;
  margin-bottom: 10px;
}
body .container .timeline-bar-container .month-banner {
  position: absolute;
  top: 0;
  margin-bottom: 0;
}
body .container .timeline-month-row .month-banner {
  position: relative;
  margin-bottom: 65px;
}
body .container .row.g-4 {
  display: flex;
  align-items: flex-start;
}
body .container .row.g-4 .actualite {
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .container .row.g-4 .actualite img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
body .container .row.g-4 .actualite h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 10px;
}
body .container .row.g-4 .actualite .description {
  display: none;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #333;
  border-top: 1px solid #eee;
}
body .container .row.g-4 .actualite .toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 10px;
  font-weight: bold;
  color: #1a237e;
  cursor: pointer;
  border-top: solid 1px #ddd;
}
body .container .row.g-4 .actualite .toggle .arrow {
  transition: transform 0.3s ease;
}
body .container .row.g-4 .actualite .toggle:hover {
  background-color: #e0e0e0;
}
body .container .row.g-4 .actualite.open .description {
  display: block;
}
body .container .row.g-4 .actualite.open .arrow {
  transform: rotate(180deg);
}
body .container .row.g-4 .actualite .toggle:hover {
  background-color: #e0e0e0;
}
body .container .row.g-4 a.lien {
  color: #25305e;
  text-decoration: underline;
  cursor: pointer;
}
body .container .row.g-4 a.lien:hover {
  color: rgb(6, 10, 24);
}

body .banniere_actuExemple {
  height: 800px;
  overflow: hidden;
  position: relative;
  content: "";
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
  margin-bottom: 20px;
}
body .banniere_actuExemple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body .banniere_actuExemple .banniere_contenu {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 1rem;
}
body .container nav {
  margin-bottom: 50px;
}
body .container .text_actuExemple .description {
  margin-bottom: 50px;
}
body .container .text_actuExemple a {
  color: #25305e;
  font-size: 25px;
  padding-top: 50px;
}

body .container .titre_formation h1 {
  color: #25305e;
  font-size: 70px;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 100px;
}
body .container .presentation_formation .col-md-12.formation-item {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  padding: 20px;
  padding-bottom: 30px;
  border-radius: 15px;
}
body .container .presentation_formation .col-md-12.formation-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
  transition: all 0.3s ease;
}
body .container .presentation_formation .col-md-12.formation-item h2 {
  color: #25305e;
  font-size: 30px;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 20px;
}
body .container .presentation_formation .col-md-12.formation-item img {
  height: 380px;
  width: 100%;
  scale: 1.034;
  object-fit: cover;
  margin-bottom: 50px;
}
body .container .presentation_formation .col-md-12.formation-item .description {
  font-size: 20px;
  text-align: center;
  padding-left: 60px;
  padding-right: 60px;
}
body .container .presentation_formation .col-md-12.formation-item .description p {
  margin-bottom: 40px;
}
body .container .presentation_formation .col-md-12.formation-item .formation-details hr {
  border: 1px solid #e0e0e0;
  margin-top: 65px;
  margin-bottom: 30px;
  scale: 1.034;
}
body .container .presentation_formation .col-md-12.formation-item .formation-details .row {
  display: flex;
  align-items: center;
  margin-left: 50px;
  margin-right: 50px;
}
body .container .presentation_formation .col-md-12.formation-item .formation-details .row .logo img {
  height: 50px;
  width: 50px;
  margin: auto 0;
}
body .container .presentation_formation .col-md-12.formation-item .formation-details .row .détails {
  font-size: 30px;
}
body .container .presentation_formation .lien {
  margin-bottom: 100px;
}
body .container .presentation_formation .lien a {
  font-size: 25px;
  color: #25305e;
  text-decoration: underline;
  cursor: pointer;
}
body .container .presentation_formation .lien a:hover {
  color: #000000;
}

body .container .titre_contact h1 {
  color: #25305e;
  font-size: 70px;
  text-align: center;
  margin-top: 50px;
  padding-bottom: 100px;
}
body .container form {
  outline: 5px solid #25305e;
  padding: 80px;
  margin-bottom: 100px;
  border-radius: 3px;
  box-shadow: 9px 9px 5px rgba(0, 0, 0, 0.2);
}
body .container form .row .col-12.email {
  display: flex;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100%;
}
body .container form .row .col-12.email label {
  text-align: center;
  font-size: 25px;
  color: #25305e;
  margin-bottom: 20px;
}
body .container form .row .col-12.email input {
  height: 50px;
  border: 3px solid #e2e2e2;
  border-radius: 5px;
  margin-bottom: 50px;
}
body .container form .row .col-12.telephone {
  display: flex;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100%;
}
body .container form .row .col-12.telephone label {
  text-align: center;
  font-size: 25px;
  color: #25305e;
  margin-bottom: 20px;
}
body .container form .row .col-12.telephone input {
  height: 50px;
  border: 3px solid #e2e2e2;
  border-radius: 5px;
  margin-bottom: 50px;
}
body .container form .row .col-6.nom {
  display: flex;
  flex-direction: column !important;
  align-items: stretch !important;
}
body .container form .row .col-6.nom label {
  text-align: center;
  font-size: 25px;
  color: #25305e;
  margin-bottom: 20px;
}
body .container form .row .col-6.nom input {
  height: 50px;
  border: 3px solid #e2e2e2;
  border-radius: 5px;
  margin-bottom: 50px;
}
body .container form .row .col-6.prenom {
  display: flex;
  flex-direction: column !important;
  align-items: stretch !important;
}
body .container form .row .col-6.prenom label {
  text-align: center;
  font-size: 25px;
  color: #25305e;
  margin-bottom: 20px;
}
body .container form .row .col-6.prenom input {
  height: 50px;
  border: 3px solid #e2e2e2;
  border-radius: 5px;
  margin-bottom: 50px;
}
body .container form .row .col-12.message {
  display: flex;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100%;
}
body .container form .row .col-12.message label {
  text-align: center;
  font-size: 25px;
  color: #25305e;
  margin-bottom: 20px;
}
body .container form .row .col-12.message textarea {
  height: 200px;
  border: 3px solid #e2e2e2;
  border-radius: 5px;
  margin-bottom: 50px;
}
body .container form .row .col-12.fichier {
  display: flex;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100%;
}
body .container form .row .col-12.fichier label {
  text-align: center;
  font-size: 25px;
  color: #25305e;
  margin-bottom: 20px;
}
body .container form .row .col-12.fichier input::file-selector-button {
  width: 100%;
  background: none;
  border: 2px solid #e2e2e2;
  font-size: 25px;
  cursor: pointer;
  border-radius: 3px;
}
body .container form .row .col-12.fichier input::file-selector-button:hover {
  background-color: #dbdbdb;
  border: 2px solid #b7b7b7;
}
body .container form .cgu {
  margin-top: 40px;
  margin-bottom: 40px;
}
body .container form .cgu input {
  height: 20px;
  width: 20px;
}
body .container form .cgu label {
  font-size: 20px;
  color: #25305e;
  padding-left: 20px;
}
body .container form button.envoyer {
  background-color: #25305e;
  color: white;
  width: 200px;
  height: 70px;
  border: none;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  font-size: 25px;
}
body .container form button.envoyer:hover {
  background-color: white;
  border: 2px solid #25305e;
  color: #25305e;
}
body .container .row.contact_info {
  margin-bottom: 70px;
}
body .container .row.contact_info .col-md-4 h2 {
  color: #25305e;
}
body .container .map h2 {
  color: #25305e;
}
body .container .map iframe {
  width: 100%;
  height: 440px;
  border-radius: 15px;
}
body .container .flash-contact-custom {
  max-width: 700px;
  margin: 40px auto 30px auto;
  text-align: center;
}
body .container .custom-alert {
  display: inline-flex;
  align-items: center;
  background: #e6f9ec;
  color: #217a3a;
  border: 1px solid #b7e4c7;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  margin-bottom: 0;
  margin-top: 0;
  transition: all 0.3s;
}
body .container .custom-alert-icon {
  font-size: 1.4em;
  margin-right: 12px;
}
body .container .custom-alert-text {
  display: inline-block;
}
body .container .confirmation-custom {
  max-width: 900px;
  margin: 0 auto 50px auto;
  background: #e6f9ec;
  color: #217a3a;
  border: 1px solid #b7e4c7;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
body .container .confirmation-custom-text {
  color: #217a3a;
  margin: 0;
  font-size: 1.125rem;
}

body.container, form.row.col-12.telephone, input {
  width: 100%;
}

.iti--allow-dropdown.iti--show-flags.iti--inline-dropdown {
  width: 100%;
}

.iti {
  width: 100%;
  margin-bottom: 50px;
}

.iti__flag-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.iti__selected-flag {
  display: flex;
  align-items: center;
  height: 100%;
}

.form-control-telephone {
  padding-left: 58px !important; /* espace pour le drapeau */
  height: 38px;
  display: block;
  margin-bottom: 0;
}

.iti input.iti__tel-input {
  height: 38px;
  line-height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

body .banniere_formationExemple {
  height: 800px;
  overflow: hidden;
  position: relative;
  content: "";
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 1;
  margin-bottom: 20px;
}
body .banniere_formationExemple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body .container .titre_formationExemple h1 {
  text-align: center;
  color: #25305e;
  margin-bottom: 100px;
}
body .container .text_formationExemple p {
  font-size: 20px;
}
body .container .details_formationExemple {
  margin-top: 100px;
}
body .container .details_formationExemple .row {
  width: 100%;
}
body .container .details_formationExemple .row .details {
  margin-top: 35px;
  margin-bottom: 35px;
  text-align: center;
  font-size: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .container .details_formationExemple .row .logo {
  margin-top: 35px;
  margin-bottom: 35px;
}
body .container .details_formationExemple .row .logo img {
  display: block;
  margin: auto;
  width: 80px;
  height: 80px;
}
body .container a.formation_lien {
  margin-top: 70px;
  color: #25305e;
  font-size: 30px;
  text-align: center;
  width: 100%;
  display: block;
}
body .container a.formation_lien:hover {
  color: #000000;
}

body .container .login h1 {
  text-align: center;
  color: #25305e;
}
body .container .login form {
  margin-top: 100px;
}
body .container .login form .mb-3 .btn {
  background-color: #25305e;
  color: white;
  margin-left: 20px;
}
body .container .login form .mb-3 .btn:hover {
  background-color: white;
  border: #25305e 1px solid;
  color: #25305e;
}
body .container .login form h2 {
  margin-top: 90px;
  text-align: center;
  color: #25305e;
  margin-bottom: 50px !important;
  font-size: 40px;
}
body .container .login form label {
  text-align: center;
  font-size: 30px;
  padding-bottom: 20px;
  width: 100%;
}
body .container .login form input {
  height: 60px;
  margin-bottom: 40px;
}
body .container .login form .checkbox.mb-3 {
  width: 100%;
  margin-bottom: 50px !important;
}
body .container .login form .checkbox.mb-3 label {
  text-align: start;
  font-size: 15px;
  padding-bottom: none;
  width: auto;
  display: block;
  margin: 0 auto;
  text-align: center;
}
body .container .login form .checkbox.mb-3 input {
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}
body .container .login form button.btn.btn-lg.btn-primary {
  background-color: #25305e;
  color: white;
  display: block;
  margin: 0 auto;
  font-size: 25px;
}
body .container .login form button.btn.btn-lg.btn-primary:hover {
  background-color: white;
  border: #25305e 1px solid;
  color: #25305e;
}

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