/*-----------------------------------------------------------------------------

NE__Com CSS Framework 2026 - V1.0

-------------------------------------------------------------------------------

By Nicolas EVARISTE (https://www.nicolasevariste.com)
© 2026 - All rights reserved - Toute reproduction interdite

------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 Variables
------------------------------------------------------------------------------*/
:root{
	--coul-1: #3e3ef4;	 					/* Couleur : Bleu */
	--coul-2: #efefef;	 					/* Couleur : Gris clair */
		
	--font-1: "Roboto", sans-serif;
	
	--100px: 100px;	
	--50px: 50px;	
	--25px: 25px;	
	--10px: 10px;
	--5px: 5px;
}

/*-----------------------------------------------------------------------------
 Reset
------------------------------------------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
    vertical-align: middle;
}
h1, h2, h3, h4, h4, h5, h6 {
	font-size: inherit;
	font-weight: normal;
	padding: 0;
	margin: 0;
}
form, figure{
	margin: 0;
	padding: 0;
}
iframe {
  border: 0;
  max-width: 100%;
}
pre{
	margin: 0;
	padding: 0;
}
strong{
	font-weight: 500;
}

/*-----------------------------------------------------------------------------
 Général
------------------------------------------------------------------------------*/

/* HTML / Body
--------------------------------------------------*/
html, body {
	height: 100%;
}
body {
	font-family: var(--font-1);
 	font-optical-sizing: auto;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	color: #000000;
	background: #ffffff;
	margin: 0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
	scroll-behavior: smooth;
}

/* WP
--------------------------------------------------*/
.wp-block-image{
	
}
.wp-block-file{
	
}
.wp-block-gallery{
	
}
.wp-block-separator{
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	background: var(--coul-1);
	margin-top: 80px;
	margin-bottom: 80px;
}
.wp-block-spacer{
	
}
.wp-block-columns{
	
}
.wp-block-column{
	
}
h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading{
	
}
h1.wp-block-heading{

}
h2.wp-block-heading{
	font-size: 30px;
}
h3.wp-block-heading{
	
}
h4.wp-block-heading{
	
}
h5.wp-block-heading{
	
}
h6.wp-block-heading{
	
}
figcaption{
	
}

/* Loader
---------------------------------------------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999999;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: none repeat scroll 0 0 #fff;
}
@keyframes bouncing-loader {
  to {
    transform: translate3d(0, -16px, 0);
  }
}
.bouncing-loader {
  display: flex;
  justify-content: center;
}
.bouncing-loader > div {
  width: 48px;
  height: 48px;
  margin: 3rem 0.2rem;
  background: var(--coul-1);
  border-radius: 50%;
  animation: bouncing-loader 0.6s infinite alternate;
}

/*-----------------------------------------------------------------------------
 Grid et Flex
------------------------------------------------------------------------------*/

/* Grille
--------------------------------------------------*/
.grid{
	display: grid;
}

