@font-face {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('webfonts/Poppins-Regular.woff2') format('woff2'), url('webfonts/Poppins-Regular.ttf') format('truetype');
}

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-family: "Poppins-Regular", sans-serif;
	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-family: "Poppins-Regular", sans-serif;
	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;
}

@media(max-width:991px) {
	.hero-banner-bg.cover-image {
	background-size:cover!important;
	background-position: left center!important;
	}
}
.bg-color {
	background-color: var(--bgColor);
}
span.nofollow-link {
  cursor: pointer;
}
span.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;
}

.content-section.homecat:nth-child(even) {
  background-color: #F5F5F5;
}
.content-section.homecat:nth-child(odd) .order-first {
	order: 1 !important;
}

.item-content h2.h2,
.item-content h3.h2 {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 8px;
}
.hero-row .item-content h2.h2,
.hero-row .item-content h3.h2 {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 0!important;
}

.content-section.homecat .hero-row h3 > a {
  font-size: 20px;
  font-weight: 600;
  color: var(--whiteColor);
}

/***********************************************************************
	MENUHEADER
***********************************************************************/
.navik-menu ul li > a {
	font-size: 16px;
	font-weight: 600;
	font-family: "Open Sans", sans-serif;
}
.navik-menu > ul > li:hover > a, 
.navik-menu > ul > li.current-menu > a {
	color: var(--themeColor1);
}
.navik-menu ul ul li > a {
	font-size: 16px;
	font-style: normal;
}
@media (min-width: 768px) {
	.header-shadow-wrapper::after {
	box-shadow: none;
	}
	.sticky .header-shadow-wrapper::after {
	box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.1);
	}
}
@media (min-width: 1200px) {
	.navik-header .logo img {
	max-height: 70px;
	}
	.navik-header.sticky .logo img {
	max-height: 60px;
	}
}
@media (max-width:1023px) {
	.navik-header .logo {
	padding: 10px 0 10px 0;
	text-align: left;
	}
	.navik-header .logo img {
	max-width: 70%;
	}	
}
 
/***********************************************************************
	HEADING
***********************************************************************/
div.heading {
  position: relative;
  width: 90%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}
.heading h2 {
  text-align:center; 
  font-size:26px; 
  letter-spacing:1px;  
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 16px 0;
  grid-gap: 22px;
}

.heading h2:after,.heading h2:before {
  content: " ";
  display: block;
  border-bottom: 2px solid #ccc;
}
@media (max-width:767px) {
	.more-article div.heading {
	width: 100%;
	}
	.more-article .heading h2 {
	display: block;
	}
	.more-article .heading h2::after, 
	.more-article .heading h2::before {
	border-bottom: none;
	}	
}

