* {
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased; 
    font-smoothing: antialiased; 

}

:root {
    --leftright: 6vw;
    --bleu_clair: #3fafe3;
    --bleu_fonce: #0b3052;
    --gris: #939ba7;
    --degrade: linear-gradient(95deg, #1b75bb 9.75%, #30a6dd 95.44%);
    --wrap: 1200px;
	--couleur-texte: #0b3052;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html, body {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 400;
    font-style: normal;
    background: #fff;
    color: var(--couleur-texte);
    text-rendering: optimizeLegibility; 
    word-wrap: normal !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    -webkit-word-break: normal !important;
    word-break: normal !important;
}


@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  src: url("fonts/font-awesome/fa-brands-400.eot");
  src: url("fonts/font-awesome/fa-brands-400.eot?#iefix") format("embedded-opentype"),
       url("fonts/font-awesome/fa-brands-400.woff2") format("woff2"),
       url("fonts/font-awesome/fa-brands-400.woff") format("woff"),
       url("fonts/font-awesome/fa-brands-400.ttf") format("truetype"),
       url("fonts/font-awesome/fa-brands-400.svg#fontawesome") format("svg");
}

#container,
#content {
    margin: 0 auto;
    position: relative;
}

#container {
    background: url(img/background.jpg) top center no-repeat;
    background-size: cover;
}

.bold {
    font-weight: 800;
}

.bkg-blanc {
    background: #fff;
}

.bkg-bleu-clair {
    background: var(--bleu_clair);
}

.bkg-bleu-fonce {
    background: var(--bleu_fonce);
}

.bleu,
.bleu-clair {
    color: var(--bleu_clair);
}

.mobile-only {display: none;}

p {
    word-wrap: normal !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    -webkit-word-break: normal !important;
    word-break: normal !important;
    margin-bottom: 10px;
    color: var(--couleur-texte);
    font-family: "Poppins", sans-serif;
    margin-top: 0;
    font-style: normal;
    position: relative;
}

.entry-content p {
    margin: 0;
    margin-bottom: 10px;
}

p.small {
    font-size: .8rem;
    line-height: 1.1rem;
}

.big,
p.big {
    font-size: 1.25rem;
    line-height: 1.4rem;
    margin-bottom: 15px;
}

.superbig {
    font-size: 2.5rem;
    line-height: 2.6rem;
    margin-bottom: 40px;
}

.cap {
    text-transform: uppercase;
}

ul, ol {
    margin: 0;
}

a {
    outline: none;
}

a,
a:hover,
a:visited,
a::after,
a:hover::after {
    /* text-decoration: none; */
    outline-style: none !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a,
a:visited {
    color: var(--couleur-texte);
}

a img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

img {
    max-width: 100%;
}


:focus {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-style: normal;
    margin: 0;
    font-weight: 700;
    color: var(--bleu_fonce);
}


h1 {
    font-size: 3rem;
    line-height: 3.3rem;
    margin: 0 0 30px 0;
}

h2 {
    font-size: 2.8rem;
    line-height: 2.8rem;
    margin: 0 0 30px 0;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4rem;
    margin: 0 0 20px 0;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin: 0 0 15px 0;
}

h5 {
    font-size: 1rem;
    line-height: 1.3rem;
    margin: 0 0 12px 0;
    letter-spacing: 0;
    text-transform: none;
}

a.underline:hover {
    text-decoration: underline;
}

h1.titre-page {text-align: center;}


/*************************************************************************/
/************************* STRUCTURE *************************************/
/*************************************************************************/

a.absolute {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 14;
    top: 0;
    left: 0;
}

strong {
    font-weight: 700;
}

#content {
    margin-top: 0;
	padding-top: 30px;
}

.wrap {
    margin: 0 auto;
    width: var(--wrap);
    position: relative;
    max-width: 98%;
}

.hentry {
    background: none;
    border-radius: 0;
    border: 0;
    margin-bottom: 0;
}

