html {
  overflow: hidden;
  overflow-y: visible;
}

/****** Styles Générale ******/
body {
  margin: 0 auto;
  font-family: Helvetica, Arial, sans serif;
  font-size: 13px;
  background-color: #FFF;
}

*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }

@font-face {
  font-family: 'Aquatico';
  src: url('Aquatico-Regular.otf');
  src: local('Aquatico-Regular'), local('Aquatico-Regular'), url('Aquatico-Regular.otf') format('otf'), url('Aquatico-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Baloo2';
  src: url('Baloo2-Regular.otf');
  src: local('Baloo2-Regular'), local('Baloo2-Regular'), url('Baloo2-Regular.otf') format('otf'), url('Baloo2-Regular.ttf') format('truetype');
}

strong {
  font-weight: bold;
}

/****** Bandeau ******/
#formateurs-exceptions {
  width: 100%;
}

/* Header transparent */
.transparent-header {
  background-color: rgba(51, 51, 51, 0.7);
  padding: 20px 0;
  position: relative;
  z-index: 2000;
  height: 86px;
  top: 0;
  left:0;
}

.luminosite-couvrance {
	/* object-fit: cover; */
	filter: brightness(111%);
}
.brightness {
	filter: brightness(141%);
}
.brightness2 {
	filter: brightness(111%);
}
.couvrance {
	object-fit: cover;
}
.couvrance-hm {
	object-fit: cover;
	object-position: 0px 0px;
}
.grayscale-couvrance {
	object-fit: cover;
	filter: grayscale(41%);
}
.grayscale {
  filter: grayscale(41%);
}
.grayscale2 {
  filter: grayscale(75%);
}
.grayscale3 {
  filter: grayscale(90%);
}
.grayscale4 {
  filter: grayscale(100%);
}
.shadow {
	text-shadow: 2px 2px 4px #555;
}
.titre-long {
	line-height: 30px;
}

/* Contenu du header centré */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mobile controls */
.mobile-controls {
  display: none;
  align-items: center;
  width: 100px;
  justify-content: space-between;
}

/* Audiodescription */
#audiodescription {
	display: none;
}

/* Logo */
div.logo {
  height: 85px;
  margin: 0;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  float: left;
  margin-left: 15px;
  margin-top: -15px;
  margin-right: 0px;
  z-index: 1000;
}

.logo h5, 
.logo h1 {
  font-family: 'Aquatico', Helvetica, Arial, sans-serif;
  position: relative;
  float: left;
  color: #FFF;
  padding: 0;
  font-size: 30px;
  margin-top: -5px;
}

/* Navigation */
nav {
  flex: 1;
  margin-top: -20px;
  height: 85px;
}

nav ul {
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
  position: relative;
  list-style: none;
  white-space: nowrap;
  height: 75px;
}

nav ul li a {
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  display: block;
  padding: 10px 0;
  white-space: nowrap;
  height: 100%;
}

nav ul li a:hover {
  text-decoration: none;
  color: #DA0710;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  height: 57px;
}



/* Effet de survol avec la barre */
nav ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-color: #FFF;
  position: absolute;
  bottom: 11px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
  /* La barre s'étend sur toute la largeur au survol */
}

/* Menu dropdown verp + */
.verp-menu .dropdown {
  position: absolute;
  top: 70px;
  left: -111px;
  background-color: rgba(240, 240, 240, 0.9);
  padding: 10px 0;
  width: 333px;
  display: none;
  box-shadow: 0px 4px 6px rgba(250, 250, 250, 0.1);
  border-radius: 10px;
  z-index: 1000;
}

.verp-menu:hover .dropdown {
  display: block;
}

.verp-menu .dropdown li {
  margin: 0;
  padding-left: 20px;
  height: 35px;
}

.verp-menu .dropdown li a {
  color: #333;
  font-weight: normal;
  text-decoration: none;
  font-weight: bold;
}

.verp-menu .dropdown li a::after {
  display: none;
}

.verp-menu .dropdown li a.active {
  color: #DA0710;
}

.verp-menu .dropdown li a:hover {
  color: #DA0710;
}

.verp-menu:hover > a {
  color: #DA0710 !important;
}

.verp-menu:hover > a::after {
  width: 100%;
  background-color: #FFF;
}
/* Moteur de recherche */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
	margin-top: -30px;
	height: 100px;
}

/* Affichage quand ouvert */
.search-wrapper.open #search-container {
    display: block;
}

.search-wrapper button {
	border: none;
	background: none;
}

/* Positionnement du champ de recherche */
#search-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(240, 240, 240, 0.9);
    padding: 13px;
    border-radius: 15px;
    transition: opacity 0.3s ease, transform 0.3s ease;
	box-shadow: 0px 4px 6px rgba(250, 250, 250, 0.1);
}

