* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	overflow: hidden;
	overflow-y: auto;
}
body {
	overflow: hidden;
	font-size:16px;
	color: var(--textColor);
	background-color: var(--whiteColor);
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
}
html,
body,
button,
input,
select,
textarea {
	font-weight: 400;
	font-style: normal;
}
article,
aside,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
}
h1 {
	font-size: 40px;
	font-weight: 600;
	color: var(--blackColor);
}
h2 {
	font-size: 30px;
	font-weight: 600;
	color: var(--blackColor);
}
h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--blackColor);
}

h4, h5, h6 {
	font-weight: 500;
	color: var(--blackColor);
}
h4 {
	font-size: 18px;
}

h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
a,
a:visited,
a:focus {
  outline: none;
  color: var(--blackColor); 
  text-decoration:none;
}
a:hover {
	outline: none;
	text-decoration: underline;
	color: var(--themeColor1);
}
.content-section {
	position:relative;
}
.cover-image {
	background-size:cover!important;
	background-position: center center!important;
}

.bg-color {
	background-color: var(--bgColor);
}
.nofollow-link {
  cursor: pointer;
}
.nofollow-link:hover {
  text-decoration:underline;
}
.btn.btn-outline-secondary {
	border-radius:1rem;
	color: var(--themeColor1);
}
.btn.btn-outline-secondary:hover {
	color: var(--whiteColor);
	text-decoration:none;
}
.height-500 {
	min-height:500px;
}
.height-750 {
	min-height:750px;
}

/***********************************************************************
	MENUHEADER
***********************************************************************/
@media (min-width: 768px) {
	.navik-header .header-shadow-wrapper::after {
	box-shadow: none;
	}
	.navik-header.sticky .header-shadow-wrapper::after {
	box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.1);
	}
}
@media (min-width: 1200px) {
	.navik-header {
	background-color: #f5f5f5;
	}
	.navik-menu > ul > li:last-child > a {
    padding: 0 20px;
	}
	.navik-menu > ul > li.current-menu {
    background: var(--themeColor1);
	}
	.navik-menu > ul > li.current-menu > a {
	color: var(--whiteColor);
	}
}
@media (max-width:1199px) {
	.navik-header .logo {
	padding: 15px 0px;
	text-align: start;
	}
}
 
/***********************************************************************
	HEADING
***********************************************************************/
.section-title,
.section-title-home {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  width: 100%;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: var(--themeColor1);
}
.section-title-home::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: var(--themeColor1);
}
.section-title-home h1 {
  font-size: 30px!important;
  margin-bottom: 0;
}
.section-title h2 {
  font-size: 25px;
  margin-bottom: 0;
}

/***********************************************************************
	BREADCRUMB
***********************************************************************/
.breadcrumb-item {
	font-size: 14px;
}
.breadcrumb-item a,
.breadcrumb-item.active {
	color: var(--whiteColor);
}
@media (max-width:767px) {
	.breadcrumb-item {
	display: inline-block;
	width: 100%;
	padding: 3px 0;
	}	
	.breadcrumb-item + .breadcrumb-item::before {
	float: none;
	content: var(--bs-breadcrumb-divider, "");
	}
}

