* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	overflow: hidden;
	overflow-y: auto;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight:400;
	overflow: hidden;
	font-size:16px;
	color: var(--themeColortext);
	background: #fff;
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html,
body,
button,
input,
select,
textarea {
	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,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Akatab", serif;
	font-style: normal;
	font-weight:400;
	line-height: 1.2;
}
h1 {
	font-size: 56px;
	font-weight: 600;
	color: var(--themeBlack);
	margin-bottom:10px;
}
h2 {
	font-size: 30px;
	font-weight: 600;
	color: var(--themeBlack);
}
.h2 {
	font-weight: 700;
	color: var(--themeBlack);
}
h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--themeBlack);
}

h4, h5, h6 {
	font-weight: 500;
	color: var(--themeBlack);
}
h4 {
	font-size: 18px;
}

h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
a,
a:visited,
a:focus {
  outline: none;
  color: var(--themeBlack); 
  text-decoration:none;
}
a:hover {
	outline: none;
	text-decoration: none;
	color: var(--themeColor2);
}
.page-section,
.content-section {
	position:relative;
	padding: 1.5rem 0 0!important;
	background: #ffffff;
}
.page-section {
	min-height:300px;	
}

.bg-color {
	background-color: var(--themebgColor);
}
.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(--themeWhite);
	text-decoration:none;
}
.height-500 {
	min-height:500px;
}
.height-750 {
	min-height:750px;
}

/***********************************************************************
	MENUHEADER
***********************************************************************/
.navik-fixed-sidebar.sidebar-color-bg,
.sidebar-color-bg ~ .navik-side-content > .logo {
	background-color: var(--themeSidebar);
}
.navik-menu-fixed > ul > li > a {
  font-size: 18px;
  font-weight: 700;
  text-transform:none;
}
.navik-menu-fixed > ul > li > a:hover {
  text-transform: underline dotted!important;
}
.sidebar-color-bg .navik-menu-fixed > ul > li > a.active,
.sidebar-color-bg .navik-menu-fixed > ul > li > a:hover {
  color: var(--themeSummary)!important;
}
@media (min-width: 1200px) {
	.navik-fixed-sidebar .logo img {
	max-width:100%	
	}
}

/***********************************************************************
	FONTS/LINK
***********************************************************************/
a.link-title {
	-webkit-transition: background-size 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition: background-size 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), color-stop(95%, currentColor));
	background-image: linear-gradient(to bottom, currentColor 0%, currentColor 95%);
	background-size: 0 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
}
.card-title a.link-title {
	color: var(--themeBlack);
	margin-bottom:10px;
	line-height:1.2;
}
.categorie a.link-title:hover,
.card-title a.link-title:hover {
	background-size: 100% 2px;
	color: var(--themeColor2);
}
.card.article:hover a.link-title {
	background-size: 100% 2px;
	color: var(--themeColor2);
}

/***********************************************************************
	HEADING
***********************************************************************/
.section-title h2 {	
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--themeColor2);
}
@media (min-width:992px) {
	.section-title h2 {
	font-size: 40px;
	}
}
@media (max-width:991px) {
	.section-title h2 {
	font-size: 18px;
	position:relative;
	left:0;
	margin-bottom:0;
	margin-left: 0;
	}
}

.title_cat .title_name i {
	color: var(--themeColor1);
	margin-right: 8px;
}
/***********************************************************************
	BREADCRUMB
***********************************************************************/
.breadcrumb-item {
	font-size: 14px;
}
.breadcrumb-item a,
.breadcrumb-item.active {
	color: var(--themeWhite);
}
.breadcrumb-item + .breadcrumb-item::before {
	font-weight: 900;
	font-family: "Font Awesome 7 Free";
	content: "\f178";
	color: var(--themeWhite);
	font-size: 12px;
	margin-top: 2px;
}
@media (max-width:767px) {
	.breadcrumb-item {
	display: inline-block;
	width: 100%;
	padding: 3px 0;
	}
	.breadcrumb-item + .breadcrumb-item {
	padding-left: 0;
	}
	.breadcrumb-item + .breadcrumb-item::before {
	float: none;
	content: none;
	}
}