input {
    width: 200px;
    padding: 8px;
    border: none;		
    background: #333;
    color: white;
	opacity: 0.9;
}

/* Affichage au survol ou si un élément à l'intérieur reçoit le focus */
.search-wrapper:hover #search-container,
.search-wrapper:focus-within #search-container {
    display: block;
    opacity: 0.9;
}

/* Style pour les placeholders des inputs accessibles */
input[aria-label]::placeholder {
    color: #FFF !important;
}

/* Style pour le focus des éléments accessibles */
input[aria-label]:focus {
    outline: 4px solid #DA0710 !important;
}


/* Panier */
.cart {
  margin-left: auto;
}

.cart a,
.cart a:hover {
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  padding: 10px 15px;
  border: 1px solid #FFF;
  border-radius: 5px;
  height: 38px;
}

.cart a:hover {
  text-decoration: none;
}

nav ul li .cart a::after {
  display: none;
}

/* Style pour le burger menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-menu span,
.burger-menu li a {
  height: 2px;
  width: 100%;
  background-color: #FFF;
  transition: all 0.3s ease;
}

/* Ajout des styles pour la croix */
.close-menu {
  font-size: 45px;
  cursor: pointer;
  color: #FFF;
  display: none;
}


/****** Corps de page ******/
#entete-formation {
  clear: both;
  float: none;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: -86px;
}

#formateurs-exceptions {
  float: left;
  clear: both;
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

#formateurs-exceptions #presentation {
  font-family:'Baloo2', Helvetica, Arial, sans serif;
  margin: 2% 10% 2% 10%;
  padding: 5px 20px 5px 20px;
  float: left;
  z-index: -1;
  width: 80%;
  font-size: 15px;
}

#formateurs-exceptions #formation {
  font-family:'Baloo2', Helvetica, Arial, sans serif;
  float: left;
  z-index: -1;
  width: 80%;
  margin-left: 12%;
  margin-top: -1%;
}

.intro {
	width:65%;
	float:left;
	line-height: 22px;
	text-align: justify;
}

#txtlzr {
	font-family: 'Aquatico', Helvetica, Lucida Sans, Arial, sans-serif;
	font-size: 41px; 
	font-weight: 700;
	width: 30%; 
	height: 222px;
	z-index: 333;
	margin-top: -5px;
	color: #DA0710;
	line-height: 69px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	float: right;
	text-align: center;
}

#presentation::after {
  content: "";
  display: table;
  clear: both;
}

#formateurs-exceptions #engagement, 
#formateurs-exceptions #approche {
  font-family:'Baloo2', Helvetica, Arial, sans serif;
  clear: both;
  margin: 0% 10% 2% 10%;
  padding: 5px 20px 5px 20px;
  float: left;
  width: 80%;
  text-align: justify;
  font-size: 15px;
}

p.rouge,
p.rouge a {
  color: #DA0710;
  font-weight: bold;
  text-decoration: none;
}
p.rouge a:hover {
  text-decoration: underline;
}
/* effet background */
.section {
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: black;
  text-align: center;
}

/* La div qui afficher l'image */
.action {
  position: relative;
  height: 45vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 28px;
  color: white;
  font-weight: bold;
  z-index: 1;
  min-height: 440px;
  opacity: 0.8;
}

.action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/home/actualite-formation-prevention.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

#formateurs-exceptions #presentation2 {
  margin: 0 10% 2% 10%;
  float: left;
  width: 80%;
  text-align: center;
  margin-left: 12%;
}

#formateurs-exceptions #presentation h2,
#formateurs-exceptions #presentation2 h2,
#formateurs-exceptions #engagement h2,
#formateurs-exceptions #approche h2,
#formateurs-exceptions #formation h2,
#formateurs-exceptions #modeles h2,
#actualite h2 {
  font-family: 'Aquatico', Helvetica, Arial, sans-serif;
  position: relative;
  text-align: center;
  color: #DA0710;
  padding: 0;
  font-size: 21px;
}

#formateurs-exceptions #presentation2 h2 {
  text-align: left;
  color: #FFF;
}

#formateurs-exceptions #presentation {
  float: left;
  clear: both;
  margin-top: 20px;
  width: 80%;
  margin-left: 12%;
}

#formateurs-exceptions #formation h2
{
  padding-bottom: 0px;
}

#formateurs-exceptions #approche,
#formateurs-exceptions #engagement {
    font-family: 'Baloo2', Helvetica, Arial, sans serif;
	font-size: 15px;
	margin-top: 35px;
	width: 70%;
	margin-left: 13%;
}
#formateurs-exceptions #engagement {
	  float: left;
	  clear: both;
	  margin-top: 10px;
}
#formateurs-exceptions #approche h2,
#formateurs-exceptions #engagement h2
{
	padding-bottom: 10px;
}