/***********************************************************************
	HOMEPAGE
***********************************************************************/
.article-defaut-little .article-defaut-content a,
.article-defaut-big .article-defaut-content a {
  text-decoration: none;
  transition: 0.5s;
  color: #09101f;
}
.article-defaut-little img,
.article-defaut-big img {
  overflow: hidden;
  transition: all 1.5s ease-out;
}
.top-news .article-defaut-little {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.article-defaut-little {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.article-defaut-little::before {
  position: absolute;
  content: "";
  background: linear-gradient(transparent, #000000), linear-gradient(transparent, #000000);
  height: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.45;
}

.article-defaut-little .article-defaut-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 25px;
  z-index: 2;
}

.article-defaut-big {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.article-defaut-big::before {
  position: absolute;
  content: "";
  background: linear-gradient(transparent, #000000), linear-gradient(transparent, #000000);
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.2;
}
.article-defaut-big .article-defaut-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 25px;
  z-index: 2;
}

.article-defaut-little .article-defaut-content h2 a,
.article-defaut-little .article-defaut-content h3 a {
  color: #ffffff;
  position: relative;
}
.article-defaut-little .article-defaut-content h2,
.article-defaut-little .article-defaut-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 12px;
}
.article-defaut-little .article-defaut-content h2 a::before,
.article-defaut-little .article-defaut-content h3 a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  border-bottom: 1px solid var(--themeColor1);
  transition: 0.5s;
  z-index: -1;
}
.article-defaut-little:hover img {
  transform: scale(1.1);
}
.article-defaut-little:hover .article-defaut-content h2 a,
.article-defaut-little:hover .article-defaut-content h3 a {
  color: var(--whiteColor);
}
.article-defaut-little:hover .article-defaut-content h2 a::before,
.article-defaut-little:hover .article-defaut-content h3 a::before {
  width: 100%;
}

.article-defaut-big .article-defaut-content h2 a,
.article-defaut-big .article-defaut-content h3 a {
  color: var(--whiteColor);
  position: relative;
}
.article-defaut-big .article-defaut-content h2,
.article-defaut-big .article-defaut-content h3 {
  font-size: 36px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 12px;
}
@media (max-width:991px) {
	.article-defaut-big .article-defaut-content h2,
	.article-defaut-big .article-defaut-content h3 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 12px;
	}
}
.article-defaut-big .article-defaut-content h2 a::before,
.article-defaut-big .article-defaut-content h3 a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  border-bottom: 1px solid var(--themeColor1);
  transition: 0.5s;
  z-index: -1;
}
.top-news .photo-article img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	opacity: 1;
	pointer-events: auto;
}


.article-defaut-big:hover img {
  transform: scale(1.1);
}

.article-defaut-big:hover .article-defaut-content h2 a,
.article-defaut-big:hover .article-defaut-content h3 a {
  color: var(--whiteColor);
}
.article-defaut-big:hover .article-defaut-content h2 a::before,
.article-defaut-big:hover .article-defaut-content h3 a::before {
	width: 100%;
}

.article-defaut-little .article-defaut-content .tag,
.article-defaut-big .article-defaut-content .tag {
	display: inline-block;
	font-size: 11px;
	background-color: var(--themeColor1);
	color: #ffffff;
	padding: 2px 5px;
	font-weight: 600;
	transition: 0.5s;
	text-transform: uppercase;
}

@media (max-width:767px) {
	.article-defaut-big {
	margin-bottom: 16px;
	}
}