/***********************************************************************
	HEADER HOME
***********************************************************************/
.home-section {
	background: #f8f8f8;
}
.hero-banner {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
	width: 100%;
	height: 500px;
}

.hero-banner img {
	position: absolute;
	width: 100%;
	height: calc(100% - 8px);
	object-fit: cover;	
}
.hero-banner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
  z-index: 1;
}
.hero-banner-inside {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	padding: 0;
	z-index: 5;
	width: 100%;
	height: auto;	
	display:block;
}
.hero-banner-inside h1 {
	font-size:46px;
	font-weight:800;
}
.homepage .hero-banner-inside h1 {
	font-size:46px;
	text-transform: uppercase;
}
.hero-banner-inside h1,
.hero-banner-inside h2 {
	color: var(--themeWhite)
}
@media (max-width:767px) {
	.hero-banner {
	height: 400px;
	}
	.hero-banner.homepage {
	height: 300px;
	}
	.hero-banner-inside h1 {
	font-size:32px;
	}
}



/***********************************************************************
	TOP PAGE
***********************************************************************/
.shape-1417{
overflow:hidden;
position:relative;
}
.shape-1417::before{
content:'';
position: absolute;
bottom: -1px;
left: 0;
right: -1px;
top: -1px;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat; 
background-size: 100% 34px;
background-position: 50% 100%;    
transform: rotateY(180deg);
background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23ffffff"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23ffffff"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23ffffff"/></svg>'); 
}

@media (min-width:768px){
.shape-1417::before{
background-size: 100% 70px;
background-position: 50% 100%;  
transform: rotateY(180deg); 
}  
}
 
@media (min-width:1025px){
.shape-1417::before{ 
bottom: -0.1vw;
left: 0;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 110px;
background-position: 50% 100%; 
transform: rotateY(180deg); 
}
}
@media (min-width:2100px){
.shape-1417::before{
background-size: 100% calc(2vw + 110px);
}
}
 
 
 

/***********************************************************************
	NOUVEAUX ARTICLES
***********************************************************************/
.home-section {
	padding:50px 0;
}
@media (max-width:767px) {
	.home-section {
	margin-top:0;
	}
	.new_article {
	margin:30px 0;
	}
}
.new_article .article-img,
.new_article .article-img.img-middle {
	position: relative;
	overflow: hidden;	
	width:100%;
	border-radius:12px!important;
	border:3px solid var(--themeWhite);
}
.new_article .article-img {
	aspect-ratio:1/1;
}
.new_article .article-img.img-middle {
	aspect-ratio:1/1;
}
.new_article .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: auto;
}
.new_article .article-img.img-middle {
	margin:-25px -60px;
	z-index: 10;
}
.new_article .article-img img:hover{transform : scale(1.1);}

/***********************************************************************
	ARTICLES CARD
***********************************************************************/
.card {
	border:none;
}



/***********************************************************************
	ARTICLE LISTE
***********************************************************************/
.categories .card {
	margin-bottom:1rem;
}
.card.article .article-img {
	aspect-ratio: 4/3;
}


.categories .card,
.categorie .card {
	margin-bottom:1.5rem;
}
.categories .card,
.categorie .card {
	border:none;
	height: calc(100% - 18px);
	overflow:hidden;
}
.categorie  .article-img,
.categories .article-img {
	position: relative;
	overflow: hidden;	
}

.article-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	opacity: 1;
	pointer-events: auto;
}
.article-img img {
	transition:0.8s;
} 
.card.article:hover .article-img img {
	transform : scale(1.1);
}

.article-content h2.card-title,
.article-content h3.card-title {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}
.article-content h2.card-title > a,
.article-content h3.card-title > a {
	color: var(--themeColor2);
}