#formateurs-exceptions #presentation p,
#formateurs-exceptions #presentation2 p,
#actualite p {
  font-family:'Baloo2', Helvetica, Arial, sans serif;
  color: #000;
  font-size: 15px;
  /* line-height: 22px; */
  line-height: 26px;
}

#formateurs-exceptions #presentation2 p {
  color: #FFF;
}

#formateurs-exceptions #pre-footer {
  width: 100%;
  max-width: 1920px;
  font-family:'Baloo2', Helvetica, Arial, sans serif;
  float: left;
  line-height: 21px;
  padding-top: 21px;
  padding-bottom: 21px;
  color: #FFF;
  background-color: #959595;
  display: flex;
  position: relative;
  text-align: center;
  vertical-align: middle;
  z-index: 0;
  margin: 0 auto;
  justify-content: space-around;
}

#formateurs-exceptions #pre-footer #filtre-contenu {
  width: 70%;
  position: relative;
  display: flex;
}

#formateurs-exceptions #pre-footer #filtre-contenu address {
  display: block;
  width: 35%;
  min-width: 27%;
  text-align: left;
  font-style: normal;
  position: relative;
  color: #FFF;
  margin-left: 10%;
}

#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 {
  margin-bottom: -30px;
  margin-left: -9px;
  float: left;
  clear: both;
  width: 200px;
}

#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 img {
  float: left;
  width:70px;
  max-width: 70px;
  margin-top: -2px;
  border: none;
}

#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 {
  font-family: 'Aquatico', Helvetica, Arial, sans-serif;
  margin-top: -1px;
  border: none;
  text-decoration:none;
}
 
#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 a,
#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 a:hover,
#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 a,
#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 a:hover {
  text-decoration:none;
}

#formateurs-exceptions #pre-footer #filtre-contenu div.logo2 span {
  margin-left: 0;
  white-space: nowrap;
  border: none;
}

#formateurs-exceptions #pre-footer #filtre-contenu div.block-footer {
  display: block;
  width: 35%;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  margin: 0 auto;
}

#formateurs-exceptions #pre-footer #filtre-contenu a {
  color: #FFF;
  text-decoration: none;
}

#formateurs-exceptions #pre-footer #filtre-contenu a:hover {
  color: #FFF;
  text-decoration: underline;
}

#formateurs-exceptions footer {
  width: 100%;
  float: left;
  height: 50px;
  padding-top: 15px;
  font-size: 13px;
  color: #FFF;
  background-color: #555;
  position: relative;
  text-align: center;
  vertical-align: middle;
}

#formateurs-exceptions footer a {
  color: #FFF;
  text-decoration: none;
}

#formateurs-exceptions footer a:hover {
  color: #FFF;
  text-decoration: underline;
}

/* Boutons */

/* Style de base des boutons */
.btn {
  font-family:'Baloo2', Helvetica, Arial, sans serif;
  display: inline-block;
  background-color: #DA0710;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: 0.3s ease;
}

/* Bouton arrondi */
.rounded {
  border-radius: 10px;
}

/* Bouton carré (sans arrondi) */
.square {
  border-radius: 0;
}

/* Positionnement */
.left {
  display: block;
  text-align: left;
}

.center {
  display: flex;
  justify-content: center;
}

.right {
  display: block;
  text-align: right;
}

.btn:hover {
  opacity: 0.8;
}

.content {
  margin: auto;
}

#calque img {
  float:right; 
  margin-top: -480px; 
  z-index: 3000; 
  width: 480px; 
  height:480px;
  opacity: 0.8;
}

.fleft {
  float: right;
  width: 21%;
  min-width: 300px;
  margin-top: -60px;
  text-align: left;
}

/* Style pour le compteur d'articles (cercle rouge) */
iframe {
    border-radius: 10px;
	overflow: hidden;
    background-color: rgba(222, 222, 222, 0.9);
    z-index: 1000;
  }

#cart-item-count { 
    display: inline-block; 
    background-color: #DA0710; 
    color: white;
    border-radius: 60%; 
	padding-top: 3px;
	padding-bottom: 2px;	
    font-size: 0.7em;    
    margin-left: 4px;      
    position: relative;    
    top: -0.6em;           
    line-height: 1;
	min-width: 17px;
	text-align: center;
}

.panier-menu {
  position: relative;
}

.panier-menu a,
.panier-menu a:hover {
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  padding: 10px 15px;
  border: 1px solid #FFF;
  border-radius: 5px;
  height: 38px;
}

