/* ------
SOMMAIRE
---------*/
/*

01 - TITRES

*/







/* ------
01 - TITRES
---------*/
h1, h2, h3, h4, h5, h6, .like-h1, .like-h2, .like-h3, .like-h4, .like-h5, .like-h6{
	line-height:normal;
	margin:10px 0;
	line-height: 110%;
}
h1, .like-h1{
	font-weight:normal;
	font-size: 20px;
	font-size: 2rem;
    text-align: center;
    font-weight: 700;
    color: var(--color-primary);
}
h2:not(:first-child), .like-h2:not(:first-child){
  /* margin-top: 73px; */
  margin-top:30px;
}
h2, .like-h2{
	font-size: 35px;
	line-height: 1;
  	font-family: var(--font-title);
	font-size: 3.5rem;
  	letter-spacing: 0.25rem;
	font-weight: bold;
}

h3, .like-h3{
	font-size: 20px;
	font-size: 2rem;
  	margin-top: 73px;
	font-weight: 500;
}
h4, .like-h4{
	font-size:16px;
	font-size:1.6rem;
}
h5, .like-h5{
	font-size: 16px;
	font-size: 1.6rem;
}
h6, .like-h6{
	font-size: 14px;
	font-size: 1.4rem;
}

.like-h2 {
	font-weight: 700;
}

/* Titre avec filigrane */
.header_content {
    position: relative;
    text-align: center;
    /* padding-top: 20px;
    padding-bottom: 60px; */
	padding: 10px 0 30px 0;
    margin-top: 50px;
}

.header_content h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -80%);
}
.header_content h2::after {
    margin-right: auto;
    margin-left: auto;
}
.header_content-filigrane {
    opacity: 0.1;
    line-height: 1;
    display: block;
}
@media (max-width:1199px){
    .header_content-filigrane {
        font-size: 4rem;
    }
}
@media (min-width:1200px){
    .header_content-filigrane {
        font-size: 9rem;
    }
}
.page-id-554 .header_content h2::after {
    content: unset;
}

/* Titre avec bordure */
.line,
.title-border::after {
    display: block;
    width: 77px;
    height: 2px;
    background-color: var(--color-secondary);
    content: "";
    margin-top: 10px;
}

/* h2::after{
    display: block;
    width: 77px;
    height: 2px;
    background-color: var(--color-secondary);
    content: "";
    margin-top: 32px;
    margin-bottom: 32px;
} */
h2[style="text-align: center"]::after{
    margin-left: auto;
    margin-right: auto;
}

h1 > span {
    color: var(--white);
    text-transform: none;
    font-family: var(--font-title);
    font-weight: normal;
}

/* Tablette */
@media (min-width:768px) and (max-width:1199px){
	h1, .like-h1{
    font-size: 25px;
    font-size: 2.5em;
    letter-spacing: 0.25rem;
   }
	h2, .like-h2{
		font-size: 40px;
		font-size: 4rem;
	}
	h3, .like-h3{
		font-size: 18px;
		font-size: 1.8rem;
	}
	h4, .like-h4{
		font-size:20px;
		font-size:2rem;
	}
	h5, .like-h5{
		font-size: 18px;
		font-size: 1.8rem;
	}
	h6, .like-h6{
		font-size: 14px;
		font-size: 1.4rem;
	}
}




/* Ecran */
@media (min-width:1200px){
	h1, .like-h1{
		font-size: 30px;
		font-size: 2.5em;
        letter-spacing: 0.15rem;
	}
	h2, .like-h2{
		font-size: 45px;
		font-size: 4.5rem;
	}
	h3, .like-h3{
		font-size: 22px;
		font-size: 2.2rem;
	}
	h4, .like-h4{
		font-size:20px;
		font-size:2rem;
	}
	h5, .like-h5{
		font-size: 18px;
		font-size: 1.8rem;
	}
	h6, .like-h6{
		font-size: 14px;
		font-size: 1.4rem;
	}
}