.content-section.catList {
  position: relative;
  padding: 1.5rem 0 1rem!important;
  content-visibility: auto;
  contain-intrinsic-size: 600px;
  z-index: 50;
}

.carousel-item {
	background:#f8f8f8;
	padding:10px;
	border-radius:10px;
}
.card.article .article-carousel-img {
	aspect-ratio: 16/9;
}
.card.article .article-carousel-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	opacity: 1;
	pointer-events: auto;
	border-radius: 10px;
}
.carousel-item .article-content h2.card-title,
.carousel-item .article-content h3.card-title {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom:20px;
}
.carousel-item .article-content h2.card-title > a,
.carousel-item .article-content h3.card-title > a {
	color: var(--themeColor2);
}

.carousel-control-next, .carousel-control-prev {
  width: 5%;
}

.text-cat p {
	margin-bottom: 0;
	color:#fff;
}

.card-img-top {
	border:none!important;
	box-shadow:none!important;
}

@media (min-width:1199px) and (max-width:1299px) {
	.card.article .article-carousel-img {
	aspect-ratio: 4/3;
	}
	.card.article .article-img {
	aspect-ratio: 1/1;
	}
}

/***********************************************************************
	CATEGORIE LISTE
***********************************************************************/
.catList .card.desc_article {
	background: var(--themeColor3);
	border:none;
	border-radius:10px;
}
.catList .card.desc_article .text-cat,
.catList .card.desc_article .text-cat p {
	color: var(--themeWhite);
	margin-bottom: 0;
}
.catList .card.desc_article .text-cat h2,
.catList .card.desc_article .text-cat h3 {
	color: var(--themeWhite);
}

.article-blog-wrap {
  margin-bottom: 10px;
  position: relative;
}
.article-blog-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	opacity: 1;
	pointer-events: auto;
	overflow: hidden;
	border-radius: 8px;	
}
.article-blog-wrap a img {
  display: inline-block !important;
}
.article-blog-wrap .article-blog-content {
  background-color: rgba(0,0,0,.5);
  position: absolute;
  left: 0;
  bottom: 35px;
  width: 90%;
  padding: 20px;
  transition: all var(--themeTransition) ease-in-out;
}
.article-blog-wrap .article-blog-content span {
  color: var(--themeWhite);
  font-size: 15px;
  display: inline-block;
  margin-bottom: 15px;
  transition: var(--themeTransition);
}
.article-blog-wrap .article-blog-content span a {
  color: var(--themeWhite);
}
.article-blog-wrap .article-blog-content span a:hover {
  color: var(--themeBlack);
}
.article-blog-wrap .article-blog-content h2,
.article-blog-wrap .article-blog-content h3 {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}
.article-blog-wrap .article-blog-content h2 a,
.article-blog-wrap .article-blog-content h3 a {
  color: var(--themeWhite);
}
.article-blog-wrap:hover img {
	filter: grayscale(1);
}
.article-blog-wrap:hover .article-blog-content {
	background: linear-gradient(to bottom,  var(--themeColor1) 0%,var(--themeColor2) 100%);
}
.article-blog-text {
	position:relative;
	margin-bottom:25px;
}
@media (min-width:768px) {
	.article-blog-wrap {
	height: 350px;
	}
}
@media (min-width:992px) {
	.article-blog-wrap .article-blog-content {
	min-height:80px;
	}
}
@media (max-width:991px) {
	.article-blog-wrap .article-blog-content {
	height:auto;
	}
}
@media (max-width:767px) {
	.article-blog-wrap {
	height: 300px;
	}
}

.single-article-content .auteur {
  text-align: right;
  margin-bottom: 0px;
}
.single-article-content .auteur p,
.single-article-content .auteur p a {
  color: #555555;
  font-size:12px;
  margin-bottom:0;
}
.single-article-content .auteur p i {
  color: var(--themeColor1);
  padding-right: 7px;
}


/***********************************************************************
	ARTICLE
***********************************************************************/
.article-photo {
	position:relative;
	overflow: hidden;
	margin-bottom: 20px;
	aspect-ratio:16/9;
	border-radius:20px;
}