/***********************************************************************
	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, "");
	}
}

/***********************************************************************
	TOP HOMEPAGE
***********************************************************************/
.homepage {	
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 2;
	width: 100%; 
	padding:100px 0;
}
.homepage::before {
	position:absolute;
	content:"";
	left:0; 
	top:0;
	width: auto;
	height: auto;
	background: rgba(0,0,0,.4);
	z-index:0;
}  
.homepage .top-home-page-content {
    position: relative;
	z-index: 100;
}
@media (min-width:992px) {
	.homepage .top-home-page-content {
	margin-top:30px;
	}
}
.homepage h1 {
	font-size: 50px;
	margin-bottom: 0;
	line-height: 1.2;
	color: var(--whiteColor);
	font-weight:600;
}
.home-title {
	position:absolute;
	content:"";
	background: rgba(0,0,0,.5);
	left:10px;
	right:10px;
	bottom:10px;	
}
.home-title h2 {
	color: var(--whiteColor);
	font-size:20px;
	padding:10px 10px;
	margin:0;
	font-weight:600;
}
.home-title:hover {
	background: var(--blackColor);
	-webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; 	
}
.home-title:hover a {
	color: var(--whiteColor);
	text-decoration:none;
}
.cat {
	position:absolute;
	content:"";
	background: var(--themeColor1);
	color:#ffffff;
	padding:3px 5px;
	top:-24px;
	font-size:14px;
}
@media (min-width:768px) and (max-width:992px) {
	.homepage {
	padding:50px 0;
	}
	.homepage h1 {
	font-size: 40px;
	padding: 10px 0;
	margin: 0;
	}
}
@media (max-width:767px) {
	.homepage {
	padding:30px 0;
	}
	.homepage .top-home-page-content {
	top: 0;
    transform: translateY(0);
	}
	.homepage h1 {
	font-size: 30px;
	padding: 0;
	}
	.home-title h2 {
	font-size:18px;
	}
}
.slider-title {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--whiteColor)
}
.slider-title h1 {
  color: var(--whiteColor)
}
.slider-desc {
	position:relative;
	margin:0 auto 30px;
	font-size: 16px;
	max-width:600px;
	color: var(--whiteColor)
}
@media (min-width: 768px) {
	.slider-title h1 {
	font-size: 56px;
	margin-bottom: 0;
	}
}
@media (max-width:767px) {
	.slider-title {
	margin-bottom: 15px;
	}
}
.photo-article-carousel {
	position: relative;
	aspect-ratio: 16/9;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}
@media (max-width: 576px) {
	.photo-article-carousel { aspect-ratio: 4/3; }
}
.photo-article-carousel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	pointer-events: none;
}

