

#macaron{
	width: 85px;
	transform: rotate(18deg);
	margin-right: 8%;
}

#imgEnTete {
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin: 0;
	padding: 0;
	height: 85px;
}

#logoEnTete{
	margin-top:15px;
}

#elig{
	height: 80px;
	margin-top: 17px;
	margin-left: 5%;
}

#bandeBleue{
	background: rgb(236,103,28);
	background: -moz-linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	background: linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ec671c",endColorstr="#f5b38d",GradientType=1);	margin-bottom: 15px;
	text-transform: uppercase;
	color: #fff;
	padding: 15px 0 4px 0;
	text-align: center;
}

.containerRac{
	background-image:url(img/fond-rac1.png);
	background-size:100%;
	background-repeat:no-repeat;
}

#bandeTransp{
	margin-top:48px;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: #fff;
	padding: 15px 0 4px 0;
	text-align: center;
}


#wrapper{
	display: flex;
	flex-direction: column-reverse;
	margin-top: 10px;
	position: relative;
}

.row page-title text-center .wow .bounce{

	visibility: visible;
	animation-delay: 1s;
	animation-name: bounce;
	display: flex;
	flex-direction: column-reverse;
}

#fde-slot-am-2918925657{
	-webkit-box-shadow: 3px 3px 6px 0px rgba(140,140,140,1);
	-moz-box-shadow: 3px 3px 6px 0px rgba(140,140,140,1);
	box-shadow: 3px 3px 6px 0px rgba(140,140,140,1);
}


#fde-slot-am-9025837554{
	-webkit-box-shadow: 3px 3px 6px 0px rgba(140,140,140,1);
	-moz-box-shadow: 3px 3px 6px 0px rgba(140,140,140,1);
	box-shadow: 3px 3px 6px 0px rgba(140,140,140,1);
}


h3{
	font-weight: 800;
	margin: 10px;
}

#encart{
	position:absolute;
	transform: rotate(-18deg);
	width: 100px;
}

img {
	vertical-align: top!important;
}

#partieGauche{
	text-align: center;
}

#imgGauche{
	width: 70%;
	margin-top: 20px;
}



#listeGauche{
	text-align: left;
	color: #000;
	font-weight: 800;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	list-style: none;
	text-indent: -1.5em;
	width: 81%;
	margin: auto;
	margin-top: 30px;
}


#listeGauche li{
	margin-bottom:15px;
}


#bandeauOrange{
	background: rgb(236,103,28);
	background: -moz-linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	background: linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ec671c",endColorstr="#f5b38d",GradientType=1);	padding : 20px 0 20px 0;
}

.bloc{
	padding: 10px;
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	width: 232px;
	margin: auto;
	font-weight: 600;
	color:#fff;
}

.bloc img{
	width:84px;
	margin-bottom:10px;
}

#troisBlocs{
	display: flex;
	margin: auto;
	max-width: 992px;
	text-align: center;
	flex-wrap: wrap;
}

#texteSection2{
	display:flex;
	flex-direction:column;
	justify-content: space-around;
}

.colonne{
	width:100%;
	margin: 0 auto;
}

#conclusion{
	text-transform:uppercase;
	color:#333;
	margin: 50px auto;
	text-align:justify;
	font-weight:800;
}

#illustr{
	display: flex;
	flex-wrap: wrap;
	max-width: 992px;
	justify-content: space-around;
	margin: auto;
	position: relative;
}

#bouss{
	position:absolute;
	top:41%;
	left:42%;
	display:none;
}



#bandeTransp2 {
	display:none;
	margin-top: 50px;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: #fff;
	padding: 15px 0 4px 0;
	text-align: center;
	background: rgb(236,103,28);
	background: -moz-linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	background: linear-gradient(0deg, rgba(236,103,28,1) 0%, rgba(245,179,141,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ec671c",endColorstr="#f5b38d",GradientType=1);
}

.imgIntro{
	width:90%;
	margin:auto;
	transition-duration:0.25s;
}

.imgIntro:hover{
	background:#f5b38d;
	transition-duration:0.25s;
}

@media(min-width:536px){
	.containerRac{
		background-image:url(img/fond-rac2.png);
	}
}

@media (min-width: 768px) {

	.imgIntro{
		width:350px;
	}

	#bouss{
		display:block;
		-webkit-animation:spin 20s linear infinite;
		-moz-animation:spin 20s linear infinite;
		animation:spin 20s linear infinite;
	}
	@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
	@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
	@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
	

	#bandeTransp2 {
		margin-top: 100px;
	}

	#elig {
		height: 80px;
		margin-top: -24px;
		margin-left: 15%;
	}
	#imgEnTete {
		height: 100px;
		margin-top: -100px;
		//margin-bottom: 150px;
	}
	#macaron {
		width: 100px;
	}

	#imgEnTete {
		height: 100px;
	}

	#bandeauOrange{
		margin-top: 30px;
		flex-direction: row;
		flex-wrap: wrap;
	}

	#texteSection2{
		display: flex;
		flex-direction: row;
	}

	.colonne{
		width:45%;
		margin: 20px auto;
		text-align:justify;
	}


	h2{

		margin-top: 30px;
		margin-bottom: 30px;
	}

}

@media (min-width: 878px) {
	#elig {
		height: 80px;
		margin-top: 10px;
		margin-left: 15%;
	}
}

@media (min-width: 992px) {
	.containerRac{
		background-image:url(img/maquette_rachat-de-credits.png);
	}

	#wrapper{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;	    
	}

	#gauche{
		width:45%;
		margin: 0 auto;
	}

	#droite{
		width: 45%;
		margin: auto;
		margin-top: 0;
		z-index: 1000;
	}

	#droite {
		width: 45%;
		margin: auto;
		margin-top: 32px;
		z-index: 1000;
	}

	#macaron {
		width: 120px;
	}

	#elig{
		height: 80px;
		margin-top: 35px;
	}

	#imgEnTete {
		position: absolute;
		right: 20px;
		top: 20px;
		height:120px;
		margin-top: 30px;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
	}

	#bandeBleue {
		margin-top: 100px;
		padding-right: 50%;
	}

	.row page-title text-center .wow .bounce{

		flex-direction: column;
	}

	.titrepagesConso{
		display:block;
	}
	#imgGauche{
		width: 90%;

	}