/***********************************************************************
	HOMEPAGE - POPULAIRE
***********************************************************************/
.popular-article .popular-article-content a,
.categorie-news-content a,
.categorie-article-content a {
  text-decoration: none;
  transition: 0.5s;
  color: #09101f;
}
.popular-article {
  margin-bottom: 30px;
}
.popular-article .popular-article-image {
  overflow: hidden;
  position:relative;
}
.popular-article .popular-article-image .tag {
	display: inline-block;
	font-size: 11px;
	background-color: var(--themeColor1);
	color: #ffffff;
	padding: 2px 5px;
	font-weight: 600;
	transition: 0.5s;
	position: absolute;
	z-index: 10;
	left: 10px;
	bottom: 10px;
	text-transform: uppercase;
}
.popular-article-image {
	max-height:250px;
}
.popular-article .popular-article-image img {
  transition: 0.5s;
}
.popular-article .popular-article-content {
  margin-top: 15px;
}
.popular-article .popular-article-content span {
	font-size: 14px;
	font-weight: 500;
	color: var(--themeColor1);
}
.popular-article .popular-article-content h3 {
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.categorie-article-content h2,
.categorie-article-content h3,
.categorie-news-content h3 {
  font-size: 20px;
  margin-top:0;
  margin-bottom: 12px;
}
.popular-article .popular-article-content h3 a,
.categorie-news-content h3 a,
.categorie-article-content h2 a,
.categorie-article-content h3 a {
  color: #09101f;
  position: relative;
  z-index: 1;
}
.popular-article .popular-article-content h3 a::before,
.categorie-news-content h3 a::before,
.categorie-article-content h2 a::before,
.categorie-article-content h3 a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  border-bottom: 1px solid var(--themeColor1);
  transition: 0.5s;
  z-index: -1;
}
.popular-article .popular-article-content p,
.categorie-news-content p,
.categorie-article-content p {
  font-weight: 400;
  font-size: 14px;
}
.popular-article .popular-article-content p a,
.categorie-news-content p a,
.categorie-article-content p a {
  color: #656565;
}
.popular-article:hover .popular-article-content h3 a,
.categorie-news-content:hover h3 a,
.categorie-article-content:hover h2 a,
.categorie-article-content:hover h3 a {
  color: var(--themeColor1);
}
.popular-article:hover .popular-article-content h3 a::before,
.categorie-news-content:hover h3 a::before,
.categorie-article-content:hover h2 a::before,
.categorie-article-content:hover h3 a::before {
  width: 100%;
}
.popular-article:hover .popular-article-content p a,
.categorie-news-content:hover p a,
.categorie-article-content:hover p a {
  color: var(--themeColor1);
}
.popular-article:hover .popular-article-image img {
  transform: scale(1.1);
}

/***********************************************************************
	TOP PAGE
***********************************************************************/
@media (min-width:768px) {
	/*.categories-articles .article-defaut-big .photo-article*/
	.top-news .article-defaut-big {
	height:422px;
	}
	.article-defaut-big,
	#catart .article-defaut-big .photo-article {
	width: 100%;
	height:535px;
	}
	#catart .article-defaut-little,
	.categories-articles .article-defaut-little {
	height:167.76px;
	}
	.top-news .article-defaut-little .photo-article {
	width: 100%;
	height:203px;
	}
}
@media (max-width:767px) {
	.categories-articles .article-defaut-big .photo-article,
	#catart .article-defaut-big .photo-article {
	width: 100%;
	height:225px;
	}
}
.categories-articles .article-defaut-big .photo-article,
#catart .article-defaut-big .photo-article {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
}
.categories-articles .article-defaut-big .photo-article img,
#catart .article-defaut-big .photo-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: auto;
}

.top-article .page-title-content h1 {
	font-size: 32px;
	margin-bottom:20px;
}
.top-article .page-title-content ul {
  position: relative;
  list-style-type: none;
  text-align: start;
}


/***********************************************************************
	BLOC ARTICLE
***********************************************************************/


/***********************************************************************
	CATEGORIE LISTE
***********************************************************************/
.page-title-area {
  padding-top: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e1e1e1;
}

.page-title-content {
  position: relative;
}
.page-title-content h1 {
  margin-bottom: 0;
  font-size: 36px;
}

.page-title-content ul {
  text-align: right;
  position: absolute;
  right: 0;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  top: 50%;
  transform: translateY(-50%);
}
.page-title-content ul li {
  display: inline-block;
  margin-left: 15px;
  font-weight: 400;
  color: var(--themeColor1);
  position: relative;
}
.page-title-content ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 5px;
  height: 15px;
  width: 1px;
  background-color: var(--themeColor1);
}
.page-title-content ul li:first-child {
  margin-left: 0;
}
.page-title-content ul li:first-child::before {
  display: none;
}
.page-title-content ul li a {
  display: block;
}

@media only screen and (max-width: 767px) {
	.page-title-content {
	text-align: center;
	}
	.page-title-content h1 {
	margin-bottom: 16px;
	font-size: 24px;
	}
	.page-title-content ul {
	text-align: center;
	position: relative;
	right: 0;
	top: unset;
	transform: unset;
	}
	.page-title-content ul li,
	.page-title-content ul li a {
	font-size:14px;
	}
	.page-title-content ul li::before {
	top: 4px;
	height: 12px;
	}
}