.panier-menu a:hover {
  text-decoration: none;
}

.panier-menu a:hover::after {
  display: none; 
}

.panier-dropdown {
	position: absolute;
	top: 60px;
	left: -150px;
	padding: 10px;
	width: 400px;
	z-index: 1000;
	display: none;
}

.panier-menu:hover .panier-dropdown {
	display: block;
}

.cart-count {
	display: inline-block;
	background-color: red;
	color: white;
	border-radius: 50%;
	padding: 2px 5px;
	font-size: 0.8em;
	margin-left: 5px;
}

/* Styles de base pour l'accessibilité */
.accessible-mode body,
.accessible-mode span,
.accessible-mode ul li,
.accessible-mode a,
.accessible-mode a:hover,
.accessible-mode label,
.accessible-mode button,
.accessible-mode input,
.accessible-mode select,
.accessible-mode textarea,
.accessible-mode p,
.accessible-mode div,
.accessible-mode #formateurs-exceptions #presentation,
.accessible-mode #formateurs-exceptions #presentation2,
.accessible-mode #formateurs-exceptions #approche,
.accessible-mode #formateurs-exceptions #engagement,
.accessible-mode #formateurs-exceptions #engagement,
.accessible-mode #formateurs-exceptions #catalogue .filters,
.accessible-mode #formateurs-exceptions #presentation p,
.accessible-mode #formateurs-exceptions footer {
  font-size: 16px;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
 }

.accessible-mode a,
.accessible-mode a:hover {
  cursor: pointer;
 }
 
.accessible-mode .search-wrapper,
.accessible-mode iframe {
  display: none;
 }
.accessible-mode nav ul li a,
.accessible-mode nav ul li a:hover,
.accessible-mode nav ul li a:active {
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  height: 57px;
}
.accessible-mode .image-caption a, 
.accessible-mode .image-caption a:hover {
  font-size: 21px;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* Gestion Cookies */
.termsfeed-com---nb .cc-nb-title {
  font-size: 20px !important;
}
.termsfeed-com---nb .cc-nb-text {
  font-size: 14px !important;
  margin: 0 0 1.25rem 0 !important;
}
.termsfeed-com---nb .cc-nb-changep a {
  background-color: #eaeaea !important;
  color: #111 !important;
  border: none !important;
}
.termsfeed-com---nb .cc-nb-changep:hover {
  background-color: #eaeaea !important;
  color: #111 !important;
}
.termsfeed-com---nb .cc-nb-changep:focus {
  background-color: #eaeaea !important;
  color: #111 !important;
}
.termsfeed-com---palette-dark .cc-cp-body-content-entry-title {
  color: #fff !important;
  font-size: 20px !important;
}
.termsfeed-com---pc-dialog .cc-pc-head {
  background: #333 !important;
  color: #111 !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  border-bottom: none !important;
}
.termsfeed-com---pc-dialog .cc-pc-head-title-headline {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  color: #26aa92 !important;
}
.termsfeed-com---palette-dark .cc-pc-head-lang select {
  display: none !important;
}
.termsfeed-com---nb .cc-nb-changep:focus,
.termsfeed-com---pc-dialog .cc-pc-head-close:focus {
  outline: none !important;
}
.termsfeed-com---palette-dark .cc-pc-head-close {
  color: #e6e6e6 !important;
}
.termsfeed-com---pc-dialog .cc-pc-head-close:focus {
  outline: none !important;
  border: none !important;
  box-shadow: 0 0 0 2px #333 !important;
}
.cc-nb-changep:focus,
.cc-nb-changep:focus-visible,
.cc-pc-head-close:focus,
.cc-pc-head-close:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background-color: none !important;
}
.termsfeed-com---palette-dark .cc-cp-body-content {
  background: #444 !important;
  color: #f5f5f5 !important;
}
.termsfeed-com---palette-dark .cc-cp-body-tabs-item[active="true"] {
  background: #444 !important;
  border: none !important;
}
.termsfeed-com---pc-dialog .cc-cp-body-content-entry[active="true"] {
  display: block !important;
  margin-bottom: 30px !important;
}
.termsfeed-com---palette-dark .cc-cp-body-content-entry a {
  color: #fff !important;
  border: none !important;
}
.termsfeed-com---palette-dark .cc-cp-body-content-entry a:hover {
  color: #26aa92 !important;
  text-decoration: underline !important;
}
#title_tracking {
  border: none !important;
}
.termsfeed-com---palette-dark .cc-cp-body-content-entry a:focus,
.termsfeed-com---palette-dark .cc-cp-body-tabs-item-link:focus {
  box-shadow: 0 0 0 2px #444 !important;
}
.termsfeed-com---palette-dark.termsfeed-com---nb {
  background-color: #111 !important;
  color: #fff !important;
}
.termsfeed-com---palette-dark .cc-nb-title,
.termsfeed-com---palette-dark .cc-nb-text {
  color: #fff !important;
}
.termsfeed-com---palette-dark .cc-cp-foot-save,
.termsfeed-com---palette-dark .cc-nb-okagree,
.termsfeed-com---palette-dark .cc-nb-reject {
  background-color: #26aa92 !important;
  color: #000 !important;
}
.termsfeed-com---palette-dark .cc-cp-body-content-entry-text {
  color: #fff !important;
  font-size: 14px !important;
}
.cc-custom-checkbox {
  position: absolute !important;
  margin: 2px 0 0 16px !important;
  cursor: pointer !important;
  appearance: none !important;
  border: 0 !important;
}
.cc-custom-checkbox:checked + label:before {
  background: #26aa92 !important;
}