.article-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	opacity: 1;
	pointer-events: auto;
}

#content img {
  border: none;
  transition: all 0.4s;
}
#content h2 {
	font-size: 26px;
	font-weight: 600;
	color: var(--themeColor2);
}
#content h3 {
	font-size:20px;
	font-weight:600;
	color: var(--themeBlack);
}
#content h2::before, 
#content h3::before, 
#content h4::before {
  display: block;
  content: "";
  margin-top: -10px;
  height: 10px;
  visibility: hidden;
}
#content a {
	font-weight:600;
	text-decoration: underline dotted;
	color: var(--themeColor2);
}
#content a:hover {
	font-weight:600;
	text-decoration: underline;
	color: var(--themeColor1);
}
#content .fa-li > i {
	color: var(--themeColor1);
}

.title-widget .title-heading {
	text-align: center;
	display: block!important;
	margin-bottom:0;
	border-radius: 10px 10px 0 0;
}
.title-widget .title-heading {
	background-color: var(--themeBgcolor);
	font-size:22px;
	font-weight:600;  
	height: 40px;
	line-height: 40px;
	padding: 0;
	position: relative;
	border-bottom: 20px solid transparent;
	border-top: 0px solid vartransparent;
	transition: all .3s ease-in-out;
}
.title-widget .title-heading {
	color: var(--themeWhite);
}

.sidebar-articles {
	position: relative;
	box-sizing: border-box;
}
.sidebar-articles .sommary {
	background: var(--themeColor3);
	border: none;
	padding:10px;
	border-radius: 0 0 10px 10px;
}
.h2-index {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--themeWhite);
	margin-right: 0.2em;
}
#title-list {
    list-style: none;
    padding-left: 0;
}
#title-list li::marker,
#title-list ul li::marker {
	content: '';
	display: none;
}
#title-list ul li i {
	color: var(--themeSummary);
}
#title-list li {
	margin: 10px 0 5px;
	font-weight: 400;
	border-bottom: 1px dotted var(--themeSummary);
	padding-bottom: 10px;
	font-weight:400;
}
#title-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
#title-list li.level-2 {
    margin-left: 15px;
}
#title-list li.level-2::first-letter {
	font-size: 1rem;
	font-weight:normal;
}
#title-list a {
    text-decoration: none;
    color: var(--themeWhite);
}
#title-list a:hover {
    text-decoration: none;
	color: var(--themeSummary);
}
#title-list a.active {
    font-weight: bold;
	color: var(--themeSummary);
}
.auteur-article {
	position:relative;
	display:block;
	border-top:1px dotted var(--themeColor1);
	border-bottom:1px dotted var(--themeColor1);
	margin-top:30px;
	padding:10px 0;
}
.auteur-article .auteur {
	font-size: 14px;
}

.othersArticles h2 span {
	color: var(--themeColor2);
}

/***********************************************************************
	TEAM
***********************************************************************/
.photo-article.team {
    aspect-ratio: 1/1!important;
}

/***********************************************************************
	PERSONA
***********************************************************************/
.auteurs h2 {
	font-size: 26px;
	color: var(--themeBlack);
	font-weight:600;	
}
.single-team img {
	border-radius:10px;
}


/***********************************************************************
	CONTACT
***********************************************************************/
.contact-form.formulaire {
	position:relative;
	background-color: #F1F1F1;
	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(--themeWhite);
  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(--themeBlack);
  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;
  width:54px;
}
.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(--themeWhite);
  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(--themeColor2);
}
.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(--themeWhite);
}
@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(--themeWhite);
	font-size:20px;
	font-weight:600;
}
.infos-contact .card-body {
	background: #F1F1F1;
}

