@CHARSET "UTF-8";
/* Reset CSS
 * --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a, a:hover, a:focus, a:active{
	text-decoration:none;
}
table {
    border-spacing: 0;
}
fieldset,img {
    border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
    font-weight: normal;
    font-style: normal;
}
strong, .strong{
	font-weight: bold;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
caption,th {
    text-align: left;

}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
    color:#444;
}
q:before,q:after {
    content:'';
}
abbr,acronym { border: 0;
}

/***************************************/
html,body{
	height: 100%;
	overflow-y: auto;
	overflow-x:hidden;
	font-family:arial;
}
.nopadding{
	padding: 0;
}
/****************************** Gestion du fond *****************************/
#bulle{
	position: absolute;
	right: 0;
	width: 25%
}
#losange{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 25%
}
#rectangle{
	position: absolute;
	left: 0;
	bottom: 0;
}
#bulle img,
#losange img{
	float: right;
}

#page{
	height: 100%;
	width: 100%;
	position: absolute;
}
#page section{
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}
.fond-question{
	background-color: rgba(255,255,255,.7) !important;
	
}
.fond-page-question{
	background: rgba(255,255,255,1);/* Old Browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(89,46,0,0.15) 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(89,46,0,0.15)));/* Chrome, Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(89,46,0,0.15) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(89,46,0,0.15) 100%); /* Opera 11.10+ */
	background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(89,46,0,0.15) 100%); /* IE 10+ */
	background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(89,46,0,0.15) 100%);/* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#592e00', GradientType=1 );/* IE6-9 fallback on horizontal gradient */

}
#page #breadcrumb{
	position: absolute;
	left: 50%;
	background-color: #fff;
	background-image: url('../img/breadcrumb.svg');
	background-repeat: no-repeat;
	background-position: center 3rem;
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	border-radius: 2rem;
	color: #f18700;
	display: none;
}
#page #breadcrumb .marker{
	padding-top: 0.8rem;
	padding-left: 1rem;
}
#page #breadcrumb .marker img{
	width: 2rem;
}

#page section .container{
	height: 100%;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
#page section.slide,
#page #resultat{
	display: none;
}
#page section.slide .bloc-content{
	margin:auto;
	min-height: 45rem;
				
}
#page section.slide .bloc-content .multichoice{
	position: absolute;
    bottom: 1rem;
    right: 5rem;
    font-weight:bold;				
}
#page section.slide .bloc-content .content{
	background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0rem 0rem 2.1rem 0.5rem rgba(119, 119, 119, 0.4);
    -moz-box-shadow: 0rem 0rem 2.1rem .5rem rgba(119, 119, 119, 0.4);
    -webkit-box-shadow: 0rem 0rem 2.1rem 0.5rem rgba(119, 119, 119, 0.4);
    text-align: center;
    position: relative;	
}
#page section.slide .bloc-content .content .titre{
	position: relative;
}
#page section.slide .bloc-content .content .titre .interrogation{
    position: absolute;
    top: 0;
    display: inline-block;
}
#page section.slide .bloc-content .content h1{
	color: #2dbceb;
	font-family: "Damion";
}
#page section.slide .bloc-content .content h2{
	color: #000000;
	font-family: "arial";
	font-weight: bold;
}
#page section.slide .bloc-content .content .typ-txt .reponse:first-child{
	margin-top: 0rem !important;
}

#page section.slide .bloc-content .content .typ-txt .reponse{
	padding-top: 1rem;
    padding-bottom: 1rem;
    border: .1rem solid #313133;
    -webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	border-radius: 2rem;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
    cursor: pointer;
    font-family: arial;	
    color: #000;
}
#page section.slide .bloc-content .content .typ-img .reponse{
	cursor: pointer;
}
#page section.slide .bloc-content .content .typ-img .reponse img{
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	border-radius: 2rem;
	border: .1rem solid #313133;
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;				
}
#page section.slide .bloc-content .content .typ-img .reponse:hover img,
#page section.slide .bloc-content .content .typ-img .reponse.active img,
#page section.slide .bloc-content .content .typ-img .reponse.correct img,
#page section.slide .bloc-content .content .rep-img img{
	border: .6rem solid #92c364;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;
    				
}
#page section.slide .bloc-content .content .rep-img img{
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	border-radius: 2rem;
}
#page section.slide .bloc-content .content .typ-img .reponse.erreur img{
	border: .6rem solid #e74c3c;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;				
}