/* Flex
--------------------------------------------------*/
.flex-col{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Colonnes
--------------------------------------------------*/
.col-1{
	grid-template-columns: 1fr;
}
.col-2{
	grid-template-columns: repeat(2, 1fr);
}
.col-3{
	grid-template-columns: repeat(3, 1fr);
}
.col-4{
	grid-template-columns: repeat(4, 1fr);
}
.col-6{
	grid-template-columns: repeat(6, 1fr);
}
.col-2_33-66{
	grid-template-columns: 1fr 2fr;
}
.col-2_66-33{
	grid-template-columns: 2fr 1fr;
}

/* Gap
--------------------------------------------------*/
.gap-100{
	grid-gap: var(--100px);
}
.gap-50{
	grid-gap: var(--50px);
}
.gap-25{
	grid-gap: var(--25px);
}
.rgap-25{
	row-gap: var(--25px);
}

/*-----------------------------------------------------------------------------
 Alignements
------------------------------------------------------------------------------*/

/* Alignements - Grid
--------------------------------------------------*/
.align-middle{
	align-items: center;
}
.align-top{
	align-items: start;
}
.align-bottom{
	align-items: end;
}
.item-center{
	align-self: center;
  	justify-self: center;
}

/* Alignements - Textes
--------------------------------------------------*/
.txt-center{
	text-align: center;
}
.txt-justify{
	text-align: justify;
}
.txt-left{
	text-align: left;
}
.txt-right{
	text-align: right;
}

/* Alignements - Divers
--------------------------------------------------*/
.center{
	/*position: relative;
	left: 50%;
	transform: translateX(-50%);*/
	margin-left: auto;
	margin-right: auto;
}
.left{
	margin-left: 0 !important;
}
.right{
	margin-right: 0 !important;	
}

/*-----------------------------------------------------------------------------
 Mise en forme
------------------------------------------------------------------------------*/

/* Width / Height
--------------------------------------------------*/
.w100{
	width: 100%;
}
.w1440{
	width: 1440px;
}

/* Rounded
--------------------------------------------------*/
.rounded-50{
	border-radius: 50px;
}
.rounded-30{
	border-radius: 30px;
}
.rounded-20{
	border-radius: 20px;
}
.rounded-10{
	border-radius: 10px;
}
.rounded-5{
	border-radius: 5px;
}

/* Textes
--------------------------------------------------*/
.txt-60{
	font-size: 60px;
}
.txt-50{
	font-size: 50px;
}
.txt-40{
	font-size: 40px;
	line-height: 1.2;
}
.txt-35{
	font-size: 35px;
	line-height: 1.2;
}
.txt-30{
	font-size: 30px;
	line-height: 1.2;
}
.txt-22{
	font-size: 22px;
}
.txt-20{
	font-size: 20px;
}
.txt-w200{
	font-weight: 200;
}
.bold{
	font-weight: 700;
}
.uppercase{
	text-transform: uppercase;	
}
ul.liste-1{
	padding-left: 15px;
}

/* HR
--------------------------------------------------*/
.hr-1{
	display: block;
	height: 7px;
	border: 0;
	width: 120px;
	margin-top: 40px;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
}

/*-----------------------------------------------------------------------------
 Couleurs
------------------------------------------------------------------------------*/

/* Blanc
--------------------------------------------------*/
.coul-blanc{
	color: #ffffff;
}
.bg-coul-blanc{
	background-color: #ffffff;
}

/* Noir
--------------------------------------------------*/
.coul-noir{
	color: #000000;
}
.bg-coul-noir{
	background-color: #000000;
}

/* Coul 1
--------------------------------------------------*/
.coul-1{
	color: var(--coul-1);
}
.bg-coul-1{
	background-color: var(--coul-1);
}

/* Coul 2
--------------------------------------------------*/
.coul-2{
	color: var(--coul-2);
}
.bg-coul-2{
	background-color: var(--coul-2);
}

/*-----------------------------------------------------------------------------
 Liens et boutons
------------------------------------------------------------------------------*/

/* Liens
--------------------------------------------------*/
a{
	color: inherit;
}
a.lien{
	display: inline-block;
	position: relative;
	color: inherit;	
	text-decoration: none;
}
a.lien::after{
    content: '';
    display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	margin-left: auto;
	margin-right: auto;
    transition: all 300ms;
	opacity: 0;
	width: 0;
	height: 1px;
	background: var(--coul-1);
}
a.lien:hover::after{
	opacity: 1;
	width: 100%;
}

/* Boutons
--------------------------------------------------*/
.bt{
	display: inline-block;
	text-decoration: none !important;
	cursor: pointer;
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-width: 1px;
	border-style: solid;
	padding: 8px 20px 8px 20px;
}
.bt-anim{
	position: relative;
	overflow: hidden;
	z-index: 1;
	border: none;
	color: #ffffff;
}
.bt-anim:after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.bt-anim:before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: all .3s ;
    z-index: -1;
}
.bt-anim:hover:before{
	width: 100%;
}
.bt-bleu{
	background: var(--coul-1);
	color: #ffffff;
	border: none;
}
.bt-bleu:hover{
	background: #000000;
	color: #ffffff;
	border: none;
}
.bt-bleu.bt-anim:after{
	background-color: var(--coul-1);
}
.bt-bleu.bt-anim:before{
	background-color: #000000;
}
.bg-coul-noir > .bt-bleu:hover,
.bg-coul-noir > .bt-bleu.bt-anim:before{
	background: #262626!important;
}
.cn-set-cookie.bt{
	border: none !important;
	background: var(--coul-1);
	color: #fff !important;
	cursor: pointer !important;
	-webkit-appearance: none !important; 
	-moz-appearance: none !important;
	appearance: none !important;
	padding: 7px 15px 7px 15px;
}
.cn-more-info.bt{
	border: none !important;
	background: none !important;
	color: #fff;
	cursor: pointer;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	padding: 7px 0px 7px 0px;
}

/* Accordion
--------------------------------------------------*/
.sp-easy-accordion .sp-ea-single .ea-header a{
	font-family: var(--font-1) !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #000 !important;
	background: var(--coul-2) !important;
	border-radius: 10px !important;
	margin-bottom: 15px !important;
}
[class*=" eap-icon-"]:before, [class^=eap-icon-]:before {
	font-weight: 100 !important;
	color: #000 !important;
}
.sp-easy-accordion>.sp-ea-single {
	background: none !important;
}
.sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body{
	color: #000 !important;
}

/*-----------------------------------------------------------------------------
 Effets / Animations
------------------------------------------------------------------------------*/

/* Hover
--------------------------------------------------*/
.hover-scale img,
.hover-scale svg{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.hover-scale img:hover,
.hover-scale svg:hover{
	transform: scale(1.2);
}