.entry-content {
    padding: 0;
}

.hentry header {
    border: 0;
    border-bottom: 0;
    padding: 0;
}

.hentry footer {
    border: 0;
    padding: 0;
}


.clearboth {
    clear: both;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.display-table {
    display: table;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

.blanc p,
p.blanc,
.blanc {
    color: #fff;
}

.bkg-cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.padding80 {
    padding: 80px;
}

.padding60 {
    padding: 60px;
}

.padding50 {
    padding: 50px;
}

.padding40 {
    padding: 40px;
}

.padding30 {
    padding: 30px;
}

.padding20 {
    padding: 20px;
}

.padding15 {
    padding: 15px;
}

.padding10 {
    padding: 10px;
}

.filet {
    width: 100%;
    height: 1px;
    margin: 15px 0;
}

.filet-epais {
    width: 100%;
    height: 6px;
    margin: 20px 0;
}

.container-flex {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;    
    display: flex;
    position: relative;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.container-flex-center {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;    
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.container-flex-nowrap {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;    
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.container-flex-start {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;    
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.container-flex-start-nowrap {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;    
    display: flex;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.container-flex img,
.container-flex-center img,
.container-flex-nowrap img,
.container-flex-start img {
    width: auto;
    max-width: 100%;
    height: auto;
}

.flex-item-moitie {
    width: 48%;
    position: relative;
}

.flex-item-quart {
    width: 23%;
    position: relative;
}

.flex-item-trois-quart {
    width: 70%;
    position: relative;
}

.flex-item-tiers {
    width: 31%;
    position: relative;
}

.flex-item-deux-tiers {
    width: 65%;
    position: relative;
}

.flex-item-auto {
    position: relative;
}

.flex-item-full {
    width: 100%;
    position: relative;
}

.flex-item-cinq {
    width: 18%;
    position: relative;
}

.marginzero,
.margin-zero {
    margin: 0 !important;
}

paddingzero,
padding-zero {
    padding: 0 !important;
}

.borderradius,
.border-radius {
    border-radius: 6px;
}

li.cta a,
a.cta,
#menu-menu-principal li a,
button[type=submit] {
	text-decoration: none;
    border-radius: 6px;
	border: none;
    padding: 16px 22px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    background: var(--degrade);
    font-size: .95rem;
}

li.cta a:hover,
a.cta:hover,
#menu-menu-principal li a:hover,
button[type=submit]:hover {
	background: none; background-color: var(--bleu_clair);
}

a.cta.secondary, header #menu-menu-principal li:first-child a {
    font-weight: 600;
    color: var(--bleu_clair);
	border: 2px solid var(--bleu_clair);
	background: none;
    background-color: #fff;
}

a.cta.secondary:hover, header #menu-menu-principal li:first-child a:hover {
	background-color: var(--bleu_clair); color: #fff; 
}

/*************************************************************************/
/**************************** HEADER *************************************/
/*************************************************************************/

header.header {
    background: #f1f6ff;
    position: relative;
    width: 100%;
    padding: 25px 0;
}

.logo-header {
    width: 220px;
    height: 60px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: relative;
}

/* header .menu-right .display-table-cell {width: auto;} */
header #menu-menu-principal li {display: inline-block; margin-right: 10px;}
header #menu-menu-principal li:last-child {display: inline-block; margin-right: 0;}

/* Breadcrumb */
.container-breadcrumb {margin-bottom: 30px;}
.container-breadcrumb ul {display: none;}

/*************************************************************************/
/**************************** FOOTER *************************************/
/*************************************************************************/

footer.footer {
    background-color: #0c3052;
    padding: 40px 0;
    /* margin-top: 50px; */
}

footer.footer a,
footer.footer p {
    font-size: .85rem;
    line-height: 1.1rem;
	color: #fff;
}

.footer-nav li {
    /* display: inline-block; */
    /* float: none; */
    /* padding: 0 10px; */
	margin-bottom: 10px;
}

footer.footer a {

}

footer.footer a:hover {

}

footer .footer-apropos p {opacity: 0.7;}
#inner-footer .container-flex .flex-item-tiers:nth-child(2) a {text-decoration: none;}

/*************************************************************************/
/****************************** HOME *************************************/
/*************************************************************************/

/* zone accueil */
section.section-accueil {
    min-height: 60vh;
	padding-bottom: 0px;
}

section.section-accueil .container-flex {justify-content: space-between;}
section.section-accueil .accueil-partie-gauche {width: 53%;}
section.section-accueil .accueil-partie-droite {width: 43%; position: relative;}
section.section-accueil .accueil-partie-droite .vignette-prix {position: absolute; top: -10px; right: -10px; width: 100px; height: auto; }
section.section-accueil .modules-arguments {display: flex; justify-content: space-between;}
section.section-accueil .modules-arguments .module-argument {width: 29%; padding: 15px 0; text-align: left;}
section.section-accueil .modules-arguments .module-argument .titre-argument {font-weight: 600; margin-bottom: 10px; min-height: 45px;}
section.section-accueil .modules-arguments .module-argument .texte-argument {font-size: 95%;}

/* Zone témoignages */
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-gauche {width: 50%; background-size: cover; background-repeat: no-repeat; position: relative;}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-gauche img {border-radius: 12px;}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-gauche .logo-temoignage img {border-radius: 0;}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-droite {width: 48%; padding-right: 5px;}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-droite .temoignage-contenu-droite {
	background-color: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
	
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-gauche .logo-temoignage {position: absolute; top: 10px; left: 10px;}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-gauche .logo-temoignage img {width: 150px; background-color: #fff;}
/* section.section-temoignages .modules-temoignages .owl-nav {width: 48%; bottom:0 !important; top: initial !important; right: 5px;} */
section.section-temoignages .modules-temoignages .owl-nav {position: relative; width: 100%; text-align: right; margin-top: 10px; }
section.section-temoignages .modules-temoignages .owl-prev::before, section.section-temoignages .modules-temoignages .owl-next::before {
	color: var(--bleu_clair) !important; font-size: 30px !important; border: 1px solid var(--bleu_clair); border-radius: 12px; background-color: #fff;
}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-droite .titre-temoignage {
	position: relative; margin-bottom: 10px; font-weight: 600;
}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-droite .texte-temoignage {text-indent: 30px; position: relative; margin-bottom: 20px;}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-droite .texte-temoignage::before {
	content:''; background-image: url('img/guillemet-ouvrant.png'); background-size: contain; width: 22px; height: 17px; display: block; position: absolute; left:0;
}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-droite .texte-temoignage::after {
	content:''; background-image: url('img/guillemet-fermant.png'); background-size: contain; width: 22px; height: 17px; display: inline-block; margin-left: 10px;
}
section.section-temoignages .modules-temoignages .module-temoignage .temoignage-partie-droite .auteur-temoignage {margin-bottom: 30px;}

/* zone fonctionnalités */
.menu-fonctionnalites {
    text-align: center;
    margin: 20px 0 50px;
}

.menu-fonctionnalites li.item-menu-fonctionnalite {
    margin: 0 30px;
    padding: 8px 0;
    cursor: pointer;
    display: inline-block;
}

.menu-fonctionnalites li.item-menu-fonctionnalite:not(.actif):hover {
	border-bottom: 2px solid var(--bleu_clair);
    color: var(--bleu_clair);
}

.menu-fonctionnalites li.item-menu-fonctionnalite.actif {
    border-bottom: 4px solid var(--bleu_clair);
    font-weight: 700;
    color: var(--bleu_clair);
}

.item-fonctionnalite img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--bleu_clair);
	background-color: #f9f9f9;
}

.texte-fonctionnalite {
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    position: relative;
    padding: 20px;
    background: #fff;
}

.texte-fonctionnalite::after {
    content: '';
    position: absolute;
    height: 18px;
    width: 100px;
    background: #1b75bb;
    right: 20px;
    bottom: -9px;
    z-index: 2;
    border-radius: 6px;
}

.item-fonctionnalite {
    display: none;
}

.item-fonctionnalite.actif {
    display: block;
}

/* zone applications */
section.section-applications .image-application {text-align: center; }
section.section-applications .image-application img {max-height: 45vh; width: auto;}
section.section-applications .modules-application .module-application {
	text-align: center;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
	position: relative;
	padding: 20px;
	background: #fff;
	margin: 0 15px;
}
section.section-applications .owl-carousel .owl-stage-outer {padding-top:30px; padding-bottom: 30px; padding: 30px 10px;}

/* Zone réassurance */
section.section-reassurance {background-color: #f2f6ff; padding: 20px 0;}
section.section-reassurance .modules-reasssurance {display: flex;}
section.section-reassurance .modules-reasssurance .module-reassurance {width: 20%; padding: 15px; text-align: center;}
section.section-reassurance .modules-reasssurance .module-reassurance .picto-reassurance img {height: auto;}
section.section-reassurance .modules-reasssurance .module-reassurance .titre-reassurance {font-weight: 600; margin-bottom: 10px; text-transform: uppercase;}

/* Zone CTA final */
section.section-ctafinal {background-color: #fff; padding-top: 0; padding-bottom: 100px;}
section.section-ctafinal .wrap {background-color: #1a75bb; text-align: center; border-radius: 12px; padding-top:20px; padding-bottom: 60px;}
section.section-ctafinal .wrap .logo_cta img {width: 150px; height: auto;}
section.section-ctafinal .wrap .accroche_cta {color: #fff; font-size: 2rem; font-weight: 600; line-height: 2.5rem;}
section.section-ctafinal .wrap .bouton_cta {position: absolute; width: 100%; bottom: -25px;}

/* Zone étapes de mise en oeuvre */
section.section-etapes {background-color: #fff;}
section.section-etapes .modules-etapes {
	background-image: url('img/fleche.png'); background-size: contain; background-repeat: no-repeat; background-position: center; background-color: #fff;
	display: flex; justify-content: space-between; padding: 40px 100px;
}
section.section-etapes .modules-etapes .module-etape {
	width: 20%; text-align: center; padding: 15px; background-color: rgba(255, 255, 255, 0.5); border: 1px solid var(--bleu_clair); border-radius: 12px;
}
section.section-etapes .modules-etapes .module-etape:hover {background-color: #f9f9f9;}
section.section-etapes .modules-etapes .module-etape:hover .texte-etape {font-weight: 600;}
section.section-etapes .modules-etapes .module-etape .numero-etape {margin-bottom: 15px;}
section.section-etapes .modules-etapes .module-etape .numero-etape span {
	font-size: 30px; background-color: var(--bleu_fonce); color: #fff; display: inline-block; border-radius: 30px;
	width: 50px; height: 50px; line-height: 50px; text-align: center; font-weight: 600;
}




/* Fluent Form */
.fluentform {background-color: #fff; padding: 30px; border-radius: 12px; border: 1px solid var(--bleu_clair);}
.fluentform .ff-message-success {border: none; box-shadow: none;}


/*************************************************************************/
/***************************** CONTACT ***********************************/
/*************************************************************************/
article.post-130 .section-page .wrap {width: 800px;}
body.page-template-page-contact .section-page .wrap {width: 800px;}
/* .rangee-page .wrap:has(.fluentform) {width: 800px;} */
a.numero_telephone {width: 195px;}


/*************************************************************************/
/***************************** DEMANDE DEMO ******************************/
/*************************************************************************/
.flatpickr-calendar .flatpickr-day.nextMonthDay {color: rgba(57, 57, 57, 0.5);}



/*************************************************************************/
/***************************** PAGES *************************************/
/*************************************************************************/

section {
    padding: 50px 0;
    position: relative;
}

section.section-page {padding-top: 20px;}
/* body section:last-child {padding-bottom: 100px;} */
body section:first-child {padding-top: 20px;}

/*************************** Popin fancybox *****************************/

/* .fancybox-container { */
    /* z-index: 99999999 !important; */
/* } */

/* .fancybox-content { */
    /* height: auto !important; */
    /* margin: 0 auto; */
    /* padding: 30px !important; */
    /* border-radius: 8px; */
    /* box-shadow: 8px 8px 0 var(--bleu); */
    /* width: 80%; */
    /* max-width: 967px !important; */
    /* min-height: 300px; */
/* } */

/* .fancybox-close-small { */
    /* opacity: 1 !important; */
/* } */

/* .fancybox-close-small svg { */
    /* display: none; */
/* } */

/* .fancybox-close-small::before { */
    /* content: '\e5cd'; */
    /* display: block; */
    /* position: absolute; */
    /* z-index: 403; */
    /* width: 30px; */
    /* height: 30px; */
    /* background: var(--noir); */
    /* font-family: 'Material icons'; */
    /* font-size: 1.6rem; */
    /* top: 0; */
    /* right: 0; */
    /* text-align: center; */
    /* line-height: 30px; */
    /* color: #fff; */
    /* -webkit-transition: all .3s; */
    /* transition: all .3s; */
/* } */

/* .fancybox-close-small:hover::before {  */
    /* background: var(--orange); */
    /* -webkit-transition: all .3s; */
    /* transition: all .3s; */
/* } */

/* .fancybox-is-open .fancybox-bg { */
    /* opacity: .7;  */
/* } */

.displaynone,
.display-none {
    display: none !important;
}


/*************************************************************************/
/************************** CONTENU FLEXIBLE *****************************/
/*************************************************************************/

.rangee-page {
    margin: 40px 0;
}

.contenu-flexible h2 {
    margin: 0 0 40px 0;
}

.contenu-flexible h3 {
    margin: 0 0 20px 0;
}

.contenu-flexible h4 {
    margin: 0 0 15px 0;
}

.contenu-flexible ul + h3,
.contenu-flexible img + h3,
.contenu-flexible p + h3 {
    margin: 30px 0 20px 0;
}

.contenu-flexible ul + h2,
.contenu-flexible img + h2,
.contenu-flexible p + h2 {
    margin: 40px 0 30px 0;
}

.contenu-flexible ul + h4,
.contenu-flexible img + h4,
.contenu-flexible p + h4 {
    margin: 25px 0 15px 0;
}

.contenu-flexible img {
    max-width: 100%;
    height: auto;
}

.contenu-flexible ul {
    margin: 15px 0;
    list-style: circle;
}

.contenu-flexible ol li,
.contenu-flexible ul li {
    margin-bottom: 6px;
    padding-left: 6px;
    margin-left: 18px;
}

blockquote p {
    font-style: italic;
    color: var(--orange);
}

blockquote {
    position: relative;
}

blockquote::before {
    content: '';
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--orange);
}

.contenu-flexible strong,
.contenu-libre strong {

}

.contenu-flexible p:last-child,
.contenu-libre p:last-child {
    margin-bottom: 0;
}

.rangee-page.blanc h2,
.rangee-page.blanc h3,
.rangee-page.blanc h4,
.rangee-page.blanc h5,
.rangee-page.blanc p,
.rangee-page.blanc a,
.rangee-page.blanc strong {
    color: #fff;
}

.rangee-image {
    padding: 50px 0;
    background-size: cover;
    position: relative;
}

.rangee-page.bkg-bleu-light,
.rangee-page.bkg-orange {
    padding: 30px 0;
    margin: 0;
}
.rangee-page.bkg-bleu-light .wrap {background-color: #f9f9f9; padding: 30px;}

.rangee-page.rangee-image {
    margin: 0;
}

.rangee-image .wrap {
    position: relative;
    z-index: 15;
}

.rangee-image-seule {
    background-size: cover;
    height: 450px;
    max-height: 45vh;
    margin: 0;
    width: 100%;
}


/*************************************************************************/
/******************************** FORMULAIRE *****************************/
/*************************************************************************/

.wpcf7 textarea,
.wpcf7 input {
    border: 2px solid #fff;
    background: #f3f3f3;
    border-radius: 2px;
    max-width: 100%;
    margin-bottom: 25px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.wpcf7 input {
    height: 60px;
    line-height: 60px;
}

.wpcf7 textarea {
    padding: 15px;
}

.wpcf7 textarea:focus,
.wpcf7 input:focus {
    background: #fff;
    border-color: var(--bleu);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.acceptance-73 {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 12px 0 20px;
}

.wpcf7-form-control-wrap .wpcf7-list-item {
    padding: 0;
    margin: 0;
    font-size: .8rem;
    line-height: 1.1rem;
}

.wpcf7 input[type=submit] {
    background: var(--noir);
    font-weight: 800;
    padding: 15px 30px;
    margin: 20px 0;
    height: auto;
    color: #fff;
    border: 0;
    font-size: 1rem;
    line-height: inherit;
}

.wpcf7 input[type="checkbox"]{
    margin-bottom: 0;
    height: auto;
    line-height: inherit;
}

.wpcf7 input[type=submit]:hover {
    background: var(--orange);
}

.wpcf7-response-output {
    width: 100%;
    max-width: 100%;
    border: 0 !important;
    color: #fff !important;
    padding: 8px 12px !important;
    background: var(--gris);
    font-weight: bold;
    margin-left: 0 !important;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    background: #ff0000 !important;
    color: #fff !important;
}

span.wpcf7-not-valid-tip {
    color: #ff0000 !important;
    font-weight: bold;
    font-size: .9rem;
    margin-bottom: 20px;
    margin-top: -15px;
    position: relative;
}


/************************************************************************************************************************************/
/************************************************** SCROLL TO TOP *******************************************************************/
/************************************************************************************************************************************/

#toTop {
    display: none;
    position: fixed;
    bottom: 45%;
    right: 20px;
    z-index: 8222;
}

#toTop::before {
    content: '\e5d8';
    font-family: 'Material Icons';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    background: rgba(217,232,232,.4);
    font-size: 1.4rem;
    text-align: center;
    line-height: 60px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}


#toTop:hover::before {
    background: rgba(217,232,232,1);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

/**********************************************************************************************************************************************************/
/********************************************************************** TRANSITION PAGES ******************************************************************/
/**********************************************************************************************************************************************************/

.loader-site {
    background: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 15000;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-align: center;
}

.sk-chase {
    margin: 30vh auto;
    width: 60px;
    height: 60px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; 
  animation: sk-chase-dot 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--bleu);
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4); 
  } 100%, 0% {
    transform: scale(1.0); 
  } 
}


#holder {
	opacity: 0;  
	transition: opacity 0.3s ease-in-out;
 	-moz-transition: opacity 0.3s ease-in-out;
 	-webkit-transition: opacity 0.3s ease-in-out;
}

#holder.visible {
	opacity: 1;
	transition: opacity 0.4s ease-in-out;
 	-moz-transition: opacity 0.4s ease-in-out;
 	-webkit-transition: opacity 0.4s ease-in-out;
}

/*---------------- */
/* RESEAUX SOCIAUX */
/*---------------- */


li.linkedin,
li.twitter,
li.facebook,
li.instagram {
    display: inline-block;
    width: auto !important;
    padding: 0;
}

li.linkedin a,
li.twitter a,
li.facebook a,
li.instagram a {
    padding: 0;
}

li.linkedin a::after,
li.twitter a::after,
li.facebook a::after,
li.instagram a::after {
    content: '';
    display: inline-block;
    font-size: 1.3rem;
    font-family: 'fontAwesome';
    color: #333;
    height: 40px;
    padding: 0 10px;
}

li.linkedin a:hover::after,
li.twitter a:hover::after,
li.facebook a:hover::after,
li.instagram a:hover::after {
    color: var(--orange);
}

li.facebook a::after {
    content: '\f39e' !important;
}

li.instagram a::after {
    content: '\f16d' !important;
}

li.twitter a::after {
    content: '\f099' !important;
}

li.linkedin a::after {
    content: '\f0e1' !important;
}



/*-------------------*/
/* CARROUSELS */
/*-------------------*/


.owl-carousel {
    width: 100%;
}

/* .owl-nav { */
    /* position: absolute; */
    /* right: 0; */
    /* top: 0; */
/* } */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    margin: 0 10px;
    height: 40px;
    width: 40px;
    margin: 0 5px;
    position: relative;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: 0;
}


.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {

}

.owl-prev::before,
.owl-next::before {
    content: '';
    height: 40px;
    width: 40px;
    position: absolute;
    font-family: 'Material icons';
    font-size: 1.1rem;
    line-height: 40px;
    text-align: center;
    color: #fff;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.owl-prev::before {
    content: '\e314';
}

.owl-next::before {
    content: '\e315';
}

.owl-dots {
    margin-left: 0;
    margin-top: 0;
	text-align: center;
}

#content .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
	border: 1px solid var(--bleu_fonce);
    margin: 0 8px 0 0;
    opacity: 1;
}

.owl-dot.active {
    opacity: 1;
    background: var(--bleu_fonce) !important;
}



/*************************************************************************/
/************************* GESTION COOKIES *******************************/
/*************************************************************************/

#tarteaucitronRoot #tarteaucitronAlertBig {
    background: #fff !important;
    color: #000 !important;
}

#tarteaucitronAlertBig #tarteaucitronPrivacyUrl,
#tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert,
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
    color: #000 !important;
}


body #tarteaucitronRoot div#tarteaucitronAlertBig {
    border-radius: 0 !important;
    box-shadow: none !important;
}

div#tarteaucitronRoot.tarteaucitronBeforeVisible:before {
    opacity: .7 !important;
    background: #000 !important;
}


div#tarteaucitronAlertBig:before {
    display: none !important;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert, #tarteaucitronAlertBig #tarteaucitronPersonalize, #tarteaucitronAlertBig #tarteaucitronPersonalize2, .tarteaucitronCTAButton, #tarteaucitron #tarteaucitronPrivacyUrl, #tarteaucitron #tarteaucitronPrivacyUrlDialog, #tarteaucitronRoot .tarteaucitronDeny, #tarteaucitronRoot .tarteaucitronAllow {  
    background: #000 !important;
    padding: 10px 20px !important;
}

