
/*
div{
	border: #666 solid 1px;
}
*/
root{
	--mainColor: #354569;
	--data-delay: .50s;
	--posTopTriangle: 0px;
	--posLeftTriangle: 0px;
}

body{
	font-size: 1.8em;
	color: var(--mainColor);
	overflow-x: hidden;
}

html{
	scroll-behavior: smooth
}
h2{
	color: #30374e;
	line-height: 1;
}

h1{
	color: #30374e;
	line-height: 1.4;
	font-size: 2.8em;
	margin-top: 90px;
}

.specialPages{
	color: #30374e;
}
/*---------------------
-----------------------
SEPS
-----------------------
---------------------*/
.sep20{
	width: 100%;
	height: 20px;
}
.sep40{
	width: 100%;
	height: 40px;
}
.sep80{
	width: 100%;
	height: 80px;
}
.sep100{
	width: 100%;
	height: 100px;
}

/*---------------------
-----------------------
CENTER
-----------------------
---------------------*/
.hCenter{
	display: flex;
	justify-content: center;
	text-align: center;
	flex-direction: column;
}
.hCenterRow{
	display: flex;
	justify-content: center;
	text-align: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.marginH10{
	padding-left: 2%;
	padding-right: 2%;
	max-width: 1020px;
	margin: auto;
}


.txt_left{
	text-align: left;
}
.txtBold{
	font-family: 'Poppins', sans-serif;
}

.inline{
	display: inline-block;
}
/*---------------------
-----------------------
iframe
-----------------------
---------------------*/
.iframeVid{
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	/*top: 240px;*/
	height: 0;
	border-radius: 20px;
}

.boxShadowVid2{
	box-shadow: 0px 0px 20px rgba(32, 58, 105, .2);
	border-radius: 20px;
}
.boxShadowVid2{
	box-shadow: 0px 0px 10px rgba(32, 58, 105, .2);
	border-radius: 10px;
}

.iframeVid iframe{
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;

}

.smallVid{
	width: 80%;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	border-radius: 20px;
}
.verySmallVid{
	min-width: 40%;
	margin: 20px;
	border-radius: 10px;
	display: inline-block;
}

/*---------------------
-----------------------
BUTTONS
-----------------------
---------------------*/

.bout{
	padding: 10px 40px;
	border-radius: 20px;
	max-width: 400px;
	background-color: #3c9cea;
	color: #FFF;
	margin: 30px auto;
	border: none;
	text-align: center;
	font-weight: bold;
	transition: .3s;
	opacity: 1;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.bout:hover{
	opacity: .7;
}

.bout.boutNoOpacityOnHover:hover{
	opacity: 1;
}




.boutBlanc{
	color: #465173;
	background-color: #FFF;
}
#bg2 .boutBlanc{
	color: #465173;
	/*box-shadow: 0px 0px 35px rgba(32, 58, 105, .3);*/
	box-shadow: 0px 6px 35px rgb(202 68 15 / 30%);
	
} 
.boutJaune{
	color: #FFF;
	background-color: #fccd1a;
	text-shadow: 0px 0px 5px #c29d1e;
}

.boutFreeTest{
	font-size: 1.2em;
	padding: 15px 50px;
}

@media (max-width:768px){
	.boutFreeTest{
		font-size: 1em;
	}
}

.boutBleu a{
	color:#FFF;
}

/*---------------------
-----------------------
MENU
-----------------------
---------------------*/
#topMenu{
	position: fixed;
	width: 100%;
	height: 65px;
	top: 0px;
	left: 0px;
	background: none;
	z-index: 10;
}
#bgBlancMenu{
	background-color: #FFF;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	box-shadow: 0px 0px 20px rgba(32, 58, 105, .2);
	width: 100%;
	height: 100%;
	display: none;
}
#menuItems{
	display: flex;
	justify-content: space-between;
	z-index: 2;
	margin: 0px 10px;
}
#menuBouts{
	display: flex;
	justify-content: right;
	align-items: center;
	color: #FFF;
}
#menuBouts a{
	color:inherit;
}
.menuBout{
	margin: 10px;
	font-size: .8em;
}
#menuBouts .bout{
	padding: 4px 15px;
}
#logoMenu{
	max-width: 275px;
	display: flex;
	align-items: center;
}

#logoMenu img{width: 100%;}

.navbar-collapse.collapse.in #menuBouts a, .navbar-collapse.collapsing #menuBouts a{
	color:#203a69;
}

.navbar-collapse.collapse.in #menuBouts, .navbar-collapse.collapsing #menuBouts{
	display: block;
}

.navbar-collapse.collapse.in #b_logIn.boutBleu a, .navbar-collapse.collapsing #b_logIn.boutBleu a{
	color:#FFF;
}


@media (max-width:768px){
	/*#logoMenu{display: none;}*/
	#topMenu{
		/*display: none;*/
	}
}
@media (max-width:916px){
	#logoMenu{max-width: 200px;}
}

/*---------------------
-----------------------
ON-SCROLL ANIMATIONS
-----------------------
---------------------*/

.animBottomUp{
	opacity: 0;
	transform: translate(0px, 40px);
	transition: transform .6s cubic-bezier(0,1,.3,1),
				opacity .6s ease-out;
	transition-delay: var(--data-delay);
	will-change: transform, opacity;
}