/***********************************************************************
	TOP PAGE
***********************************************************************/
.hero-banner.top-page {
	position: relative;
	display: table;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.hero-banner.top-page::after {
	position: absolute;
	content: "";
	transform: translate(0, 0);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
}
@media (min-width:992px) {
	.hero-banner-inside {
	margin-top:30px;
	}
}
.hero-banner.top-page .banner-title {
    margin-bottom: 20px;
}
.hero-banner.top-page .banner-title h1 {
	position:relative;
	z-index:10;
	color: var(--whiteColor);
	text-transform: none;
    font-size: 34px;
}
.hero-banner.top-page .top-heading {
	position:relative;
	z-index:10;
}
@media (min-width:768px) {
	.hero-banner.top-page {
	padding:100px 0;
	}
}
@media (max-width: 767px) {
	.hero-banner.top-page {
	padding:50px 0;
	}
}

/***********************************************************************
	CATEGORIES HOMEPAGE
***********************************************************************/
.heading-style .heading-inner {
	padding-bottom: 5px;
}
.heading-style .heading-inner:after {
	content: '';
	position: absolute;
	bottom: 1px;
	height: 1px;
	width: 100%;
	background: var(--themeColor1);
	left: 0;
}
.heading-style.heading-center {
	text-align: center;
}
.heading-style.heading-center .heading-inner:after {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.title-categorie {
	position: relative;
	margin-bottom:20px;
	display: inline-flex;
	align-items: center;
}
.title-categorie h2 {
	margin: 0;
	font-size:30px;
} 
.title-categorie .menu-icon {
	position:absolute; 
	margin: 0;
	transform: translate(-70px, 12px);
} 
.menu-icon {
	font-size: 60px;
	color: var(--themeColor1);	
}
@media (min-width: 1200px) {
  .header-transparent-on .navik-menu > ul > li:hover > a, 
  .header-transparent-on .navik-menu > ul > li.current-menu > a, 
  .header-opacity-on .navik-menu > ul > li:hover > a, 
  .header-opacity-on .navik-menu > ul > li.current-menu > a {
    color: var(--whiteColor);
	text-decoration:underline;
  }
}
@media (max-width:767px) {
	.title-categorie h2 {
	font-size:22px;
	}
	.title-categorie .menu-icon {
	transform: translate(-55px, 8px);
	} 
	.menu-icon {
	font-size: 45px;
	}
}

/***********************************************************************
	BLOC ARTICLE
***********************************************************************/
.card.item-preview.h-100 { height: 100%; }
/* PARENT image qui gère le RATIO */
.photo-article {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;    
    flex-shrink: 0;
    flex-grow: 0;
}
@media (max-width: 576px) {
    .photo-article { aspect-ratio: 4/3; }
}
/* IMAGE visible + animations */
.card img,
.hero-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1.08);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
    will-change: transform;
}
.card:hover img,
.hero-row .col-lg-6:hover img {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.homecat .card,
.categories .card {
	border: none;
}
@media (min-width:1200px) {
	.item-preview {
	margin-top: 20px;
	margin-bottom: 0;
	}
}	
.item-preview .item-content {	
	position: relative;
	padding-top: 20px;
	padding-bottom:20px;
	line-height: 1.3;
	background-color: #fff;
	text-align: center;
	transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
	height:100%;
}
.item-preview .item-content p {
	margin-bottom:0;
}
.homecat .photo-article,
.categories .photo-article {
	border-radius: 8px 8px 0 0;
}
.homecat .hero-row .photo-article,
.categories .hero-row .photo-article {
	border-radius: 8px;
}

@media (min-width: 768px) {
  .item-preview .item-content {
    margin: 0;
	padding: 15px 20px 0;
	border-radius: 0 0 8px 8px;
  }
}
@media (max-width:767px) {
	.item-content.flex-grow-1.shadow {
	box-shadow: none!important;
	}
	.hero-row .item-preview .item-content,
	.item-preview .item-content {	
	padding: 20px 10px;
	}
	.hero-row .item-content h2.h2, 
	.hero-row .item-content h3.h2 {
	margin-bottom: 8px!important;
	}
	.homecat .hero-row .photo-article, 
	.categories .hero-row .photo-article {
	border-radius: 8px 8px 0 0;
	}
}


/***********************************************************************
	CATEGORIE LISTE
***********************************************************************/
.cat-plus {
	background: #f5f5f5;
}
.hero-row { 
	align-items: center; 
}
.hero-row .photo-article { 
	width: 100%; 
}
@media(min-width:992px) {
	.hero-row .item-content p {
	display:none;	
	}
}
@media (min-width:992px) {
	.hero-row .col-lg-6  {
	position:relative;
	}
	.hero-row .item-content { 
	position: absolute;
	content: "";
	left: 25px;
	right: 25px;
	padding:10px 20px;
	background: rgba(0,0,0,.5); 
	z-index:10;
	height: auto;	
	}
	.hero-row .item-content:hover {
    background: var(--blackColor);
	-webkit-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; 
	}
	.hero-row .item-content:hover h2 > a,
	.hero-row .item-content:hover h3 > a {
    text-decoration: none;
	}
	.categories .hero-row .item-content { 
	bottom: 15px;
	}
	.homecat .hero-row .item-content { 
	bottom: 25px;
	}
	.hero-row h2.h2 > a,
	.hero-row h3.h2 > a {
	font-size:20px;
	font-weight:600;
	color: var(--blackColor);
	margin: 0;
	}
	.hero-row .item-content h2.h2 > a {
	color: var(--whiteColor);	
	}
}
@media (max-width:991.98px){
	.hero-row .col-lg-6 { margin-bottom:1.5em; }
}
@media (max-width:767px) {
	.row.hero-row,
	.row.articles-row {
	margin: 0;
	}
	.hero-row .item-content { 
	padding:0; 
	text-align: center;
	}
	.item-content h2.h2 > a, 
	.item-content h3.h2 > a {
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--themeColor1);
	}
}
.text-cat {
	background:#fff;
	padding:25px 20px 5px;
	border:none;
	border-radius:8px;
	background-color: #F5F5F5;
}
.text-cat a {
	font-weight:600;
	color: var(--themeColor1);
}
.text-cat a.btn {
	font-weight:500;
}