.termsfeed-com---pc-dialog input[type="checkbox"].cc-custom-checkbox:checked + label::before {
  background: #26aa92 !important;
}

.termsfeed-com---palette-dark .cc-cp-foot-byline {
  color: #fff !important;
  font-size: 12px !important;
}
.termsfeed-com---palette-dark .cc-cp-foot {
  background: #333 !important;
  border-top-color: #333 !important;
}		
.termsfeed-com---nb .cc-nb-title {
  color: #26aa92 !important;
  font-family: 'Baloo2', Arial, Helvetica, sans-serif !important;
}
.termsfeed-com---nb .cc-nb-main-container {
  background-color: #444 !important;
}
/* Fin gestion Cookies */

/* error */
#formateurs-exceptions #message-error2 {
  font-family:'Baloo2', Helvetica, Arial, sans serif;
  margin: 2% 10% 2% 10%;
  padding: 5px 20px 5px 20px;
  float: left;
  z-index: -1;
  width: 80%;
  font-size: 18px;
  min-height: 250px;
  text-align: center;
}
#formateurs-exceptions #message-error2 h2 {
  font-family: 'Aquatico', Helvetica, Arial, sans-serif;
  position: relative;
  text-align: center;
  color: #DA0710;
  padding: 0;
  font-size: 21px;
  line-height: 33px;
}
#message-error2 a {
	font-size: 18px; 
	line-height: 22px;
	color: #DA0710;
	font-weight: bold;
	text-decoration: none;
}

#message-error2 a:hover {
	text-decoration: underline;
}


