/* ----------- ECRITURE SUR IMAGE ----------- */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* Texte Haut Gauche */
.TextHG {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Texte Haut Milieu */
.TextHM {
  position: absolute;
  top: 8px;
  right: 50%;
}

/* Texte Haut Droite */
.TextHD {
  position: absolute;
  top: 8px;
  right: 16px;
}

/* Texte Haut Gauche V2 */
.TextHG2 {
  position: absolute;
  top: 8px;
  left: 23%;
}

/* Texte Haut Droite V2 */
.TextHD2 {
  position: absolute;
  top: 8px;
  right: 23%;
}

/* Texte Milieu Gauche */
.TextMG {
  position: absolute;
  top: 40%;
  left: 16px;
}

/* Texte Milieu Milieu */
.TextMM {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Texte Milieu Droits */
.TextMD {
  position: absolute;
  top: 40%;
  right: 16px;
}

/* Texte Milieu Gauche V2 */
.TextMG2 {
  position: absolute;
  top: 40%;
  left: 23%;
}

/* Texte Milieu Droits V2 */
.TextMD2 {
  position: absolute;
  top: 40%;
  right: 23%;
}

/* Texte Bas Gauche */
.TextBG {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Texte Bas Milieu */
.TextBM {
  position: absolute;
  bottom: 8px;
  left: 50%;
}

/* Texte Bas Droits */
.TextBD {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Texte Bas Gauche V2 */
.TextBG2 {
  position: absolute;
  bottom: 8px;
  left: 23%;
}
	
/* Texte Bas Droits V2*/
.TextBD2 {
  position: absolute;
  bottom: 8px;
  right: 23%;
}