#catpresentation h2 {
	font-size:26px;
	color: var(--blackColor);
}
#catpresentation h3 {
	font-size:20px;
	color: var(--blackColor);
}
.hero-row .redaction {
	display:none;
}
.redaction {
	position:relative;
	display:block;
	text-align: center;
	padding:8px;
	font-size:12px;
	background:rgba(255,255,255,.6);
	color: var(--blackColor);
}
/*
.auteur .auteur-text {
  display: inline-block;
  color: var(--whiteColor);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  padding-left: 5px;
}
*/
/***********************************************************************
	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-widget {
	position: relative;
	padding: 24px 24px;
	border-radius: 8px;	
	background: var(--bgColor);
}
#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-list {
    list-style: none;
    padding-left: 0;
}
#summary-list li {
    margin: 5px 0; /* Espacement entre les éléments */
	font-weight:400;
}
#summary-list li.level-2 {
    margin-left: 20px; /* Indentation pour les titres <h3> */
}
.summary-index {
    font-size: 1.1rem;
	font-weight: bold;
    color: var(--themeColor1);
    margin-right: 0.2em;
}
#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
***********************************************************************/
.bubble {
    position: relative;
    background: var(--themeColor1);
    color: var(--whiteColor);
    font-size: 22px;
    line-height: 60px;
    text-align: center;
    width: 100%;
    height: auto;
    border-radius: 6px;
    padding: 0px;
	margin-bottom:10px;
}
.bubble:after {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-width: 0 20px 13px 0;
    border-color: transparent var(--themeColor1) transparent transparent;
    bottom: -13px;
    left: 10%;
    margin-left: -10px;
}

/***********************************************************************
	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);
}

/***********************************************************************
	SHAPE DIVIDER
***********************************************************************/
.shape-4664{
	overflow:hidden;
	position:relative;
}
.shape-4664::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% 26px;
	background-position: 50% 100%;    
	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.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" fill="%23ffffff"/></svg>'); 
}
@media (min-width:768px){
	.shape-4664::before{
	background-size: 100% 52px;
	background-position: 50% 100%;   
	}  
} 
@media (min-width:1025px){
	.shape-4664::before{ 
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw; 
	background-size: 100% 60px;
	background-position: 50% 100%;  
	}
}
@media (min-width:2100px){
	.shape-4664::before{
	background-size: 100% calc(2vw + 60px);
	}
}

.shape-9475{
	overflow:hidden;
	position:relative;
}
.shape-9475::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% 26px;
	background-position: 50% 0%;    
	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="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23ffffff"/></svg>'); 
}
@media (min-width:768px){
	.shape-9475::before{
	background-size: 100% 52px;
	background-position: 50% 0%;   
	}  
} 
@media (min-width:1025px){
	.shape-9475::before{ 
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw; 
	background-size: 100% 60px;
	background-position: 50% 0%;  
	}
}
@media (min-width:2100px){
	.shape-9475::before{
	background-size: 100% calc(2vw + 60px);
	}
}
 
.shape-2462{
	overflow:hidden;
	position:relative;
}
.shape-2462::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% 26px;
	background-position: 50% 100%;    
	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.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" fill="%23ffffff"/></svg>'); 
}
@media (min-width:768px){
	.shape-2462::before{
	background-size: 100% 52px;
	background-position: 50% 100%;   
	}  
} 
@media (min-width:1025px){
	.shape-2462::before{ 
	bottom: -0.1vw;
	left: -0.1vw;
	right: -0.1vw;
	top: -0.1vw; 
	background-size: 100% 60px;
	background-position: 50% 100%;  
	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.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" fill="%23f5f5f5"/></svg>'); 
	}
}
@media (min-width:2100px){
	.shape-2462::before{
	background-size: 100% calc(2vw + 60px);
	}
}

/***********************************************************************
	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;
	}
}