/* Media queries pour la responsivité */
@media (max-width: 1515px) {
  .panier-dropdown {
    position: absolute;
    top: 60px;
    left: auto;
    right: 0;
    width: 400px;
    transform: translateX(calc(100% - 386px));
  }
}
@media (max-width: 1441px) {
  .header-content {
	max-width: 90%;
  }
  #formateurs-exceptions #formation {
	margin-left: 10%;
  }
}
@media (max-width: 1282px) {
  .header-content {
    width: 100%;
	max-width: 1282px;
  }
  .burger-menu {
	  margin-left: -86px;
  }
  .mobile-controls .close-menu {
     margin-left: -86px;
  }
}
@media (max-width: 1212px) {
	#formateurs-exceptions #engagement {
		margin-top: 35px;
	}
	#formateurs-exceptions #formation {
        margin-left: 12%;
    }
	
  .header-content {
    width: 100%;
	max-width: 1081px;
  }
  div.logo {
    margin-left: 0px;
	margin-top: 10px;
  }
  .logo img {
    margin-left: 0px;
	width: 131px;
  }
  .logo h5, 
  .logo h1 {
    margin-top: -6px;
	font-size: 21px;
  }
  nav {
    margin-top: -25px;
  }
  .accessible-mode nav {
    margin-top: -38px;
    margin-left: -25px;
  }
  .navigation {
    margin-left: 5%;
  }
  #formateurs-exceptions #presentation2 h2 {
	margin-top: -20px;
  }
  #formateurs-exceptions #presentation {
	margin-left: 10%;
  }
  #formateurs-exceptions #formation,
  #formateurs-exceptions #presentation2,
  #formateurs-exceptions #approche,
  #formateurs-exceptions #engagement {
	width: 80%;
	margin-left: 10%;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.block-footer {
	  white-space: nowrap;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address  {
	  margin-left: 4%;
  }
}
@media (max-width: 1118px) { 
  .panier-dropdown {
   transform: translateX(calc(72% - 300px));
   width: 400px;
  } 
}
@media (max-width: 1081px) {
  #formateurs-exceptions #presentation2 h2 {
	margin-top: -20px;
	font-size: 15px;
  }
  .header-content {
	max-width: 960px;
  }
  .verp-menu .dropdown {
    top: -47px;
    left: 121px;
    background-color: rgba(222, 222, 222, 0.9);
    z-index: 1000;
  }
  .mobile-controls {
    display: flex;
    margin-top: -50px;
	margin-left: 86px;
  }
  div.logo {
    margin-left: 86px;
  }

  .logo img {
    margin-left: 30px;
  }

  nav {
    margin-top: 0;
    order: 3;
    flex: 1;
  }
  #search-container {
    top: 20%;
    left: 20%;
	background-color: rgba(222, 222, 222, 0.9);
  }
  .search-wrapper {
	margin-left: -7px;
  }
  #search-icon circle,
  #search-icon line {
    stroke:#333;
  }
  .cart {
    order: 4;
    margin-left: auto;
  }

  /* Affiche le burger menu en mode mobile */
  .burger-menu {
    display: flex;
  }

  /* Cache la croix initialement*/
  .close-menu {
    display: none;
    width: 100%;
    float: left;
    font-weight: normal;
  }

  /* Cache le menu par défaut en mode mobile */
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85%;
    left: 0;
    background-color: rgba(240, 240, 240, 0.95);
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-align: left;
  }

  nav ul li {
    margin: 10px 0;
    color: #333;
    height: 25px;
  }

  nav ul li a::after {
    height: 0px;
  }

  nav ul li a,
  nav ul li a:hover {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 5px 0;
    height: 25px;
  }

  nav ul li a:hover {
    color: #DA0710;
  }

  nav ul li a:hover::after {
    width: 0%;
  }

  .cart a,
  .cart a:hover {
    text-decoration: none;
    color: #DA0710;
    font-weight: bold;
    padding: 10px 15px;
    border: 1px solid #DA0710;
    border-radius: 5px;
    width: 72px;
    margin-top: -5px;
  }
 
   .panier-dropdown {
    visibility: hidden;
  }
  
  .panier-menu a,
  .panier-menu a:hover {
    color: #333;
	border: none;
	padding: 0;
  }

  /* Affiche le menu quand actif */
  nav ul.active {
    display: flex;
  }
  .intro {
	width:100%;
	clear: both;
  }	
  #txtlzr {
	font-size: 32px; 
	float: left;
	width: 100%;
  }
  #formateurs-exceptions #approche,
  #formateurs-exceptions #engagement {
	width: 80%;
	/* margin: 10% */
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 {
	  margin-left: -9px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address,
  #formateurs-exceptions #pre-footer #filtre-contenu div.block-footer {
	white-space: nowrap;
  }
}
@media (max-width: 929px) {
  .header-content {
    width: 100%;
    max-width: 929px;
  }
  div.logo {
    margin-left: 70px;
    margin-top: 8px;
  }
  .mobile-controls {
	margin-top: -50px;
    margin-left: 95px;
  }
  #formateurs-exceptions #engagement,
  #formateurs-exceptions #approche {
	margin-left: 10%;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address {
	margin-left: 0%;
  }
 }
@media (max-width: 898px) {
  .mobile-controls {
    margin-left: 95px;

  }
  #formateurs-exceptions #pre-footer #filtre-contenu {
	margin-left: -50px;
  }
}
@media (max-width: 858px) {
  div.logo {
    margin-left: 35px;
	margin-top: 2px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address {
	margin-left: 3%;
  }
}

@media (max-width: 828px) {
  iframe {
	margin-top: -111px;
	margin-left: 222px;
  }
  .panier-menu a,
  .panier-menu a:hover {
	color: #333;
	font-weight: bold;
	padding: 0;
	height: auto;
	border: none;
	height: 25px;
	padding-top: 5px;
  }
  #formateurs-exceptions #formation {
	width: 90%;
	margin-left:5%;
  }

  #formateurs-exceptions #pre-footer #filtre-contenu {
    width: 90%;    
  }

  #formateurs-exceptions #pre-footer #filtre-contenu address,
  #formateurs-exceptions #pre-footer #filtre-contenu div.block-footer {
	white-space: nowrap;
  }
  #calque img {
	margin-top: -333px; 
	width:333px;
	height:333px;
  }
   #formateurs-exceptions #presentation {
	margin-left:10%;
  }
  #formateurs-exceptions #engagement {
	margin-top: 40px;
	margin-bottom: 30px;
	margin-left: 40px;
  }  
  #formateurs-exceptions #approche {
	margin-top: 20px;
	margin-left: 35px;
  }
  #formateurs-exceptions #presentation2 {
	margin-top: -55px;
	margin-left: 10%;
  }
  #formateurs-exceptions #presentation2 h2 {
	font-size: 21px;
  }
  .search-wrapper {
	display: none;
  }
  .panier-menu a, .panier-menu a:hover {
    margin-top: 0px;
  }
}