/***********************************************************************
	CTA FOOTER
***********************************************************************/
.cta {
	position:relative;
	min-height:350px;
	padding: 130px 0 80px;
	overflow: hidden;
	background: linear-gradient(to bottom, var(--themeColor1) 0%,var(--themeColor2) 100%);
}
.cta .card a {
	color: var(--themeColor1);
	font-weight:600;
}
.cta .card a:hover {
	color: var(--themeColor2);
	text-decoration: underline;
}

.cta .card {
	border: 5px solid;
	border-color:  var(--themeColor3);
	border-radius: 12px;
}
.cta .card .btn-cta {
	font-size:18px;
	text-transform:uppercase;
	font-weight:600;
	background: var(--themeColor1);
	border:none;
	color: var(--themeWhite);	
}
.cta .card .btn-cta:hover {
	background: var(--themeColor2);
	border: var(--themeColor2);
	color: var(--themeWhite);	
	text-decoration:none;
} 
@media (min-width:768px) {
	.cta {
	padding: 130px 0 80px;
	}
}
@media (max-width:767px) {
	.cta {
	padding: 80px 0 50px;
	}
}

.about {
	position:absolute;
	content: "";
	width:800px;
	height:auto;
	right: -100px;
	top:-60px;
	object-fit: cover;
	overflow: hidden;
}
.about img {
	width:800px;
	height:auto;
}

.shape-4789{
	overflow:hidden;
	position:relative;
}
.shape-4789::before {
	content:'';
	position: absolute;
	bottom: -1px;
	left: -1px;
	right: -1px;
	top: -1px;
	z-index: 3;
	pointer-events: none;
	background-repeat: no-repeat; 
	background-size: 100% 44px;
	background-position: 50% 0%;    
	background-image: url('data:image/svg+xml;charset=utf8, <svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><g fill="%23ffffff"><path d="M-1-.4h1004v34a874.4 874.4 0 01-178.7 17.8c-68.8-.4-106.2-8.9-150.6-14-172-19.7-238 35.3-411.7 34.2A860 860 0 01-1 27.4"/><path d="M-1 5.4h1004v31c-57.6 13-118 26-178.7 25.8-68.9-.4-106.2-9.7-150.6-15.3-172-21.7-238 38.7-411.7 37.4C201.4 84 110.6 69.4-1 29.5" opacity=".5"/><path d="M492.6 100.6a442.8 442.8 0 01233-4c3.8 1-1.3-2.8-1.9-3.3a36.2 36.2 0 00-11.6-6.1A447 447 0 00476 91c-.6.1 6.9 5.5 7.5 6 2 1.1 6.5 4.3 9 3.6z" opacity=".5"/><path d="M699.5 68.2a336.2 336.2 0 00-181-5.9c-2 .5 4.3 4.5 4.8 4.8 2 1.3 8 5.8 10.8 5.1A332.4 332.4 0 01713 77.6c3.8 1.2-1.4-3-2-3.3a41 41 0 00-11.5-6.1z"/></g></svg>'); 
}

@media (min-width:768px){
	.shape-4789::before{
	background-size: 100% 78px;
	background-position: 50% 0%;   
	}  
} 
@media (min-width:1025px){
	.shape-4789::before{ 
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw; 
	background-size: 100% 90px;
	background-position: 50% 0%;  
	}
}
@media (min-width:2100px){
	.shape-4789::before{
	background-size: 100% calc(2vw + 90px);
	}
}

/***********************************************************************
	FOOTER
***********************************************************************/
#footer {
	position:relative;
}
/*-- Footer copyright --*/
#footer .footer {
	background: var(--themeCopyright);
	line-height: 22px;
	padding: 30px 0 30px;
}
#footer .footer, 
#footer .footer a {
	color: var(--themeWhite);
	font-weight: 400;
}
#footer .footer a:hover {
	color: var(--themeWhite); 
}
#footer .footer ul {
	margin-bottom:0;
}
#footer .footer ul > li {
	font-size:14px;
}
#footer .footer  .list-inline-item:not(:last-child) {
	margin: 0 5px;
}

@media (max-width:576px) {
	#footer .footer .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;
	}
}