* {
	-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: #555;
	background-color:#ffffff;
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
}
html,
body,
button,
input,
select,
textarea {
	font-family: "Roboto", sans-serif;
}
article,
aside,
figcaption,
figure,
footer,
header,
nav,
section {
  display: block;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
address, p, hr {
  margin: 0;
  margin-bottom: 15px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
ol, ul,
li > ul,
li > ol {
  margin: 0 0 15px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Roboto", sans-serif;
	line-height: 1.4;
}
h1 {
	font-size: 30px;
	font-weight: 500;
	color: var(--primaryColor);
}
h2 {
	font-size: 24px;
	font-weight: 500;
	color: var(--primaryColor);
}
h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--primaryColor);
}

h4, h5, h6 {
	font-weight: 500;
	color: var(--primaryColor);
}
h4 {
	font-size: 18px;
}

h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
p {
	line-height:1.4
}
a, a:visited {
	transition: all 0.4s ease-in-out 0s;
	color: var(--secondaryColor);
	text-decoration: none;
}
a:hover,
a:focus,
a:active {
	text-decoration:underline;
	outline: none;
	color: var(--secondaryColor);
}
*:focus {
    box-shadow: none !important;
}
.transition-3s {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.cover-image {
	background-size:cover!important;
}
.height-500 {
	min-height:500px;
}
.height-750 {
	min-height:750px;
}

/******************************************************************************
	MENUHEADER
*******************************************************************************/
.navik-header {
	background-color: var(--bgHeader);
}
.navik-menu ul li > a {
	font-size: 16px;
	font-weight: 500;
}
.navik-menu ul li.current-menu > a,
.navik-menu ul li > a:hover {
	color: var(--secondaryColor);
}
.header-shadow-wrapper::after {
	box-shadow:none;
}
@media (min-width: 1200px) {
  .navik-header.sticky .logo img {
    max-height: 50px;
  }
}
@media (max-width:1199px) {
	.navik-header .logo img {
	height: 60px;
	}
	.navik-header .logo {
	padding: 10px 40px 10px 0;
	text-align: left;
	}
}

/******************************************************************************
	HOVER IMAGES HOME
*******************************************************************************/
.image-sweep-1 {
	overflow: hidden;
}
.image-overlay-container p {
	font-size:14px;
	color: #fff;
	padding: 0 8px;
}
.image-overlay-container {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	padding:3px 0;
	text-align:center;
	overflow:hidden;
	z-index:1;
	background:rgba(0,0,0,.75);
	-webkit-transition:all .7s ease;
	transition:all .7s ease
}
.image-sweep-1 .image-overlay-container {
	background: 0;
	opacity: 0;
	-webkit-transition: all .8s ease;
	transition: all .8s ease;
}
.image-overlay-container .drop-cap-container {
	padding: 0 8px;
	text-align: left;
}
.image-sweep-1 [class^="image-overlay-vertical-"] {
	background: rgba(0,0,0,.75);
	z-index: -5;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.image-sweep-1 .image-overlay-vertical-left {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 100%;
	-webkit-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	transform-origin: 0 100%;
	-webkit-transform: rotateZ(-90deg);
	transform: rotateZ(-90deg);
}
.image-sweep-1 .image-overlay-vertical-right {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 100%;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	-webkit-transform: rotateZ(90deg);
	transform: rotateZ(90deg);
}
.image-sweep-1:hover .image-overlay-container {
	opacity:1
}
.image-sweep-1:hover .image-overlay-vertical-left,
.image-sweep-1:hover .image-overlay-vertical-right {
	-webkit-transform:-webkit-rotateZ(0);
	transform:rotateZ(0)
}
.drop-article-info {
	position:absolute;
	top:50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.drop-article-info a {
	font-size: 14px;
	line-height: 24px;
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 5px;
	padding: 3px 10px;
}	
.image-sweep-1:hover {
 cursor:pointer
}




/******************************************************************************
	HEADING H2
*******************************************************************************/
.section-title {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  position: relative;
}
.section-title::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 88px;
  height: 3px;
  background-color: var(--secondaryColor);
}
.section-title h2 {
  font-size: 36px;
  line-height: 30px;
  margin-bottom:0;
  color: var(--primaryColor)
}
@media only screen and (min-width: 1400px) {
  .section-title h2 {
    font-size: 36px;
    line-height: 30px;
    display: inline-block;
    position: relative;
  }
}
/******************************************************************************
	BREADCRUMP
*******************************************************************************/
.breadcrumb-wrap {
	padding: 30px 0 20px;
	background-color: var(--bgBreadcrumb);
}
.breadcrumb-title {
	font-size: 36px;
	line-height: 30px;
	font-weight: 700;
	margin: 0 0 20px;
	text-align: center;
	color:#000;
}

.breadcrumb-menu {
	text-align: center;
}
ul.breadcrumb-menu {
	padding-left: 0!important;
}
.breadcrumb-menu li {
	display: inline-block;
	position: relative;
	color: var(--primaryColor);
	font-weight: 500;
	padding-right: 10px;
	margin-right: 11px;
	font-size: 15px;
}
.breadcrumb-menu li:after {
	position: absolute;
	font-family:"Font Awesome 6 Free";
	top: 1px;
	right: -7px;
	content: "/";
	font-size: 14px;
	font-weight:900;
	color:#AAAAAA;
}
.breadcrumb-menu li:first-child {
	margin-left: 0;
}
.breadcrumb-menu li:first-child a {
	padding-left: 0;
}
.breadcrumb-menu li:last-child {
	margin-right: 0;
	padding-right: 0;
}
.breadcrumb-menu li:last-child:after {
	display: none;
}
.breadcrumb-menu li a {
	display: inline-block;	
	position: relative;
	color: var(--secondaryColor);
}
.breadcrumb-menu li a:hover {
	color: var(--secondaryColor);
	text-decoration:underline;
}
.breadcrumb-menu li:last-child a:after {
	display: none;
}

/******************************************************************************
	SIMILAIRES
*******************************************************************************/
.carousel .owl-item {
	border-radius: 5px;
	position: relative;
}
.carousel .owl-item .news-cat {
	top: 30px;
	left: 30px;
}
.carousel .owl-item .news-cat {
	position: absolute;
	font-size: 14px;
	line-height: 24px;
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 5px;
	padding: 3px 10px;
}
.carousel .owl-item::before {
	position: absolute;
	border-radius:5px;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	z-index: 0;
}
.title-carousel {
	position:absolute;
	content:"";
	bottom:30px;
	left:30px;
	right:30px;
	z-index:10;
	text-align:left;
}
a.title-carousel h3 {
	color:#fff!important;
	font-size:24px;
	font-weight:600;
}
@media (min-width:768px) {
	.carousel .owl-item {
	min-height:540px;
	}
}
@media (max-width:576px) {
	.carousel .owl-item {
	min-height:340px;
	}
}

/******************************************************************************
	HOMEPAGE
*******************************************************************************/
.boxtoppage {
	border: 1px solid #eee;
	border-radius: 5px;
	padding: 15px 35px;
	margin: 0 0 20px;
	position: relative;
	background-image:url(../images/bg_box.jpg);
	background-repeat:no-repeat;
	background-position:0 0;
	background-size:cover;
}
.boxtoppage h1,
.boxtoppage h2 {
	color: var(--primaryColor);
	line-height: 1;
	margin-bottom: 10px;
}
.boxtoppage p {
	margin-bottom: 0;
}

.news-card1,
.news-card2 {
	position: relative;
}
.news-card1 .news-card-img,
.news-card2 .news-card-img {
	border-radius: 5px;
	position: relative;
}
@media (min-width:768px) {
	.news-card1 .news-card-img {
	min-height:440px;
	}
	.news-card2 .news-card-img {
	min-height:240px;
	}
	.last-articles .news-card2 .news-card-img {
	min-height:300px;
	}
}
@media (max-width:576px) {
	.news-card1 .news-card-img,
	.news-card2 .news-card-img {
	min-height:240px;
	}
	.last-articles .news-card2 .news-card-img {
	min-height:240px;
	}
}
.news-card1 .news-card-info {
	margin: 10px 0 0;
}
.news-card1 .news-card-info .news-cat {
	top: 30px;
	left: 30px;
}
.news-card2 .news-card-img .news-cat {
	top: 20px;
	left: 20px;
}
.news-card1 .news-card-info .news-cat, 
.news-card2 .news-card-img .news-cat {
	position: absolute;
	font-size: 14px;
	line-height: 24px;
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 5px;
	padding: 3px 10px;
	z-index: 10;
}

.news-card1 .news-card-info h2 {
	font-size: 36px;
	line-height: 42px;
	margin: 0 0 9px;
	color: var(--primaryColor);
}
.news-card2 .news-card-info h3 {
	font-size: 20px;
	line-height: 30px;
	margin-top:5px;
	margin-bottom: 15px;
}

.news-card1 h2 a, 
.news-card2 h3 a {
	color: var(--primaryColor);
	position: relative;
	background-position: 0% 100%;
	background-repeat: no-repeat;
	background-size: 0% 1px;
	transition: background-size 0.7s;
}
.news-card1 h2 a:hover,
.news-card2 h3 a:hover {
	text-decoration:none!important;
	background-image: linear-gradient(#111, #111);
	background-size: 100% 1px;
}
.news-card1 .news-card-info p {
	margin-bottom: 18px;
	line-height: 1.5;
}

/***********************************************************************
	CATEGORIES
***********************************************************************/
article.categorie {
	position:relative;
	margin-bottom: 20px;
}
.categorie-card {
	position: relative;
	margin-bottom:25px;
}
.categorie-card .categorie-card-img {
	border-radius: 5px;
	position: relative;
}
.categorie .section-title {
	margin-bottom: 15px;
}
.categorie .section-title h2 {
	font-size: 26px;
	line-height: 30px;
}
.categorie .section-title h2 a {
	color: var(--primaryColor);
}
.categorie .section-title h2 a:hover {
	color: var(--secondaryColor);
	text-decoration:none!important;
}
.categorie .content-categorie {
	position:relative;
}
.categorie-card .categorie-card-img .news-cat {
	top: 30px;
	left: 30px;
}
.categorie-card .categorie-card-img .news-cat {
	position: absolute;
	font-size: 14px;
	line-height: 24px;
	background-color: var(--secondaryColor);
	color: var(--whiteColor);
	border-radius: 5px;
	padding: 3px 10px;
}

@media (min-width:768px) {
	.categorie .categorie-card-img {
	min-height:320px;
	}
}
@media (max-width:576px) {
	.categorie .categorie-card-img {
	min-height:240px;
	}
}
.bloc-author .list-style {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bloc-author .author-info li {
	display: inline-block;
	position: relative;
	color: var(--primaryColor);
	list-style: none;
	margin-right: 15px;
	padding-left: 0;
	font-size: 16px;
}
.bloc-author li.author {
  display: inline-flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.author-info li.author a,
.author-info li.author a:visited {
	color: var(--primaryColor);
	text-decoration:underline;
}
.author-info li.author a:hover {
	color: var(--secondaryColor);
}
.author-info li.author .author-img img {
  width: 30px;
  height: 30px;
  position: relative;
  top: -5px;
  border-radius: 50%;
  margin-right:5px;
}
.author-info li.author .author-img {
	font-size:16px;
}
@media (min-width: 1200px) {
	.bloc-author {
	position:absolute;
	bottom:25px;
	float:right;
	}
}
@media (max-width: 1199px) {
	.bloc-author {
	position:relative;
	float:left;
	}
}

/******************************************************************************
	ARTICLES
*******************************************************************************/
.article-card {
	position: relative;
	margin-bottom:25px;
}
.article-card .article-card-img {
	border-radius: 5px;
	position: relative;
}

.post-article h2 {
	position:relative;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom:10px;
	color: var(--primaryColor);
	font-size: 30px;
	line-height: 30px;
}
.post-article h3 {
	position:relative;
	margin-bottom:10px;
	color: var(--primaryColor);
	font-size: 22px;
	line-height: 22px;
}
.post-article h2::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 88px;
	height: 3px;
	background-color: var(--secondaryColor);
}
.post-article p {
	text-align:justify;
}
.post-article img {
	position: relative;
	margin-bottom:25px;
	border-radius: 5px;
	width:100%;
	height:auto;
	margin-bottom:25px;
}
@media (min-width:768px) {
	.article-card .article-card-img {
	min-height:580px;
	}
}
@media (max-width:576px) {
	.article-card .article-card-img {
	min-height:240px;
	}
}

/******************************************************************************
	PERSONA
*******************************************************************************/
.cta-two {
	position: relative;
	text-align: center;
	margin: 25px 0 50px;
}
.cta-two::after {
	position: absolute;
	top: 13px;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #eee;
	z-index: -1;
}
.cta-two p {
	display: inline-block;
	margin: 0;
	line-height: 18px;
	padding: 5px 18px;
	background-color: var(--whiteColor);
}
.cta-two {
	margin: 25px 0 15px;
}

.persona-card .persona-shape {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
@media only screen and (min-width: 1400px) {
  .persona-card {
    padding: 100px 52px 100px 100px;
  }
}
.persona-card {
  background-color: var(--bgColor);
  position: relative;
  z-index: 1;
  padding: 50px 50px 50px 50px;
}

/***********************************************************************
	CONTACT
***********************************************************************/
#contact .form-label {
	font-weight: 600;
}
#contact .alert {
	padding: 2px 5px;
	margin-bottom:0;
}
#contact .form-control {
	border-radius: .375rem;
	border-bottom: 2px solid #333;
}
#contact .card .card-body h5 {
	color:#ffffff!important;
	margin:0;
}
@media (min-width:992px) {
	#contact .alert {
	position: absolute;
	right: 0;
	top: 0px;
	}
	#contact .alert.captcha-error {
	top: 55px;
	}
}
@media (max-width:991px) {
	#contact .alert {
	position: relative;
	top: 4px;
	}
}
/***********************************************************************
	FOOTER
***********************************************************************/
#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);
}
#footer .copyright a:hover {
	color: var(--secondaryColor); 
}
#footer .copyright ul {
	margin-bottom:0;
}
@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: 12px;
	-webkit-transition: all 250ms linear;
	-moz-transition: all 250ms linear;
	transition: all 250ms linear;
    opacity: 0;
}
#back-to-top:hover {
	background-color: var(--secondaryColor);
	opacity: 1;
}
#back-to-top.show {
    opacity: 1;
}