@media (max-width: 812px) { 
  .header-content {
    width: 100%;
    max-width: 812px;
  }
  div.logo {
    margin-top: 7px;
	margin-left: -20px;
  }
  .mobile-controls {
    width: 138px;
    margin-left: 86px;
  }
  .burger-menu {
    margin-top: -10px;
  }
  .mobile-controls .close-menu {
    margin-top: -10px;
  } 
  #formateurs-exceptions #engagement {
	margin-left: 10%;
  }
  #formateurs-exceptions #approche {
	margin-left: 10%;
  }
  #formateurs-exceptions #presentation2 {
	margin-left: 10%;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu {
	margin-left: 3%;	
  }
}
@media (max-width: 800px) {
  div.logo {
  	margin-left: 45px;
  }
  .logo img {
    margin-left: -1px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 img {
	 margin-top: -3px;
  }
}
@media (max-width: 768px) {
   div.logo {
    margin-left: -20px;
  }
  .logo img {
    margin-left: 0px;
  }
  .burger-menu {
	  margin-left: -75px;
  }
  .mobile-controls .close-menu {
     margin-left: -75px;
  }
  #formateurs-exceptions #pre-footer {
    flex-direction: column; 
    align-items: center;    
    text-align: center; 
    height: auto;
  }

  #formateurs-exceptions #pre-footer #filtre-contenu  {
    flex-direction: column; 
    width: 90%;    
	margin-left: 0;	
  }
  
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 {
	  margin-left: 38%;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 {
	  float: left;
  }

  #formateurs-exceptions #pre-footer #filtre-contenu address,
  #formateurs-exceptions #pre-footer #filtre-contenu div.block-footer {
    width: 100%;          
    float: none;         
    margin-left: 0;        
    margin-bottom: 10px;  
    text-align: center;    
  }
}

@media (max-width: 668px) {
  div.logo {
	  margin-left: -50px;
  }
  #formateurs-exceptions #pre-footer {
    margin-top: 50px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address {
	margin-left: 0px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 img {
	margin-left: -11px;
  }
}

@media screen and (max-width: 555px){
    .verp-menu .dropdown {
		width: 262px;
		visibility: visible;
	}	
	#formateurs-exceptions #pre-footer #filtre-contenu {
		width: 100%;
		float: left;
		padding-bottom: 0;
		margin-bottom: -5px;
	}
	#formateurs-exceptions #pre-footer #filtre-contenu .block-footer {
		float: left;
		text-align: left;
		width: 100%;
		padding-top: 12px;
		text-align: center;
	}
	#formateurs-exceptions footer {
	  line-height:21px;
	  height: 70px;
	  padding-left: 20px;
	  padding-right: 20px;
	}
}

@media (max-width: 450px) {
  .logo img {
	margin-left: -4px;
  }
  iframe {
	display:none;
  }
}