.auteur-style {
	position:absolute;
	top:5px;
	left:5px;
	z-index:250;
	background: rgba(0,0,0,.5);
	padding: 2px 4px 4px;
}
.auteur-style .auteur-text {
  display: inline-block;
  color: var(--whiteColor);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

/***********************************************************************
	ARTICLE
***********************************************************************/
.image-article {
	height: 500px;
    border-radius:12px;
}
@media (max-width:1199px) {
	.image-article {
    height:400px;
  	}
}
@media (max-width:767px) {
	.image-article {
    height:250px;
  	}
}
#content img {
  border: none;
  border-radius: 9px;
  transition: all 0.4s;
}
.sidebar-area .title-widget {
	position:relative;
	font-size:24px;
	font-weight:600;
	color: var(--blackColor);
	margin-bottom:15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
	width: 100%;
}
.sidebar-area .title-widget::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: var(--themeColor1);
}
.sidebar-area .title-widget i {
	font-size: 18px;
	color: var(--themeColor1);
	top: 8px;
	display: inline-block;
	position: relative;
}

#content h2 {
	font-size: 26px;
	font-weight: 600;
	color: var(--blackColor);
}
#content h3 {
	font-size:20px;
	font-weight:600;
	color: var(--blackColor);
}
#content h2::before, 
#content h3::before, 
#content h4::before {
  display: block;
  content: "";
  margin-top: -100px;
  height: 100px;
  visibility: hidden;
}
#content a {
	font-weight:600;
	text-decoration: underline dotted;
	color: var(--themeColor1);
}
.summary-index {
    font-size: 1.1rem;
	font-weight: bold;
    color: var(--themeColor1);
    margin-right: 0.2em;
}
#summary-list ul li i {
	color: var(--themeColor1);
}
#summary-list li::marker,
#summary-list ul li::marker {
  content: '';
  display: none;
}

#summary-list {
    list-style: none;
    padding-left: 0;
}
#summary-list li {
    margin: 0; 
	font-weight:400;
}
#summary-list li.level-2 {
    margin-left: 20px;
}
#summary-list ul li {
	margin: 5px 0;
}
#summary-list a {
    text-decoration: none;
    color: var(--blackColor);
}
#summary-list a:hover {
    text-decoration: none;
	color: var(--themeColor1);
}
#summary-list a.active {
    font-weight: bold;
	color: var(--themeColor1);
}
.auteur-article {
	position:relative;
	display:block;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
	margin-top:30px;
	padding:10px 0;
}
.sidebar-widget .box-content h2.big-title {
	font-size: 20px;
	line-height: 24px;
	height: auto;
}
.more-article {
	background-color: #F5F5F5;
}

/***********************************************************************
	TEAM
***********************************************************************/
.photo-article.team {
    aspect-ratio: 1/1!important;
}

/***********************************************************************
	PERSONA
***********************************************************************/
.auteurs h2 {
	font-size: 26px;
	color: var(--blackColor);
	font-weight:600;	
}
.portrait img {
	border-radius:100%;
}

/***********************************************************************
	DIVERS
***********************************************************************/