#page section.slide .bloc-content .content .typ-txt .reponse:hover,
#page section.slide .bloc-content .content .typ-txt .reponse.active,
#page section.slide .bloc-content .content .typ-txt .reponse.correct{
	background-color: #92c364;
	border:1px solid #92c364;
	color: #fff;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;				
}
#page section.slide .bloc-content .content .typ-txt .reponse.erreur{
	background-color: #e74c3c;
	border:1px solid #e74c3c;
	color: #fff;
	-webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    transition: all .4s ease-in;				
}

#page section.slide .bloc-content .content .bloc-explanation{
	display: none;
	margin-top: 2rem;
}
#page section.slide .bloc-content .content .bloc-explanation h2{
	color: #92c364;
}
#page section.slide .bloc-content .content .bloc-explanation p{
	text-align: left;					
}
#page section.slide .bloc-content .bloc-arrow .btn-arrow, 
#page section.slide .bloc-content .share{
	background-color: #f18700;
	color: #fff;
	font-family: arial;
	font-weight: bold;
	text-transform: uppercase;
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	border-radius: 2rem;
    padding: 1.5rem 2rem 1.5rem 0;
}
#page section.slide .bloc-content .share{
	display: inline-block;
	cursor: pointer;
}
#page section.slide .bloc-content .bloc-arrow .next{
	display: none;
	float: right;
	cursor: pointer;
}
#page section.slide .bloc-content .bloc-arrow .confirm{
	display: none;
	float: right;
	cursor: pointer;
}
#page section.slide .bloc-content .bloc-arrow .explanation{
	display: none;
	float: left;
	cursor: pointer;
}
#page #resultat .bloc-content .content .bloc-reponse p{
	font-size: 1.6rem;
}
#page #resultat .bloc-content .bloc-arrow p{
	font-family: "damion";
}
#page #resultat .bloc-content .bloc-arrow{
	background-color: #fff;
}
#page #resultat .bloc-content .question .titre{
	background-repeat: no-repeat;
    background-position: center;
    position: relative;				
	color: #fff;
    font-weight: bold;				
}
#page #resultat .bloc-content .question .titre.vert{
	background-image: url(../img/reponse-vert.svg);
}
#page #resultat .bloc-content .question .titre.bleu{
	background-image: url(../img/reponse-bleu.svg);
}
#page #resultat .bloc-content .question .titre.orange{
	background-image: url(../img/reponse-orange.svg);
}
#page #resultat .bloc-content .question .txt-vert,
#page #resultat .bloc-content .question .txt-bleu,
#page #resultat .bloc-content .question .txt-orange,
#page #resultat .bloc-content .question .share-experience{
	display: none;
}
#page #resultat .bloc-content .question .txt-vert ul,
#page #resultat .bloc-content .question .txt-bleu ul,
#page #resultat .bloc-content .question .txt-orange ul{
	list-style-type: disc;
}
#home{
	text-align: center;
}
#logo{
	margin-left: auto;
	margin-right: auto;
	display: none;
}
#knowledge{
	margin-left: auto;
	margin-right: auto;
	opacity: 0;	
				
}
.start{
	opacity: 0;
}
.start a{
	color: #fff;
	text-transform: uppercase;
	background-color: #f18700;
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	border-radius: 2rem;
	font-weight: bold;
	font-family: arial;
	display: inline-block;			
}
.bloc-content{
	margin: auto;
}
.subscribe,
.subscribe:hover,
#page section.slide .bloc-content .content p a,
#page section.slide .bloc-content .content p a:hover {
	color: #f18700;
	font-weight: bold;
}
@media (min-width: 1200px) {
	#logo{
		width: 50rem;
	}
	.start a{
		font-size: 2.6rem;
		padding: 1rem 2rem;
	}
	#knowledge{
		margin-bottom: 10rem;
	}
	#page section.slide .bloc-content{
		margin-left: 10rem;
    	margin-right: 10rem;
	}
	#page section.slide .bloc-content .content{
		padding: 1rem 4rem 4rem 4rem;
		min-height: 45rem;
	}
	#page section.slide .bloc-content .content h1{
		font-size: 5.4rem;
	}
	#page section.slide .bloc-content .content h2{
		font-size: 3rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse{
		margin-top: 4rem;
	}
	#page section.slide .bloc-content .content .typ-img{
		margin-left: 10rem;
		margin-right: 10rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse .reponse{
		font-size: 1.6rem;
	}
	#page section.slide .bloc-content .content .typ-txt .reponse{
		margin-top: 3rem;			
	}
	#page section.slide .bloc-content .content .bloc-explanation h2{
		margin-bottom: 3rem;
	}
	#page section.slide .bloc-content .content .bloc-explanation.rep-txt p{
		padding-left: 10rem;
		padding-right: 10rem;
	}
	#page section.slide .bloc-content .bloc-arrow{
		margin-top: 4rem;
		height: 6rem;
	}
	#page section.slide .bloc-content .bloc-arrow .btn-arrow{
		font-size: 2.1rem;
		width: 32rem;
    	text-align: center;
	}
	#page section.slide .bloc-content .content .titre .interrogation{
	    width: 6rem;
		left:55rem;
    	margin-top: -5rem;
	}
	#page section.slide .bloc-content .content .titre{
		margin-bottom: 3rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse p{
		margin-left: 5rem;
		margin-right: 5rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h1{
		margin-bottom: 2rem;
	}
	#page #resultat .bloc-content .bloc-arrow p{
		font-size: 3.2rem;
	}
	#page #resultat .bloc-content .bloc-arrow{
		height: 11rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:first-child{
		padding-top: 1rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:last-child{
		padding-top: 6rem;
	}
	#page section.slide .bloc-content .share{
		margin-top: 4rem;
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 2.1rem;
	}
	#page #resultat .bloc-content .question .titre{
		height: 9rem;
		margin-top: -5rem;
		margin-bottom:-3rem;
		font-size: 2.2rem;
	    padding-left: 6rem;
	    padding-top: 3rem;
	}	
	#page #breadcrumb{
		width: 38rem;
		margin-left:-19rem;
		height: 5rem;
		top: 3rem;
	}
	#page section.slide .bloc-content .content h2{
		font-size: 2rem;
	    margin-left: 10rem;
	    margin-right: 10rem;
	    margin-bottom: 1rem;
	}
	#page section.slide .bloc-content .content .rep-img h2{
		margin-left: 0rem;
	    margin-right: 0rem;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social{
		width: 8rem;
		margin: 6rem;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social img{
		width: 8rem;
	}
	#page #resultat .bloc-content .question .txt-vert ul,
	#page #resultat .bloc-content .question .txt-bleu ul,
	#page #resultat .bloc-content .question .txt-orange ul{
		margin-left:10rem;
	}			
}
@media (min-width: 992px) and (max-width: 1200px) {
	#logo{
		width: 44rem;
	}
	.start a{
		font-size: 2.6rem;
		padding: 1rem 2rem;
	}
	#knowledge{
		width: 52rem;
		margin-bottom: 8rem;
	}
	#page section.slide .container .bloc-content{
		margin-top: 15rem;
	}
	#page section.slide .bloc-content{
		margin-left: 10rem;
    	margin-right: 10rem;
	}
	#page section.slide .bloc-content .content{
		padding: 1rem 4rem 4rem 4rem;
		min-height: 45rem;
	}
	#page section.slide .bloc-content .content h1{
		font-size: 5.4rem;
	}
	#page section.slide .bloc-content .content h2{
		font-size: 3rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse{
		margin-top: 6rem;
	}
	#page section.slide .bloc-content .content .typ-img{
		margin-left: 6rem;
		margin-right: 6rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse .reponse{
		font-size: 1.6rem;
	}
	#page section.slide .bloc-content .content .typ-txt .reponse{
		margin-top: 3rem;			
	}
	#page section.slide .bloc-content .content .bloc-explanation h2{
		margin-bottom: 3rem;
	}
	#page section.slide .bloc-content .content .bloc-explanation.rep-txt p{
		padding-left: 10rem;
		padding-right: 10rem;
	}
	#page section.slide .bloc-content .bloc-arrow{
		margin-top: 4rem;
		height: 6rem;
	}
	#page section.slide .bloc-content .bloc-arrow .btn-arrow{
		font-size: 2.1rem;
		width: 32rem;
    	text-align: center;
	}
	#page section.slide .bloc-content .content .titre .interrogation{
	    width: 6rem;
		left: 46rem;
    	margin-top: -4rem;
	}
	#page section.slide .bloc-content .content .titre{
		margin-bottom: 3rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse p{
		margin-left: 5rem;
		margin-right: 5rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h1{
		margin-bottom: 2rem;
	}
	#page #resultat .bloc-content .bloc-arrow p{
		font-size: 3.2rem;
	}
	#page #resultat .bloc-content .bloc-arrow{
		height: 10rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:first-child{
		padding-top: 1rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:last-child{
		padding-top: 1rem;
	}
	#page section.slide .bloc-content .share{
		margin-top: 4rem;
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 2.1rem;
	}
	#page #resultat .bloc-content .question .titre{
		height: 9rem;
		margin-top: -5rem;
		margin-bottom:-3rem;
		font-size: 2.2rem;
	    padding-left: 6rem;
	    padding-top: 3rem;
	}	
	#page #breadcrumb{
		width: 38rem;
		margin-left:-19rem;
		height: 5rem;
		top: 3rem;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social{
		width: 8rem;
		margin: 6rem;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social img{
		width: 8rem;
	}
	#page #resultat .bloc-content .question .txt-vert ul,
	#page #resultat .bloc-content .question .txt-bleu ul,
	#page #resultat .bloc-content .question .txt-orange ul{
		margin-left:5rem;
	}							
}
@media (min-width: 768px) and (max-width: 992px) {
	#logo{
		width: 44rem;
	}
	.start a{
		font-size: 2.6rem;
		padding: 1rem 2rem;
	}
	#knowledge{
		width: 52rem;
		margin-bottom: 8rem;
	}
	#page section.slide .container .bloc-content{
		margin-top: 15rem;
	}
	#page section.slide .bloc-content{
		margin-left: 4rem;
    	margin-right: 4rem;
	}
	#page section.slide .bloc-content .content{
		padding: 1rem 4rem 4rem 4rem;
		min-height: 45rem;
	}
	#page section.slide .bloc-content .content h1{
		font-size: 5.4rem;
	}
	#page section.slide .bloc-content .content h2{
		font-size: 2.5rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse{
		margin-top: 6rem;
	}
	#page section.slide .bloc-content .content .typ-img{
		margin-left: 2rem;
		margin-right: 2rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse .reponse{
		font-size: 1.6rem;
	}
	#page section.slide .bloc-content .content .typ-txt .reponse{
		margin-top: 3rem;			
	}
	#page section.slide .bloc-content .content .bloc-explanation h2{
		margin-bottom: 2rem;
	}
	#page section.slide .bloc-content .content .bloc-explanation.rep-txt p{
		padding-left: 10rem;
		padding-right: 10rem;
	}
	#page section.slide .bloc-content .bloc-arrow{
		margin-top: 4rem;
		height: 6rem;
	}
	#page section.slide .bloc-content .bloc-arrow .btn-arrow{
		font-size: 1.6rem;
		width: 25rem;
    	text-align: center;
	}
	#page section.slide .bloc-content .content .titre .interrogation{
	    width: 6rem;
		left: 41rem;
    	margin-top: -4rem;
	}
	#page section.slide .bloc-content .content .titre{
		margin-bottom: 3rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse p{
		margin-left: 2rem;
		margin-right: 2rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h1{
		margin-bottom: 2rem;
	}
	#page #resultat .bloc-content .bloc-arrow p{
		font-size: 3.2rem;
	}
	#page #resultat .bloc-content .bloc-arrow{
		height: 10rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:first-child{
		padding-top: 1rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:last-child{
		padding-top: 1rem;
	}
	#page section.slide .bloc-content .share{
		margin-top: 4rem;
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 2.1rem;
	}
	#page #resultat .bloc-content .question .titre{
		height: 9rem;
		margin-top: -5rem;
		margin-bottom:-3rem;
		font-size: 2.2rem;
	    padding-left: 6rem;
	    padding-top: 3rem;
	}	
	#page #breadcrumb{
		width: 38rem;
		margin-left:-19rem;
		height: 5rem;
		top: 3rem;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social{
		width: 8rem;
		margin: 6rem;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social img{
		width: 8rem;
	}
	#page #resultat .bloc-content .question .txt-vert ul,
	#page #resultat .bloc-content .question .txt-bleu ul,
	#page #resultat .bloc-content .question .txt-orange ul{
		margin-left:5rem;
	}							
}
@media (max-width: 768px) {
	#logo{
		width: 44rem;
	}
	.start a{
		font-size: 2rem;
		padding: 1rem 2rem;
	}
	#knowledge{
		width: 52rem;
		margin-bottom: 6rem;
	}
	#page section.slide .container .bloc-content{
		margin-top: 15rem;
	}
	#page section.slide .bloc-content{
		margin-left: 0rem;
    	margin-right: 0rem;
	}
	#page section.slide .bloc-content .content{
		padding: 1rem 2rem 5rem 2rem;
	}
	#page section.slide .bloc-content .content h1{
		font-size: 4.4rem;
	}
	#page section.slide .bloc-content .content h2{
		font-size: 1.8rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse{
		margin-top: 6rem;
	}
	#page section.slide .bloc-content .content .typ-img{
		margin-left: 10rem;
		margin-right: 10rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse .reponse{
		font-size: 1.6rem;
	}
	#page section.slide .bloc-content .content .typ-txt .reponse{
		margin-top: 3rem;	
		padding-left: 1rem;
    	padding-right: 1rem;		
	}
	#page section.slide .bloc-content .content .bloc-explanation h2{
		margin-bottom: 2rem;
	}
	#page section.slide .bloc-content .content .bloc-explanation.rep-txt p{
		padding-left: 0rem;
		padding-right: 0rem;
	}
	#page section.slide .bloc-content .bloc-arrow{
		margin-top: 4rem;
		height: 6rem;
	}
	#page section.slide .bloc-content .bloc-arrow .btn-arrow{
		font-size: 1.6rem;
		width: 22rem;
    	text-align: center;
	}
	#page section.slide .bloc-content .content .titre .interrogation{
	    width: 6rem;
		left: 41rem;
    	margin-top: -4rem;
	}
	#page section.slide .bloc-content .content .titre{
		margin-bottom: 3rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse p{
		margin-left: 2rem;
		margin-right: 2rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h1{
		margin-bottom: 2rem;
	}
	#page #resultat .bloc-content .bloc-arrow p{
		font-size: 3.2rem;
	}
	#page #resultat .bloc-content .bloc-arrow{
		height: 10rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:first-child{
		padding-top: 1rem;
	}
	#page #resultat .bloc-content .bloc-arrow div:last-child{
		padding-top: 1rem;
	}
	#page section.slide .bloc-content .share{
		margin-top: 4rem;
		padding-left: 2rem;
		padding-right: 2rem;
		font-size: 2.1rem;
	}
	#page #resultat .bloc-content .question .titre{
		height: 9rem;
		margin-top: -5rem;
		margin-bottom:-3rem;
		font-size: 2.2rem;
	    padding-left: 6rem;
	    padding-top: 3rem;
	}	
	#page #breadcrumb{
		width: 38rem;
		margin-left:-19rem;
		height: 5rem;
		top: 3rem;
	}
	#page section.slide .bloc-content .content .typ-img .reponse:nth-child(n+2){
		margin-top: 2rem;
	}
	#page section.slide .bloc-content .content .titre .interrogation{
		display: none;
	}
	#page section.slide .bloc-content .content .bloc-explanation div:first-child{
		margin-bottom: 2rem;
	}
	#page #resultat .bloc-content .question .titre.vert{
		background-size: contain;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social{
		width: 8rem;
		margin: 6rem;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social img{
		width: 8rem;
	}
	#page #resultat .bloc-content .question .txt-vert ul,
	#page #resultat .bloc-content .question .txt-bleu ul,
	#page #resultat .bloc-content .question .txt-orange ul{
		margin-left:5rem;
	}							
}
@media (max-width: 480px) {
	.col-xs-6{
		width: 100%;
	}
	.share-experience .col-xs-6{
		width: 50%;
	}
	#page #resultat .bloc-content .question .share-experience .btn-social{
		margin: 0rem;
	}
	#page section.slide .bloc-content .bloc-arrow .next,
	#page section.slide .bloc-content .bloc-arrow .explanation,
	#page section.slide .bloc-content .bloc-arrow .confirm{	
		margin-left: auto;
    	margin-right: auto;
    	float: none;	
	}
	#page section.slide .bloc-content .bloc-arrow .next{
		margin-top: 2rem;
	}					
}
@media (max-width: 400px) {
	#page #breadcrumb{
		display: none !important;
	}
	#page section.slide .container .bloc-content{
		margin-top: 1rem;
	}
	
	#page section.slide .bloc-content .content .typ-img{
		margin-left: 5rem;
		margin-right: 5rem;
	}
	#page #resultat .container .bloc-content{
		margin-top: 6rem;
	}
	#page #resultat .bloc-content .question .titre{
		font-size: 1.8rem;
		padding-top: 3.5rem;
	}
	#page #resultat .bloc-content .question .titre{
		margin-top: 3rem;
	}
	#page #resultat .bloc-content .question .titre{
		font-size: 1.8rem;
	}
}
@media (min-width: 1200px) and (max-height: 768px){
	#logo{
		width: 44rem;
	}
	#knowledge{
		width: 52rem;
		margin-bottom: 8rem;
	}
	#page section.slide .bloc-content .content{
		min-height: 41rem;
	}
	#page #breadcrumb{
		top: 1rem;
	}
	#page section.slide .container .bloc-content{
		margin-top: 11rem;
	}
	#page section.slide .bloc-content .bloc-arrow{
		margin-top: 2rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h1{
		font-size: 4.4rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h2{
		font-size: 2rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse p{
		margin-left: 2rem;
		margin-right: 2rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h1{
		margin-bottom: 1rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse{
		margin-top: 3rem;
	}
	#page #resultat .bloc-content .content{
		min-height: 42rem;
	}					
}
@media (min-width: 992px) and (max-width: 1200px) and (max-height: 768px){
	#page #breadcrumb{
		top: 1rem;
	}
	#page section.slide .container .bloc-content{
		margin-top: 11rem;
	}
	#page section.slide .bloc-content .bloc-arrow{
		margin-top: 2rem;
	}
	#page section.slide .bloc-content .content h2{
		font-size: 2.7rem;
	}
	#page section.slide .bloc-content .content .titre{
		margin-bottom: 2.5rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h1{
		font-size: 4.4rem;
		margin-bottom: 1rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse h2{
		font-size: 2rem;
	}
	#page #resultat .bloc-content .content .bloc-reponse p{
		margin-left: 1rem;
		margin-right: 1rem;
	}
	#page section.slide .bloc-content .content .bloc-reponse{
		margin-top: 4rem;
	}
	#page #resultat .bloc-content .content{
		min-height: 42rem;
	}				
}