@media (max-width: 434px) {
 .verp-menu .dropdown {
	  width: 260px;
	  visibility: hidden;
  }
 .verp-menu:hover .dropdown {
	 position: absolute;
	 display: block;
	 top: -55px;
	 left: 86px;
	
  }
  div.logo {
	 margin-top: -5px;
	  margin-left: 10px;
  }
  .logo h5, 
  .logo h1 {
	  font-size: 23px;
	  margin-top: 0px;
  }
  .logo img {
	width: 141px;
	margin-left: -40px;
	margin-top: -10px;
  }
  .mobile-controls {
	 width: 0px;
	 margin-top: -33px;
  }
  .burger-menu {
	  margin-left: -86px;
  }
  .mobile-controls .close-menu {
     margin-left: -86px;
  }
  #calque img {
	margin-top: -77px; 
	width:77px;
	height:77px;
  }
  #formateurs-exceptions #presentation,
  #formateurs-exceptions #presentation2 {
	  margin-top: 0;
	  margin-left: 10%;
  }
  .action::before {
	min-height: 250px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address {
    display: flex;          
    flex-direction: column; 
    align-items: center;   
    justify-content: flex-start; 
    float: none;        
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address div.logo2 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center; 
    justify-content: center;
    flex-direction: row; 
	margin-bottom: -8px;
  }
  .chrome #formateurs-exceptions #pre-footer #filtre-contenu address div.logo2 {
    margin-bottom: -28px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 {
    margin-left: -4px;	
    text-align: left;  
	padding-left:10px;
  }
}
@media (max-width: 414px) {
  .logo img {
	margin-left: -65px;
  }
  .mobile-controls {
    width: 30px;
  }
  .burger-menu {
	  margin-left: -70px;
  }
  .mobile-controls .close-menu {
     margin-left: -70px;
  }
}
@media (max-width: 393px) {
  .gallery {
	left: -20px;
  }
}
@media (max-width: 388px) {
  .verp-menu:hover .dropdown {
    display: none;
	visibility: hidden;
  }
  div.logo {
	margin-left: -45px;
  }
  .logo h5, 
  .logo h1 {
	  font-size: 20px;
	  margin-top: 0px;
  }
  .logo img {
	width: 111px;
	margin-left: 0px;
	margin-top: -8px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 {
	  margin-top: 4px;
  }
}

@media (max-width: 375px) {
  div.logo {
    margin-left: -25px;
	margin-top: 2px;
  }
  .mobile-controls {
    width: 0px;
  }
  .burger-menu {
	  margin-left: -75px;
  }
  .mobile-controls .close-menu {
     margin-left: -75px;
  }
  .verp-menu:hover .dropdown {
    display: none;
  }
  #formateurs-exceptions #presentation2 {
	margin-top: -50px;
	margin-bottom: 15px;
  }
  .logo img {
    margin-left: -3px;
  }
  #formateurs-exceptions #engagement {
	  margin-top: -15px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 {
	margin-top: 9px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu address {
    margin-left: 0px;
	width: 98%;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 img {
    margin-top: 7px;
  }
}
@media (max-width: 363px) {
  div.logo {
	  margin-left: -21px;
  }
}
@media (max-width: 323px) {
  .verp-menu:hover .dropdown {
    display: none;
  }
  div.logo {
	margin-left: -40px;
  }
  .logo h5, 
  .logo h1 {
	font-size: 20px;
	margin-top: 0px;
  }
  #formateurs-exceptions #presentation2 h2 {
	font-size: 18px;
  }
  .logo img {
	width: 111px;
	margin-left: 0px;
	margin-top: -8px;
  }
}
@media (max-width: 303px) {
  div.logo {
	margin-left: -55px;
  }
  .burger-menu {
	margin-left: -86px;
  }
  .mobile-controls .close-menu {
    margin-left: -86px;
  }
  #formateurs-exceptions #pre-footer #filtre-contenu div.logo2 p.h3 {
    margin-top: 8px;
  }
}

/* Style Accessibilité */
@media (max-width: 960px) {
.accessible-mode nav ul li a {
    color: #333;
  }
}
.accessible-mode #formateurs-exceptions #pre-footer #filtre-contenu div.block-footer {
	font-size: 16px;
}
.accessible-mode .panier-menu {
  margin-top: 10px;
}
.accessible-mode .panier-menu a,
.accessible-mode .panier-menu a:hover {
  padding: 0;
  border: none;
}
.accessible-mode .verp-menu:hover > a:focus {
  color: #FFF !important;
}
.accessible-mode .verp-menu a:focus,
.accessible-mode .verp-menu .dropdown a:focus {
  outline: 3px solid dodgerblue !important; /* Bleu amélioré */
  box-shadow: 0 0 5px dodgerblue !important;
  border-radius: 4px;
}
.accessible-mode #audiodescription {
  margin-top: -35px;
  float: left;
}
.accessible-mode #audiodescription button {
  background-color: white;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.accessible-mode button[aria-label]:focus, .accessible-mode input[aria-label]:focus {
  outline: 4px solid dodgerblue !important;
}
.accessible-mode *:focus { 
  outline: 3px solid dodgerblue !important; /* Bleu amélioré */
  box-shadow: 0 0 5px dodgerblue !important;
  border-radius: 4px;
}

/* Styles pour le mode contraste élevé */
.high-contrast {
  background-color: #000;
  color: #fff;
}
.high-contrast a {
  color: #ffff00;
}
.high-contrast button,
.high-contrast input[type="button"],
.high-contrast input[type="submit"] {
  background-color: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 10px;
  border-radius: 5px;
}
.high-contrast img {
  filter: brightness(0.8) contrast(1.2);
}

/* Classe pour cacher visuellement les éléments tout en les gardant accessibles */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Styles pour les boutons d'accessibilité */
.accessibility-controls {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}
.accessibility-controls button {
  margin: 5px;
  padding: 10px;
  background-color: #4A90E2;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Styles pour le texte agrandi */
.large-text {
  font-size: 120%;
}

@media (prefers-reduced-motion: reduce) {
  #search-container {
    transition: none; /* Pas d’animation pour les utilisateurs sensibles */
  }
}

@media (prefers-color-scheme: dark) {
  #search-container {
    background: black;
    color: white;
  }
}