/***********************************************************************
	CONTACT
***********************************************************************/
.contact-form.formulaire {
	position:relative;
	background-color: var(--bgColor);
	border-radius: 8px;
	padding: 32px;
}
.cv {
    margin-bottom: 20px;
}
.form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: var(--whiteColor);
  background-clip: padding-box;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.contact-form label {
  display: inline-block;
  margin-bottom: .5rem;
  color: var(--blackColor);
  font-size: 16px;
}
.contact-form input {
  height: 45px;
  border: 1px solid #ddd;
  box-shadow: none;
  border-radius: 0;
}
.contact-form input {
  padding: 6px 20px 6px 60px;
}
.contact-form .captcha input {
	padding: 6px 20px 6px 20px;
}
.contact-form textarea {
	border: 1px solid #ddd;
	box-shadow: none;
	border-radius: 0;
}
.contact-form .cv i {
  font-size: 22px;
  position: absolute;
  left: 16px;
  color: #8e8e8e;
  top: 45px;
  padding: 0px 0px;
}
.contact-form .cv i {
  left: 13px;
  top: 29px;
  border-right: 0px solid #ddd;
  padding: 13px 17px;
  font-size: 18px;
}
.contact-form .cv i {
  background: var(--themeColor1);
  color: #fff;
}
.contact-form .submit-btn-wrapper button {
  background-color: var(--themeColor1);
  width: 100%;
  height: 45px;
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: 600;
  color: var(--whiteColor);
  border: 0;
  outline: 0;
  margin-top: 30px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .submit-btn-wrapper:hover button {
    background-color: var(--themeColor3);
}
.contact-form .submit-btn-wrapper button {
  width: 100%;
}
.alert-danger {
	padding: 5px 10px;
	top: 5px;
	float: right;
	border-radius: 0;
	font-size: 14px;
}
#contact h5.card-title {
	margin:0;
	color: var(--whiteColor);
}
@media (min-width:992px) {
	#contact .alert {
	position: absolute;
	right: 13px;
	top: -5px;
	}
	#contact .alert.captcha-error {
	top: -15px;
	}
}
@media (max-width:991px) {
	#contact .alert {
	position: relative;
	top: 4px;
	}
}

.card .logo-contact img {
  position: relative;
  width: auto;
  height: auto;
  transform: scale(1);
  transition: none;
}
.card:hover .logo-contact img {
  box-shadow: none!important;
}
.infos-contact .card-header {
	background: var(--themeColor1);
	color:  var(--whiteColor);
	font-size:20px;
	font-weight:600;
}
.infos-contact .card-body {
	background: var(--bgColor);
}


/***********************************************************************
	FOOTER
***********************************************************************/
.more-home {
	background: var(--themeColor2);
}
.more-home h4, .more-home p {
	color: var(--whiteColor);
}
.more-home h4 {
	font-size:20px;
	font-weight:600;
}
.more-home p {
	margin:0;
}
.more-home p > a,
.more-home p > a:hover {
	color: #cb9744;
}

#footer {
	position:relative;
}
/*-- Footer copyright --*/
#footer .copyright {
	background: var(--bgCopyright);
	line-height: 22px;
	padding: 30px 0 30px;
}
#footer .copyright, 
#footer .copyright a {
	color: var(--whiteColor);
	font-weight: 400;
}
#footer .copyright a:hover {
	color: var(--whiteColor); 
}
#footer .copyright ul {
	margin-bottom:0;
}
#footer .copyright ul > li {
	font-size:14px;
}
#footer .copyright  .list-inline-item:not(:last-child) {
	margin: 0 5px;
}

@media (max-width:576px) {
	#footer .copyright .list-inline-item {
	display: block;
	padding:5px 0;
	}
}

/***********************************************************************
	TO TOP
***********************************************************************/
#back-to-top {
    position: fixed;
    width: 50px;
	height: 50px;
	bottom: 30px;
	right: 30px;
    z-index: 9999;   
    cursor: pointer;
    background-image: url(../images/back-to-top.png);
	background-repeat: no-repeat;
	background-position: 50% 48%;
	background-color: rgba(0, 0, 0, 0.25);
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 100%;
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;
    opacity: 0;
}
#back-to-top:hover {
	background-color: var(--themeColor1);
	opacity: 1;
}
#back-to-top.show {
    opacity: 1;
}

@media (max-width:991px) {
	.order-first {
    order: 1 !important;
	}
}
@media (max-width:767px) {
	h1 {
	font-size: 30px;
	}
}