.animRightLeft{
	opacity: 0;
	transform: translate(60px, 0px);
	transition: transform.6s cubic-bezier(0,1,.3,1),
				opacity .6s ease-out;
	transition-delay: var(--data-delay);
	will-change: transform, opacity;
}
.animLeftRight{
	opacity: 0;
	transform: translate(-60px, 0px);
	transition: transform .6s cubic-bezier(0,1,.3,1),
				opacity .6s ease-out;
	transition-delay: var(--data-delay);
	will-change: transform, opacity;
}

.anim.is-visible{
	opacity: 1;
	transform: translate(0px, 0px);
}

/* 
-------------------------------
E5 : E5 - Contact
-------------------------------
*/
#contact{
	position: relative;
	background: #3c9cea;
	color:#FFF;
	padding:2rem;
}

#adressCont{
	padding-left:15px;
}
#contact .compName{
	font-size:1.5em;
	line-height: 1em;
}
#contact .contactText{
	line-height: 1em;
}
#contact .socialsTop{
	justify-content: flex-start;
}

/* 
-------------------------------
E5 : Formulaire
-------------------------------
*/
#contact input{
	width: 49%;
	border:none;
	border-radius:10px;
	color:#502b22;
	margin-bottom: 10px;
	font-size:.8em;
	padding:5px 5px 5px 10px;
}
#contact #email input{
	width: 100%;
}


#contact #message{
	width:100%;
	border:none;
	height: 100px;
	border-radius:10px;
	color:#502b22;
	margin-bottom: 10px;
	font-size:.8em;
	padding-left:5px;
}

.formCont{
	margin-top:10px;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: flex-start;
}

.inputCont{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.btnSubmit{
	background-color: #2f5db5;
	color:#FFF;
	font-family: 'Poppins', sans-serif;
	padding: 8px;
	width:100%;
	border-radius: 10px;
	text-align: center;
	font-size: .9em;
}
/* 
-------------------------------
 Footer
-------------------------------
*/
#footer{
	width:100%;
	background-color: #30374e;
	color:#FFF;
}
.logoFooter{
	width: 200px;
}

.footCont{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom:15px;
}
.txtFooter{
	text-align: center;
}


#footer a{
	color:#FFF;
}
/* 
-------------------------------
NAVIGATEUR
-------------------------------
*/
#navigateur{
	position: fixed;
	left: 1%;
	top: 40vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 12;
	display: none;
}
.trait {
    position: absolute;
    top: 0px;
    left: 43%;
    width: 1px;
    height: 100%;
    background-color: rgba(235, 235, 235, .5);
}
.bNav{
	font-size: 15px;
	color: #ebebeb;
	border-radius: 50%;
	margin: 0px 0px;
	/*text-shadow: 0px 0px 10px rgba(32, 58, 105, .2);*/
}
/* 
-------------------------------
TOP
-------------------------------
*/
#toTop{
	display: none;
	position: fixed;
	left: 94%;
	top: 90vh;
	font-size: 30px;
	z-index: 12;
	padding: 1px;
}
#toTop a{
	color: #ebebeb;
}

/* 
-------------------------------
CENTRE D'AIDE
-------------------------------
*/
.sommaireAide{
	margin-top: 40px;
	margin-bottom: 40px;
	display: flex;
}
.sommaireAide li{
	list-style-type: disc;
	margin-left: 20px;
	font-size: .8em;
	width: 100%;
}

.sommaireAide .fa{
	background-color: #8ecef5;
	background: linear-gradient(241deg, #8ecef5 0%, #3f8bff 100%);
	padding: 10px;
	border-radius: 50% 50% 70% 30% / 41% 53% 47% 59% ;
	margin: 5px;
	font-size: 1.2em;
	color: #FFF;
	z-index: 2;
	position: relative;
	min-width: 48px;
}

.HelpTopic{
	margin: 10px;
	padding: 15px 25px;
	box-shadow: 0px 0px 25px rgba(0,0,0,.1);
	border-radius: 20px;	
	justify-content: flex-start;
	text-align: left;
	flex-grow: 1;
	background-color: #FFF;
}

.titleHelpTopic{
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
	position: relative;
}

.ssTitleHelp{
	font-weight: 600;
	font-size: .8em;
	margin-bottom: 10px;
}

/*---------------------
-----------------------
TARIFS
-----------------------
---------------------*/
#grilleTarifs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 0px;
    margin: 30px 0px;
    font-weight: bold;
    font-size: .9em;
}
#grilleTarifs table{
	border-radius: 20px;
	width: 80%;
	padding: 30px;
	overflow: hidden;
	box-shadow: 0px 0px 25px rgba(32, 58, 105, .2);
	background-color: #FFF;
}

#grilleTarifs tr{
	padding: 10px 0px 0px 0px;
	margin: 5px 5px;
	border-radius: 10px;
	width: 33%;
	
	/*border-bottom: solid 1px #c6d6df;*/
}

.tabHead{
	background-color: #7acaff;
	color: #FFF;
	line-height:1;
}
.tabHead small{
	color: rgba(255,255,255,.7);
}
@media (max-width:768px){
	.tabHead{font-size: .7em;}
}

.altTr{
	background-color: #f1f7fe;
}


#grilleTarifs td{
	height: 50px;
}

.colPrixTitre{
	line-height:.8;
	color: #FFF;
	background-color: rgba(255,255,255,.0);
}
.PriceExplanations{
	font-size: .8em;
	text-align: left;
	margin: 10px;
}