/* ------------
06 - CONTENU WYSIWYG
--------------*/
p:not(:last-child){
	margin: 0 0 10px 0;
}
b,
strong{
	font-weight: bold;
}
em{
	font-style:italic;
}
	em strong, strong em{
		font-style: italic;
		font-weight: bold;
	}
u{
	text-decoration:underline;
}
strike{
	text-decoration: line-through;
}
address{
	color: #007AAA;
}
pre{
	background:#ccc;
	border:1px solid #007aaa;
	font-size:1.1em;
	margin:20px auto;
	overflow:auto;
	padding:5%;
	width:80%;
}
code{
	background:#007aaa;
	color:#fff;
	font-size:1.1em;
	padding:2px;
}
cite{
	color:#000;
	font-family: Arial, sans-serif;
	font-size:1.1em;
	padding:0 3px 0 3px;
}

acronym{
	border-bottom:1px dashed #007aaa;
	cursor:help;
}
q{
	color:#007aaa;
	font-style:italic;
}
	q:after{
		content: " ' Source: "attr(cite)" ";
		font-size:1em;
	}



/* Liste */
ul {
  margin: 5px 0 5px 0;
}

ul li {
  list-style: none;
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
}
ul li::before{
  display: block;
  content: "";
  width:10px;
  height: 11px;
  background-color: var(--color-secondary);
  border-radius: 4px;
  position: absolute;
  top: 4px;
  left: 0;
}

/* List style disc pour les flèches avec Arrow */
ul[style="list-style-type: circle"] li,
ul[style="list-style-type: disc"] li{
  margin-bottom: 50px;
  padding-left: 40px;
  font-weight: bold;
  line-height: 1;
  font-size: 1.8rem;
  letter-spacing: 0.15rem;
}
ul[style="list-style-type: circle"] li a,
ul[style="list-style-type: disc"] li a{
  font-weight: bold;
  font-size: 1.8rem;
}
ul[style="list-style-type: circle"] li::before,
ul[style="list-style-type: disc"] li::before{
    content: "\e901";
    font-size: 14px;
    transform: rotate(180deg);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    background-color: var(--white);
    border: 1.8px solid var(--color-secondary);
    border-radius: 50px;
    position: absolute;
    top: 0px;
    left: 0;

}

.nolist ul,
.nolist li,
ul.nolist,
ul.nolist li {
  margin: 0;
  list-style: none;
}
.nolist li::before,
ul.nolist li::before{
  content: unset;
}
ol {
  counter-reset: item;
}

ol li {
  display: block;
  counter-increment: item;
  position: relative;
  margin-bottom: 5px;
  padding-left: 36px;
}

ol li:before {
  content: counter(item, decimal-leading-zero) ".";
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: -3PX;
}








hr{
	border-bottom:2px ridge #666;
	border:0;
}
.separator{
	clear:both;
	visibility:hidden;
	margin: 5px 0 5px 0;
}
dl{
	margin:10px 5px;
}
	dt{
		color:#000;
		font-size:1.1em;
		font-weight:bold;
	}
	dd{
		font-style:normal;
		margin:0;
		padding:0;
		text-indent:10px;
	}

table{
	border-collapse:collapse;
	border-spacing:0;
	border:1px solid #ccc;
	margin:auto;
	width:100%;
	margin-bottom:15px;
}
	table caption{
		color: #ccc;
		font-size: 14px;
		font-weight:bold;
		margin:5px 0;
		text-align:left;
	}
th{
	color:#fff;
	border:1px solid #ccc;
	color:#666;
	font-size:14px;
	font-weight:bold;
	padding:2px;
}
td{
	border:1px solid #ccc;
	padding:2px;
}
td img{
	padding:3px;
}




/* Liens */
a, a:link, a:visited{
  color: var(--color-primary);
	text-decoration: none;
}
a:hover, a:active{
}