#tarteaucitronRoot .tarteaucitronDeny {
    background: #f1f1f1 !important;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert,
#tarteaucitron #tarteaucitronPrivacyUrl,
#tarteaucitron #tarteaucitronPrivacyUrlDialog {
    background: #f1f1f1 !important;
}

#tarteaucitronRoot #tarteaucitronAllDenied2 {
    position: absolute !important;
    background: transparent !important;
    top: 10px !important;
    padding: 0 !important;
    color: #333 !important;
    right: 10px !important;
    font-size: .8rem !important;
    text-decoration: none !important;
    opacity: .6 !important;
}

#tarteaucitronDisclaimerAlert {
    font-size: .9rem !important;
    line-height: 1.3rem !important;
    text-align: justify !important;
    display: block !important;
    text-align: center !important;
}

div#tarteaucitronRoot.tarteaucitronBeforeVisible:before {
    z-index: 99999999 !important;
}

body #tarteaucitronRoot div#tarteaucitronAlertBig {
    width: 450px !important;
    max-width: 90% !important;
    border-radius: 6px !important;
}

#tarteaucitronDisclaimerAlert::before {
    content: '';
    display: block;
    margin: 0 auto 20px;
    width: 150px;
    height: 60px;
    background-image: url(img/logo-mrm.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}



