:root {
  --montserrat-font: "Montserrat", sans-serif;
  --open-sans-font: "Open Sans", sans-serif;
}

/*///// TITRES & TEXTES ///// */
body {
  font-size: 15px;
}
.text_blanc {
  color: #fff;
}

.text_noir {
  color: #000000;
}

.text_rouge {
  color: #ec6247;
}

.text_14px {
  font-size: 0.875rem;
}

.text_12px {
  font-size: 0.75rem;
}

.text_10px {
  font-size: 0.625rem;
}

.text_30px {
  font-size: 1.875rem;
}

.font_light {
  font-weight: normal;
}

.font_bold {
  font-weight: bold;
}

.text-uppercase {
  text-transform: uppercase;
}

p {
  font-family: var(--open-sans-font);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--montserrat-font);
  font-style: normal;
  font-weight: 500;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
}

h1 {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: bold;
  text-transform: uppercase;
  display: inline;
  background-color: var(--blue-color);
  color: white;

}

h2 {
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: bold;
  display: inline;
  text-transform: uppercase;
  background-color: var(--green-color);
  color: white;
  margin-bottom: 0.2rem;
}
h1::after, h2::after {
    content: '';
    display: block;
    margin-bottom: 1rem;
}
.tuileActu h2 {
  color: #5bbdb5;
}

h3 {
  font-size: 1.375rem;
  font-weight: bold;
}

h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
}

.titreSectionPage {
  font-size: 1.875rem;
}

h5 {
  font-size: 1rem;
  font-weight: bold;
}

.titrePage {
  display: table;
  padding-bottom: 2rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.titrePage:after {
  content: "\2501\2501";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 2rem;
  left: 0;
  text-align: center;
}

.titrePage.blue-color {
  color: var(--blue-color);
}

.titrePage.green-color {
  color: var(--green-color);
}

.titrePage.orange-color {
  color: var(--orange-color);
}

.titrePage.orange-color {
  color: var(--orange-color);
}

