:root {
    --container-width: 1216px;
    --unit: 72px;
    --um: 16px;
    --rn-width6: calc(2 * var(--unit) + 2 * var(--um));
    --rn-width4: calc(3 * var(--unit) + 4 * var(--um));
    --rn-width3: calc(4 * var(--unit) + 6 * var(--um));
    --rn-width2: calc(6 * var(--unit) + 10 * var(--um));
    --rn-width1: calc(12 * var(--unit) + 22 * var(--um));
  
    --cardHeight: 150px;
  
    --yellow: #ede04a;
    --lightYellow: #f8eb4c;
    --white: #ffffff;
    --gray1: #dad9d7;
    --gray2: #bbbbbb;
    --gray3: #898a8d;
    --black: #000000;
  }
  
  @font-face {
    font-family: "NouvelRBold";
    src: url("../fonts/NouvelRBold.ttf") format("truetype");
    font-weight: 700;
  }
  
  @font-face {
    font-family: "NouvelRRegular";
    src: url("../fonts/NouvelRRegular.ttf") format("truetype");
  }
  
  @font-face {
    font-family: "RenaultGroupSemibold";
    src: url("../fonts/RenaultGroupSemibold.otf") format("truetype");
    font-weight: 500;
  }
  .tablet {
    display: none;
  }
  
  .mobile {
    display: none;
  }
  
  a{
    text-decoration: none;
  }
  
  @media (max-width: 800px) {
    :root {
      --unit: 64px;
      --um: 16px;
  
      --cardHeight: 100px;
  
  
      --rn-width4: calc(2 * var(--unit) + 2 * var(--um));
      --rn-width2: calc(4 * var(--unit) + 6 * var(--um));
      --rn-width2-5: calc(3 * var(--unit) + 4 * var(--um));
      --rn-width1-2: calc(5 * var(--unit) + 8 * var(--um));
      --rn-width1: calc(8 * var(--unit) + 14 * var(--um));
    }
    .tablet {
      display: flex !important;
    }
  
    .desktop {
      display: none !important;
    }
    .mobile {
      display: none !important;
    }
  }
  @media (max-width: 343px) {
    :root {
      --unit: 94px;
      --um: 16px;
  
      --cardHeight: 70px;
  
  
      --rn-width3: var(--unit);
      --rn-width1-5: calc(2 * var(--unit) + 2 * var(--um));
      --rn-width1: calc(3 * var(--unit) + 44 * var(--um));
    }
    .tablet {
      display: none !important;
    }
  
    .desktop {
      display: none !important;
    }
  
    .mobile {
      display: flex !important;
    }
  }
  
  body {
    margin: 0;
    padding: 0;
    min-height: 70vh;
  }
  
  .main_container {
    min-height: 65vh;
	}
  
  .row_i {
    position: absolute;
    width: 100%;
    top: 150px;
  }
  .row_6i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .card_s6 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--gray1);
    height: var(--cardHeight);
    width: var(--rn-width6);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .row_4i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .card_s4 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--gray2);
    height: var(--cardHeight);
    width: var(--rn-width4);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .row_3i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    flex-wrap: wrap;
  }
  .card_s3 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--gray3);
    height: var(--cardHeight);
    width: var(--rn-width3);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .row_2i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .card_s2 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--gray2);
    height: var(--cardHeight);
    width: var(--rn-width2);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .row_2-5i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .card_s2-5 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--gray2);
    height: var(--cardHeight);
    width: var(--rn-width2);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .row_1-2i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .card_s1-2 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--black);
    height: var(--cardHeight);
    width: var(--rn-width1);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .row_1i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .card_s1 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--black);
    height: var(--cardHeight);
    width: var(--rn-width1);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .row_1-5i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
  }
  .card_s1-5 {
    box-shadow: 0px 0px 4px 0px black;
    border-radius: 5px;
    border: solid 5px var(--black);
    height: var(--cardHeight);
    width: var(--rn-width1-5);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  
    .allFormContainer {
		display: flex;
		width: 100%;
		flex-direction: row;
		justify-content: center;
		position: relative;
		background-color: transparent;
	}
  
  .unit1 {
    height: 100%;
    background-color: rgba(129, 230, 255, 0.24);
    margin: 0 var(--um);
    width: var(--unit);
    min-height: 1200vh;
  }

.lp-quizz .form{
	display: none;
}













.text-left{
	text-align:left
}
.text-right{
	text-align:right
}
.text-center{
	text-align:center
}
.lp-quizz .how-to .accordion__title .plus span,.lp-quizz .how-to .accordion__title .plus span,.lp-quizz .progress .middle p,.lp-quizz .progress .middle p:before,.lp-quizz .progress__number,.lp-quizz .progress__number:before,.lp-quizz .reprise .content .image img{
	position:absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-ms-transform:translate(-50%,-50%);
	-o-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%)
}
.lp-quizz .how-to .accordion__title .plus,.lp-quizz .testimonials .owl-carousel.carousel .text:after{
	position:absolute;
	left:50%;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-o-transform:translateX(-50%);
	transform:translateX(-50%)
}
/*.lp-quizz #progress-bar .bar,.lp-quizz #progress-bar .dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{
	position:absolute;
	top:50%;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%)
}
.lp-quizz .row:after{
	content:"";
	display:block;
	clear:both;
    display: none;
}
@font-face{
	font-family:dacia-spirit;
	font-weight:normale;
	src:url(../fonts/Dacia-Regular.eot),url(../fonts/Dacia-Regular.eot?#iefix) format("embedded-opentype"),url(../fonts/Dacia-Regular.woff2) format("woff"),url(../fonts/Dacia-Regular.ttf) format("truetype"),url(../fonts/Dacia-Regular.svg#DaciaSpirit) format("svg")
}
@font-face{
	font-family:dacia-spirit-bold;
	font-weight:normale;
	src:url(../fonts/DaciaExtended-Bold.eot),url(../fonts/DaciaExtended-Bold.eot?#iefix) format("embedded-opentype"),url(../fonts/DaciaExtended-Bold.woff2) format("woff"),url(../fonts/DaciaExtended-Bold.ttf) format("truetype"),url(../fonts/DaciaExtended-Bold.svg#DaciaExtended-Bold) format("svg")
}*/
*,:after,:before{
	margin:0;
	padding:0;
	outline:0;
	-webkit-box-sizing:inherit;
	-moz-box-sizing:inherit;
	box-sizing:inherit
}
html{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	font-size:16px
}
@media only screen and (max-width:1440px){
	html{
		font-size:16px
	}
}
@media only screen and (max-width:1024px){
	html{
		font-size:15px
	}
}
@media only screen and (max-width:767px){
	html{
		font-size:14px
	}
}
body{
	font-family:dacia-spirit,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size:16px;
	font-size:1rem;
	color:#222;
	background:#fff;
	line-height:1.3;
	overflow-x:hidden;
	counter-reset:a
}
/*img{
	width:100%;
}*/
img[src$='.svg'] {
	width: inherit;
}
strong{
	font-family:NouvelRBold;
}
.lp-quizz {
    position: relative;
    width: var(--rn-width1);
}
.lp-quizz .bloc{
	margin:3.5rem 0
}
/*.lp-quizz .hero{
	font-size:0
}
.lp-quizz .title{
	font-family:NouvelRBold;
	font-size:24px;
	font-size:1.5rem;
	text-align:center;
	margin:2rem auto;
	padding:0 .5rem;
	font-weight:400;
	max-width:60rem
}
.lp-quizz .title strong{
	display:block;
	text-transform:uppercase;
	line-height:1
}
.lp-quizz .title span{
	display:block;
	font-size:18px;
	font-size:1.125rem;
	margin-top:.5rem
}
@media only screen and (max-width:767px){
	.lp-quizz .title{
		font-size:24px;
		font-size:1.5rem;
		margin:1.5rem auto
	}
	.lp-quizz .title span{
		margin-top:.25rem;
		font-size:16px;
		font-size:1rem
	}
}
/*.lp-quizz .video{
	max-width:60.625rem;
	margin:1.5rem auto;
	padding:0 .625rem
}
.lp-quizz .video iframe,.lp-quizz .video video{
	width:100%!important;
	height:auto!important;
	background-color:#000
}*/

.lp-quizz .row.quizz-wrapper {
    /*max-width: 75rem;*/
    display: flex;
    flex-direction: row-reverse;
}
/*.owl-carousel .owl-dots{
	text-align:center;
	width:100%;
	margin-top:.5rem
}
.owl-carousel .owl-dots .owl-dot{
	display:inline-block;
	padding:0 .25rem!important
}
.owl-carousel .owl-dots .owl-dot span{
	display:inline-block;
	width:.625rem;
	height:.625rem;
	-moz-border-radius:50%;
	border-radius:50%;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	background:#999
}
.owl-carousel .owl-dots .owl-dot.active span{
	background:#646b52
}
.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{
	top:50%;
	color:#53565a!important;
	font-size:24px!important;
	z-index:8
}
.owl-carousel .owl-nav .owl-next.disabled,.owl-carousel .owl-nav .owl-prev.disabled{
	opacity:.2
}
.owl-carousel .owl-nav .owl-prev{
	left:1rem
}
.owl-carousel .owl-nav .owl-next{
	right:1rem
}
.owl-carousel,.owl-carousel .owl-item{
	-webkit-tap-highlight-color:transparent;
	position:relative
}
.owl-carousel{
	display:none;
	width:100%;
	z-index:1
}
.owl-carousel .owl-stage{
	position:relative;
	-ms-touch-action:pan-Y;
	touch-action:manipulation;
	-moz-backface-visibility:hidden
}
.owl-carousel .owl-stage:after{
	content:".";
	display:block;
	clear:both;
	visibility:hidden;
	line-height:0;
	height:0
}
.owl-carousel .owl-stage-outer{
	position:relative;
	overflow:hidden;
	-webkit-transform:translateZ(0)
}
.owl-carousel .owl-item,.owl-carousel .owl-wrapper{
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-webkit-transform:translateZ(0);
	-moz-transform:translateZ(0);
	-ms-transform:translateZ(0)
}
.owl-carousel .owl-item{
	min-height:1px;
	float:left;
	-webkit-backface-visibility:hidden;
	-webkit-touch-callout:none
}
.owl-carousel .owl-item img{
	display:block;
	width:100%
}
.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{
	display:none
}
.no-js .owl-carousel,.owl-carousel.owl-loaded{
	display:block
}
.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none
}
.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{
	background:0 0;
	color:inherit;
	border:none;
	padding:0!important;
	font:inherit
}
.owl-carousel.owl-loading{
	opacity:0;
	display:block
}
.owl-carousel.owl-hidden{
	opacity:0
}
.owl-carousel.owl-refresh .owl-item{
	visibility:hidden
}
.owl-carousel.owl-drag .owl-item{
	-ms-touch-action:pan-y;
	touch-action:pan-y;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none
}
.owl-carousel.owl-grab{
	cursor:move;
	cursor:-webkit-grab;
	cursor:-moz-grab;
	cursor:grab
}
.owl-carousel.owl-rtl{
	direction:rtl
}
.owl-carousel.owl-rtl .owl-item{
	float:right
}
.owl-carousel .animated{
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	-o-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both
}
.owl-carousel .owl-animated-in{
	z-index:0
}
.owl-carousel .owl-animated-out{
	z-index:1
}
.owl-carousel .fadeOut{
	-webkit-animation-name:a;
	-moz-animation-name:a;
	-o-animation-name:a;
	animation-name:a
}
@-webkit-keyframes a{
	0%{
		opacity:1
	}
	to{
		opacity:0
	}
}
@-moz-keyframes a{
	0%{
		opacity:1
	}
	to{
		opacity:0
	}
}
@-o-keyframes a{
	0%{
		opacity:1
	}
	to{
		opacity:0
	}
}
@keyframes a{
	0%{
		opacity:1
	}
	to{
		opacity:0
	}
}
.owl-height{
	-webkit-transition:height .5s ease-in-out;
	-o-transition:height .5s ease-in-out;
	-moz-transition:height .5s ease-in-out;
	transition:height .5s ease-in-out
}
.owl-carousel .owl-item .owl-lazy{
	opacity:0;
	-webkit-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-moz-transition:opacity .4s ease;
	transition:opacity .4s ease
}
.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{
	max-height:0
}
.owl-carousel .owl-item img.owl-lazy{
	-webkit-transform-style:preserve-3d;
	-moz-transform-style:preserve-3d;
	transform-style:preserve-3d
}
.owl-carousel .owl-video-wrapper{
	position:relative;
	height:100%;
	background:#000
}
.owl-carousel .owl-video-play-icon{
	position:absolute;
	height:80px;
	width:80px;
	left:50%;
	top:50%;
	margin-left:-40px;
	margin-top:-40px;
	background:url(owl.video.play.png) no-repeat;
	cursor:pointer;
	z-index:1;
	-webkit-backface-visibility:hidden;
	-webkit-transition:-webkit-transform .1s ease;
	transition:-webkit-transform .1s ease;
	-o-transition:-o-transform .1s ease;
	-moz-transition:transform .1s ease,-moz-transform .1s ease;
	transition:transform .1s ease;
	transition:transform .1s ease,-webkit-transform .1s ease,-moz-transform .1s ease,-o-transform .1s ease
}
.owl-carousel .owl-video-play-icon:hover{
	-ms-transform:scale(1.3);
	-webkit-transform:scale(1.3);
	-moz-transform:scale(1.3);
	-o-transform:scale(1.3);
	transform:scale(1.3)
}
.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{
	display:none
}
.owl-carousel .owl-video-tn{
	opacity:0;
	height:100%;
	background-position:50%;
	background-repeat:no-repeat;
	-webkit-background-size:contain;
	-moz-background-size:contain;
	background-size:contain;
	-webkit-transition:opacity .4s ease;
	-o-transition:opacity .4s ease;
	-moz-transition:opacity .4s ease;
	transition:opacity .4s ease
}
.owl-carousel .owl-video-frame{
	position:relative;
	z-index:1;
	height:100%;
	width:100%
}
.owl-theme .owl-dots,.owl-theme .owl-nav{
	text-align:center;
	-webkit-tap-highlight-color:transparent
}
.owl-theme .owl-nav{
	margin-top:10px
}
.owl-theme .owl-nav [class*=owl-]{
	color:#fff;
	font-size:14px;
	margin:5px;
	padding:4px 7px;
	background:#d6d6d6;
	display:inline-block;
	cursor:pointer;
	-moz-border-radius:3px;
	border-radius:3px
}
.owl-theme .owl-nav [class*=owl-]:hover{
	background:#869791;
	color:#fff;
	text-decoration:none
}
.owl-theme .owl-nav .disabled{
	opacity:.5;
	cursor:default
}
.owl-theme .owl-nav.disabled+.owl-dots{
	margin-top:10px
}
.owl-theme .owl-dots .owl-dot{
	display:inline-block;
	zoom:1
}
.owl-theme .owl-dots .owl-dot span{
	width:10px;
	height:10px;
	margin:5px 7px;
	background:#d6d6d6;
	display:block;
	-webkit-backface-visibility:visible;
	-webkit-transition:opacity .2s ease;
	-o-transition:opacity .2s ease;
	-moz-transition:opacity .2s ease;
	transition:opacity .2s ease;
	-moz-border-radius:30px;
	border-radius:30px
}
.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{
	background:#869791
}*/

@media screen{
	html:not(.no-js) [data-aos^=fade][data-aos^=fade]{
		opacity:0;
		transition-property:opacity,-webkit-transform;
		-webkit-transition-property:opacity,-webkit-transform;
		-o-transition-property:opacity,-o-transform;
		-moz-transition-property:opacity,transform,-moz-transform;
		transition-property:opacity,transform;
		transition-property:opacity,transform,-webkit-transform,-moz-transform,-o-transform;
		transition-property:opacity,transform,-webkit-transform
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        border: none;
    }
	html:not(.no-js) [data-aos=fade-up]{
		-webkit-transform:translate3d(0,100px,0);
		-moz-transform:translate3d(0,100px,0);
		transform:translate3d(0,100px,0)
	}
	html:not(.no-js) [data-aos=fade-down]{
		-webkit-transform:translate3d(0,-100px,0);
		-moz-transform:translate3d(0,-100px,0);
		transform:translate3d(0,-100px,0)
	}
	html:not(.no-js) [data-aos=fade-right]{
		-webkit-transform:translate3d(-100px,0,0);
		-moz-transform:translate3d(-100px,0,0);
		transform:translate3d(-100px,0,0)
	}
	html:not(.no-js) [data-aos=fade-left]{
		-webkit-transform:translate3d(100px,0,0);
		-moz-transform:translate3d(100px,0,0);
		transform:translate3d(100px,0,0)
	}
	html:not(.no-js) [data-aos=fade-up-right]{
		-webkit-transform:translate3d(-100px,100px,0);
		-moz-transform:translate3d(-100px,100px,0);
		transform:translate3d(-100px,100px,0)
	}
	html:not(.no-js) [data-aos=fade-up-left]{
		-webkit-transform:translate3d(100px,100px,0);
		-moz-transform:translate3d(100px,100px,0);
		transform:translate3d(100px,100px,0)
	}
	html:not(.no-js) [data-aos=fade-down-right]{
		-webkit-transform:translate3d(-100px,-100px,0);
		-moz-transform:translate3d(-100px,-100px,0);
		transform:translate3d(-100px,-100px,0)
	}
	html:not(.no-js) [data-aos=fade-down-left]{
		-webkit-transform:translate3d(100px,-100px,0);
		-moz-transform:translate3d(100px,-100px,0);
		transform:translate3d(100px,-100px,0)
	}
	html:not(.no-js) [data-aos^=zoom][data-aos^=zoom]{
		opacity:0;
		transition-property:opacity,-webkit-transform;
		-webkit-transition-property:opacity,-webkit-transform;
		-o-transition-property:opacity,-o-transform;
		-moz-transition-property:opacity,transform,-moz-transform;
		transition-property:opacity,transform;
		transition-property:opacity,transform,-webkit-transform,-moz-transform,-o-transform;
		transition-property:opacity,transform,-webkit-transform
	}
	html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate{
		opacity:1;
		-webkit-transform:translateZ(0) scale(1);
		-moz-transform:translateZ(0) scale(1);
		transform:translateZ(0) scale(1)
	}
	html:not(.no-js) [data-aos=zoom-in]{
		-webkit-transform:scale(.6);
		-moz-transform:scale(.6);
		-ms-transform:scale(.6);
		-o-transform:scale(.6);
		transform:scale(.6)
	}
	html:not(.no-js) [data-aos=zoom-in-up]{
		-webkit-transform:translate3d(0,100px,0) scale(.6);
		-moz-transform:translate3d(0,100px,0) scale(.6);
		transform:translate3d(0,100px,0) scale(.6)
	}
	html:not(.no-js) [data-aos=zoom-in-down]{
		-webkit-transform:translate3d(0,-100px,0) scale(.6);
		-moz-transform:translate3d(0,-100px,0) scale(.6);
		transform:translate3d(0,-100px,0) scale(.6)
	}
	html:not(.no-js) [data-aos=zoom-in-right]{
		-webkit-transform:translate3d(-100px,0,0) scale(.6);
		-moz-transform:translate3d(-100px,0,0) scale(.6);
		transform:translate3d(-100px,0,0) scale(.6)
	}
	html:not(.no-js) [data-aos=zoom-in-left]{
		-webkit-transform:translate3d(100px,0,0) scale(.6);
		-moz-transform:translate3d(100px,0,0) scale(.6);
		transform:translate3d(100px,0,0) scale(.6)
	}
	html:not(.no-js) [data-aos=zoom-out]{
		-webkit-transform:scale(1.2);
		-moz-transform:scale(1.2);
		-ms-transform:scale(1.2);
		-o-transform:scale(1.2);
		transform:scale(1.2)
	}
	html:not(.no-js) [data-aos=zoom-out-up]{
		-webkit-transform:translate3d(0,100px,0) scale(1.2);
		-moz-transform:translate3d(0,100px,0) scale(1.2);
		transform:translate3d(0,100px,0) scale(1.2)
	}
	html:not(.no-js) [data-aos=zoom-out-down]{
		-webkit-transform:translate3d(0,-100px,0) scale(1.2);
		-moz-transform:translate3d(0,-100px,0) scale(1.2);
		transform:translate3d(0,-100px,0) scale(1.2)
	}
	html:not(.no-js) [data-aos=zoom-out-right]{
		-webkit-transform:translate3d(-100px,0,0) scale(1.2);
		-moz-transform:translate3d(-100px,0,0) scale(1.2);
		transform:translate3d(-100px,0,0) scale(1.2)
	}
	html:not(.no-js) [data-aos=zoom-out-left]{
		-webkit-transform:translate3d(100px,0,0) scale(1.2);
		-moz-transform:translate3d(100px,0,0) scale(1.2);
		transform:translate3d(100px,0,0) scale(1.2)
	}
	html:not(.no-js) [data-aos^=slide][data-aos^=slide]{
		transition-property:-webkit-transform;
		-webkit-transition-property:-webkit-transform;
		-o-transition-property:-o-transform;
		-moz-transition-property:transform,-moz-transform;
		transition-property:transform;
		transition-property:transform,-webkit-transform,-moz-transform,-o-transform;
		transition-property:transform,-webkit-transform;
		visibility:hidden
	}
	html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate{
		visibility:visible;
		-webkit-transform:translateZ(0);
		-moz-transform:translateZ(0);
		transform:translateZ(0)
	}
	html:not(.no-js) [data-aos=slide-up]{
		-webkit-transform:translate3d(0,100%,0);
		-moz-transform:translate3d(0,100%,0);
		transform:translate3d(0,100%,0)
	}
	html:not(.no-js) [data-aos=slide-down]{
		-webkit-transform:translate3d(0,-100%,0);
		-moz-transform:translate3d(0,-100%,0);
		transform:translate3d(0,-100%,0)
	}
	html:not(.no-js) [data-aos=slide-right]{
		-webkit-transform:translate3d(-100%,0,0);
		-moz-transform:translate3d(-100%,0,0);
		transform:translate3d(-100%,0,0)
	}
	html:not(.no-js) [data-aos=slide-left]{
		-webkit-transform:translate3d(100%,0,0);
		-moz-transform:translate3d(100%,0,0);
		transform:translate3d(100%,0,0)
	}
	html:not(.no-js) [data-aos^=flip][data-aos^=flip]{
		-webkit-backface-visibility:hidden;
		-moz-backface-visibility:hidden;
		backface-visibility:hidden;
		transition-property:-webkit-transform;
		-webkit-transition-property:-webkit-transform;
		-o-transition-property:-o-transform;
		-moz-transition-property:transform,-moz-transform;
		transition-property:transform;
		transition-property:transform,-webkit-transform,-moz-transform,-o-transform;
		transition-property:transform,-webkit-transform
	}
	html:not(.no-js) [data-aos=flip-left]{
		-webkit-transform:perspective(2500px) rotateY(-100deg);
		-moz-transform:perspective(2500px) rotateY(-100deg);
		transform:perspective(2500px) rotateY(-100deg)
	}
	html:not(.no-js) [data-aos=flip-left].aos-animate{
		-webkit-transform:perspective(2500px) rotateY(0);
		-moz-transform:perspective(2500px) rotateY(0);
		transform:perspective(2500px) rotateY(0)
	}
	html:not(.no-js) [data-aos=flip-right]{
		-webkit-transform:perspective(2500px) rotateY(100deg);
		-moz-transform:perspective(2500px) rotateY(100deg);
		transform:perspective(2500px) rotateY(100deg)
	}
	html:not(.no-js) [data-aos=flip-right].aos-animate{
		-webkit-transform:perspective(2500px) rotateY(0);
		-moz-transform:perspective(2500px) rotateY(0);
		transform:perspective(2500px) rotateY(0)
	}
	html:not(.no-js) [data-aos=flip-up]{
		-webkit-transform:perspective(2500px) rotateX(-100deg);
		-moz-transform:perspective(2500px) rotateX(-100deg);
		transform:perspective(2500px) rotateX(-100deg)
	}
	html:not(.no-js) [data-aos=flip-up].aos-animate{
		-webkit-transform:perspective(2500px) rotateX(0);
		-moz-transform:perspective(2500px) rotateX(0);
		transform:perspective(2500px) rotateX(0)
	}
	html:not(.no-js) [data-aos=flip-down]{
		-webkit-transform:perspective(2500px) rotateX(100deg);
		-moz-transform:perspective(2500px) rotateX(100deg);
		transform:perspective(2500px) rotateX(100deg)
	}
	html:not(.no-js) [data-aos=flip-down].aos-animate{
		-webkit-transform:perspective(2500px) rotateX(0);
		-moz-transform:perspective(2500px) rotateX(0);
		transform:perspective(2500px) rotateX(0)
	}
}
.lp-quizz .container{
	display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
}

.lp-quizz .row{
	width:100%;
	max-width:1440px;
	margin:0 auto
}
.lp-quizz .row .col,.lp-quizz .row [class^=col-]{
	float:left;
	/*padding:0 1rem;*/
}
.lp-quizz .row.equal-height{
	-webkit-box-orient:horizontal;
	-webkit-flex-direction:row;
	-moz-box-orient:horizontal;
	-ms-flex-direction:row;
	flex-direction:row;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap
}
.lp-quizz .row.equal-height,.lp-quizz .row.equal-height [class^=col]{
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-direction:normal;
	-moz-box-direction:normal
}
.lp-quizz .row.equal-height [class^=col]{
	-webkit-box-orient:vertical;
	-webkit-flex-direction:column;
	-moz-box-orient:vertical;
	-ms-flex-direction:column;
	flex-direction:column
}
.lp-quizz .row.equal-height .content{
	height:100%
}
.lp-quizz .row .col:first-child:last-child,.lp-quizz .row .col:first-child:last-child ~ .col{
	width:100%
}
.lp-quizz .row .col:first-child:nth-last-child(2),.lp-quizz .row .col:first-child:nth-last-child(2)~.col{
	width:50%
}
.lp-quizz .row .col:first-child:nth-last-child(3),.lp-quizz .row .col:first-child:nth-last-child(3)~.col{
	width:33.33333%
}
.lp-quizz .row .col:first-child:nth-last-child(4),.lp-quizz .row .col:first-child:nth-last-child(4)~.col{
	width:25%
}
.lp-quizz .row .col:first-child:nth-last-child(5),.lp-quizz .row .col:first-child:nth-last-child(5)~.col{
	width:20%
}
.lp-quizz .row .col:first-child:nth-last-child(6),.lp-quizz .row .col:first-child:nth-last-child(6)~.col{
	width:16.66667%
}
.lp-quizz .row .col:first-child:nth-last-child(7),.lp-quizz .row .col:first-child:nth-last-child(7)~.col{
	width:14.28571%
}
.lp-quizz .row .col:first-child:nth-last-child(8),.lp-quizz .row .col:first-child:nth-last-child(8)~.col{
	width:12.5%
}
.lp-quizz .row .col:first-child:nth-last-child(9),.lp-quizz .row .col:first-child:nth-last-child(9)~.col{
	width:11.11111%
}
.lp-quizz .row .col:first-child:nth-last-child(10),.lp-quizz .row .col:first-child:nth-last-child(10)~.col{
	width:10%
}
.lp-quizz .row .col:first-child:nth-last-child(11),.lp-quizz .row .col:first-child:nth-last-child(11)~.col{
	width:9.09091%
}
.lp-quizz .row .col-1,.lp-quizz .row .col:first-child:nth-last-child(12),.lp-quizz .row .col:first-child:nth-last-child(12)~.col{
	width:8.33333%
}
.lp-quizz .row .col-2{
	width:16.66667%
}
.lp-quizz .row .col-3{
	width:25%
}
.lp-quizz .row .col-4{
	width:33.33333%
}
.lp-quizz .row .col-5{
	width:41.66667%
}
.lp-quizz .row .col-6{
	width: var(--rn-width2);
}
.lp-quizz .row .col-7{
	width:58.33333%
}
.lp-quizz .row .col-8{
	width:66.66667%
}
.lp-quizz .row .col-9{
	width:75%
}
.lp-quizz .row .col-10{
	width:83.33333%
}
.lp-quizz .row .col-11{
	width:91.66667%
}
.lp-quizz .row .col-12{
	width:100%
}
@media only screen and (max-width:1024px){
	.lp-quizz .row .col-t-1{
		width:8.33333%
	}
	.lp-quizz .row .col-t-2{
		width:16.66667%
	}
	.lp-quizz .row .col-t-3{
		width:25%
	}
	.lp-quizz .row .col-t-4{
		width:33.33333%
	}
	.lp-quizz .row .col-t-5{
		width:41.66667%
	}
	.lp-quizz .row .col-t-6{
		width:50%
	}
	.lp-quizz .row .col-t-7{
		width:58.33333%
	}
	.lp-quizz .row .col-t-8{
		width:66.66667%
	}
	.lp-quizz .row .col-t-9{
		width:75%
	}
	.lp-quizz .row .col-t-10{
		width:83.33333%
	}
	.lp-quizz .row .col-t-11{
		width:91.66667%
	}
	.lp-quizz .row .col-t-12{
		width:100%
	}
}
/*@media only screen and (max-width:767px){
	.lp-quizz .row [class^=col]{
		width:100%;
		margin:0 auto .5rem
	}
	.lp-quizz .row .col-m-1{
		width:8.33333%;
		margin:0
	}
	.lp-quizz .row .col-m-2{
		width:16.66667%;
		margin:0
	}
	.lp-quizz .row .col-m-3{
		width:25%;
		margin:0
	}
	.lp-quizz .row .col-m-4{
		width:33.33333%;
		margin:0
	}
	.lp-quizz .row .col-m-5{
		width:41.66667%;
		margin:0
	}
	.lp-quizz .row .col-m-6{
		width:50%;
		margin:0
	}
	.lp-quizz .row .col-m-7{
		width:58.33333%;
		margin:0
	}
	.lp-quizz .row .col-m-8{
		width:66.66667%;
		margin:0
	}
	.lp-quizz .row .col-m-9{
		width:75%;
		margin:0
	}
	.lp-quizz .row .col-m-10{
		width:83.33333%;
		margin:0
	}
	.lp-quizz .row .col-m-11{
		width:91.66667%;
		margin:0
	}
	.lp-quizz .row .col-m-12{
		width:100%;
		margin:0
	}
}*/
/*.lp-quizz .button{
	display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid black;
    padding: 0 8px;
    width: var(--rn-width4);
    max-width: 380px;
    margin: 24px 0px;
    height: 46px;
    text-decoration: none;
    font-family: 'RenaultGroupSemibold';
    color: black;
    align-content: flex-start;
    justify-content: space-around;
}
.lp-quizz .button span{
	display:inline-block;
	padding:.75rem 2rem;
	position:relative;
	z-index:2;
	width:100%;
	font-family: 'RenaultGroupSemibold';
}
.lp-quizz .button:hover{
	background:#646b52
}
.lp-quizz .button.dark{
	background:#53565a;
	color:#fff
}
.lp-quizz .button.dark:hover{
	background:#999
}*/
.lp-quizz .form{
	/*max-width:26.25rem;*/
	visibility:hidden;
	width:100%;
	height:0;
	overflow:hidden;
	margin:0;
  /*display: flex;*/
}
.lp-quizz .form.show{
	visibility:visible;
	height:auto;
	overflow:initial;
	/*margin:0 auto 2.5rem;*/
    display: block;
}
.lp-quizz .form-title{
	text-align:left;
	font-family: NouvelRBold;
	font-size:24px;
	font-size: 2rem;
	margin-bottom:1.5rem
}

.radio-containre {
	padding: 14px 20px;
	width: 100%;
	text-align: left;
	border: 1px solid var(--gray2);
	margin: 20px 0;
	font-family: 'NouvelRBold';
	font-size: 19px;
	position: relative;
}
.radio-containre input[type="radio"] {
    position: absolute;
    top: 18px;
    left: 15px;
    width: 20px;
    height: 20px;
    z-index: 1;
    opacity: 1;
    cursor: pointer;
    appearance: none;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
	border: 1px solid var(--gray3);
    transition: background-color 0.3s ease-in-out;
}
.radio-containre input[type="radio"]:checked {
	background-color: rgb(0, 0, 0);
} 


.radios-container1 .item input[type="radio"] {
    position: absolute;
    top: 18px;
    left: 15px;
    width: 20px;
    height: 20px;
    z-index: 1;
    opacity: 1;
    cursor: pointer;
    appearance: none;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
	border: 1px solid var(--gray3);
    transition: background-color 0.3s ease-in-out;
}
.radios-container1 .item input[type="radio"]:checked {
	background-color: rgb(0, 0, 0); 
} 

input[type="radio"] {
    position: absolute;
    top: 18px;
    left: 15px;
    width: 20px;
    height: 20px;
    z-index: 1;
    opacity: 1;
    cursor: pointer;
    appearance: none;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
	border: 1px solid var(--gray3);
    transition: background-color 0.3s ease-in-out;
}
input[type="radio"]:checked {
	background-color: rgb(0, 0, 0);
}

.radio-containre span{
    margin-left: 30px;
}

.lp-quizz .form-title span {
    font-family: 'RenaultGroupSemibold';
    font-size: 16px;
    font-size: 1rem;
    display: block;
    margin-top: 0.25rem;
}
/*@media only screen and (max-width:767px){
	.lp-quizz .form-title{
		font-size:22px;
		font-size:1.375rem;
		line-height:1
	}
	.lp-quizz .form-title span{
		font-size:14px;
		font-size:.875rem;
		line-height:1.3
	}
}*/
.lp-quizz .form label {
    font-size: 16px;
    font-size: 1rem;
    display: block;
    color: #000000;
    margin: 1.3rem 0 0.5rem;
    font-family: 'RenaultGroupSemibold';
}
.lp-quizz .form .form-control{
	margin-bottom:.625rem;
	min-height:3.375rem
}
.lp-quizz .form .form-control input[type=email],.lp-quizz .form .form-control input[type=number],.lp-quizz .form .form-control input[type=tel],.lp-quizz .form .form-control input[type=text]{
	color:#000000;
	margin-bottom:.3125rem;
	padding: 0 1.25rem;
	width:100%;
	height:46px;
	background:none;
	border: 1px solid var(--black);
	-moz-border-radius:0;
	border-radius:0;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
}
.lp-quizz .form .form-control input[type=email]:focus,
.lp-quizz .form .form-control input[type=number]:focus,
.lp-quizz .form .form-control input[type=tel]:focus,
.lp-quizz .form .form-control input[type=text]:focus,
.lp-quizz .form .form-control input[type=email]:focus-visible,
.lp-quizz .form .form-control input[type=number]:focus-visible,
.lp-quizz .form .form-control input[type=tel]:focus-visible,
.lp-quizz .form .form-control input[type=text]:focus-visible{
	border: none;
}

.lp-quizz .form .form-control input[type=email]:-webkit-autofill,.lp-quizz .form .form-control input[type=email]:-webkit-autofill:focus,.lp-quizz .form .form-control input[type=email]:-webkit-autofill:hover,.lp-quizz .form .form-control input[type=number]:-webkit-autofill,.lp-quizz .form .form-control input[type=number]:-webkit-autofill:focus,.lp-quizz .form .form-control input[type=number]:-webkit-autofill:hover,.lp-quizz .form .form-control input[type=tel]:-webkit-autofill,.lp-quizz .form .form-control input[type=tel]:-webkit-autofill:focus,.lp-quizz .form .form-control input[type=tel]:-webkit-autofill:hover,.lp-quizz .form .form-control input[type=text]:-webkit-autofill,.lp-quizz .form .form-control input[type=text]:-webkit-autofill:focus,.lp-quizz .form .form-control input[type=text]:-webkit-autofill:hover{
	-webkit-text-fill-color:#222;
	-webkit-box-shadow:0 0 0 1000px transparent inset;
	box-shadow:inset 0 0 0 1000px transparent;
	-webkit-transition:background-color 5000s ease-in-out 0s;
	-o-transition:background-color 5000s ease-in-out 0s;
	-moz-transition:background-color 5000s ease-in-out 0s;
	transition:background-color 5000s ease-in-out 0s;
	color:#222
}
.lp-quizz .form .form-control input[type=email]::-webkit-input-placeholder,.lp-quizz .form .form-control input[type=number]::-webkit-input-placeholder,.lp-quizz .form .form-control input[type=tel]::-webkit-input-placeholder,.lp-quizz .form .form-control input[type=text]::-webkit-input-placeholder{
	color:#999
}
.lp-quizz .form .form-control input[type=email]::-moz-placeholder,.lp-quizz .form .form-control input[type=number]::-moz-placeholder,.lp-quizz .form .form-control input[type=tel]::-moz-placeholder,.lp-quizz .form .form-control input[type=text]::-moz-placeholder{
	color:#999
}
.lp-quizz .form .form-control input[type=email]:-ms-input-placeholder,.lp-quizz .form .form-control input[type=number]:-ms-input-placeholder,.lp-quizz .form .form-control input[type=tel]:-ms-input-placeholder,.lp-quizz .form .form-control input[type=text]:-ms-input-placeholder{
	color:#999
}
.lp-quizz .form .form-control input[type=email]:-moz-placeholder,.lp-quizz .form .form-control input[type=number]:-moz-placeholder,.lp-quizz .form .form-control input[type=tel]:-moz-placeholder,.lp-quizz .form .form-control input[type=text]:-moz-placeholder{
	color:#999
}
.lp-quizz .form .form-control input[type=email].error,.lp-quizz .form .form-control input[type=number].error,.lp-quizz .form .form-control input[type=tel].error,.lp-quizz .form .form-control input[type=text].error{
	color:#c00;
	border-color:#c00
}
.lp-quizz .form .form-control input[type=email].error::-webkit-input-placeholder,.lp-quizz .form .form-control input[type=number].error::-webkit-input-placeholder,.lp-quizz .form .form-control input[type=tel].error::-webkit-input-placeholder,.lp-quizz .form .form-control input[type=text].error::-webkit-input-placeholder{
	color:#c00
}
.lp-quizz .form .form-control input[type=email].error::-moz-placeholder,.lp-quizz .form .form-control input[type=number].error::-moz-placeholder,.lp-quizz .form .form-control input[type=tel].error::-moz-placeholder,.lp-quizz .form .form-control input[type=text].error::-moz-placeholder{
	color:#c00
}
.lp-quizz .form .form-control input[type=email].error:-ms-input-placeholder,.lp-quizz .form .form-control input[type=number].error:-ms-input-placeholder,.lp-quizz .form .form-control input[type=tel].error:-ms-input-placeholder,.lp-quizz .form .form-control input[type=text].error:-ms-input-placeholder{
	color:#c00
}
.lp-quizz .form .form-control input[type=email].error:-moz-placeholder,.lp-quizz .form .form-control input[type=number].error:-moz-placeholder,.lp-quizz .form .form-control input[type=tel].error:-moz-placeholder,.lp-quizz .form .form-control input[type=text].error:-moz-placeholder{
	color:#c00
}
.lp-quizz .form .form-control .select{
	margin-top:.3125rem;
	border:.0625rem solid #999;
	background:#fff url(../img/icon-select.png) no-repeat 95% 50%;
	-webkit-background-size:1.25rem 1.25rem;
	-moz-background-size:1.25rem;
	background-size:1.25rem;
  display: inline-block;
  min-width: 298px;
}
.lp-quizz .form .form-control .select {
    border: none;
    background: transparent;
}
.lp-quizz .form .form-control .select select{
	width:100%;
	height:36px;
	padding:0 1.25rem;
	border:none;
	background:transparent;
	background-image:none;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	box-shadow:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none
}
.lp-quizz .form .form-control .select select::-ms-expand{
	display:none
}
.lp-quizz .form .form-control.checkbox{
	min-height:1.875rem
}
.lp-quizz .form .form-control.checkbox label{
	font-size:13px;
	font-size:.8125rem;
	display:block;
	position:relative;
	padding-top:.1875rem;
	padding-left:1.875rem;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	color:#222
}
.lp-quizz .form .form-control.checkbox label a{
	color:#646b52
}
.lp-quizz .form .form-control.checkbox input{
	position:absolute;
	opacity:0;
	cursor:pointer
}
.lp-quizz .form .form-control.checkbox input:checked~span:after{
	display:block
}
.lp-quizz .form .form-control.checkbox input.error~span{
	border-color:#c00
}
.lp-quizz .form .form-control.checkbox span{
	position:absolute;
	top:0;
	left:0;
	height:20px;
	width:20px;
	border:.0625rem solid #999;
	-moz-border-radius:3px;
	border-radius:3px
}
.lp-quizz .form .form-control.checkbox span:after{
	content:"";
	position:absolute;
	display:none;
	top:1px;
	left:6px;
	width:6px;
	height:12px;
	border:solid #646b52;
	border-width:0 2.5px 2.5px 0;
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	transform:rotate(45deg)
}
.lp-quizz .form .form-control.checkbox.error input~span{
	border-color:#c00
}
.lp-quizz .form .form-control.radio{
	min-height:1.875rem
}
.lp-quizz .form .form-control.radio .item{
	font-size:13px;
	font-size:.8125rem;
	display:inline-block;
	position:relative;
	padding-top:.1875rem;
	padding-left:1.875rem;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	color:#222
}
.lp-quizz .form .form-control.radio .item a{
	color:#646b52
}
.lp-quizz .form .form-control.radio .item+.item{
	margin-left:1rem
}
.lp-quizz .form .form-control.radio input{
	position:absolute;
	opacity:0;
	cursor:pointer;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:1
}
.lp-quizz .form .form-control.radio input:checked~span:after{
	display:block
}
.lp-quizz .form .form-control.radio input.error~span{
	border-color:#c00
}
.lp-quizz .form .form-control.radio span{
	position:absolute;
	top:0;
	left:0;
	height:20px;
	width:20px;
	border:.0625rem solid #999;
	-moz-border-radius:3px;
	border-radius:3px
}
.lp-quizz .form .form-control.radio span:after{
	content:"";
	position:absolute;
	display:none;
	top:1px;
	left:6px;
	width:6px;
	height:12px;
	border:solid #646b52;
	border-width:0 2.5px 2.5px 0;
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	transform:rotate(45deg)
}
.lp-quizz .form .form-control.radio.error input~span{
	border-color:#c00
}
.lp-quizz .form .form-control.radio-button-group{
	font-size:0
}
.lp-quizz .form .form-control.radio-button-group .item {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-size: .875rem;
    min-width: 5rem;
    text-align: center;
    padding: 18px 0.5rem 0.625rem;
    color: #000000;
}
.lp-quizz .form .form-control.radio-button-group .item:first-of-type span{
	border-left: transparent;
	display: none;
}
.lp-quizz .form .form-control.radio-button-group .item strong {
    font-weight: 400;
    font-family: RenaultGroupSemibold;
    margin-left: 40px;
    font-size: 16px;
}
.lp-quizz .form .form-control.radio-button-group .item span{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	/*border:.0625rem solid #999;*/
	border-left:none
}
/*.lp-quizz .form .form-control.radio-button-group .item input {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 37%;
    height: 58%;
    z-index: 1;
    opacity: 1;
    cursor: pointer;
}
.radios-container1{
	position: relative;
}
.lp-quizz .form .form-control.radio-button-group .item input:checked~span {
    background-color: #7e8961;
    z-index: 0;
    display: none;
}
.lp-quizz .form .form-control.radio-button-group .item input:checked~strong{
	color:black;
}*/
.lp-quizz .form .form-control.radio-button-group--big .item{
	font-size:18px;
	font-size:1.125rem;
	font-family:NouvelRRegular;
	min-width:6.25rem
}
.lp-quizz .form p.error{
	margin-top:.25rem;
	font-size:12px;
	font-size:0.8rem;
	color:#c00;
	line-height:1.2
}
.lp-quizz .form p.law-text{
	font-family:dacia-spirit,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-weight:300;
	font-size:11px;
	font-size:.6875rem;
	margin-top:.25rem
}
.lp-quizz .form p.law-text a{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	color:#000;
	text-decoration:none
}
.lp-quizz .form p.asterisk{
	font-size:12px;
	font-size:.75rem;
	color:#999
}
.lp-quizz .form .row.buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.lp-quizz .form .row.buttons [class^=col-]{
	padding:0
}


/*@media only screen and (max-width:767px){
	.lp-quizz .form .row.buttons .button{
		width:100%;
		min-width:0
	}
}*/
.lp-quizz .form-error{
	text-align:center;
	font-size:14px;
	font-size:.875rem;
	color:#c00;
	display:none
}
.lp-quizz .confirm {
    display: none;
    text-align: center;
    padding: 8.75rem 20px;
}
.lp-quizz .confirm.show{
	display:block
}
.lp-quizz .confirm img{
	max-width:6.25rem;
	margin-bottom:1.25rem
}
.lp-quizz .confirm p{
	font-size:18px;
	font-size:1.125rem;
	font-weight:500
}
@media only screen and (max-width:1024px){
	.lp-quizz .confirm{
		padding:3.75rem 1px;
	}
	.lp-quizz .confirm img{
		max-width:5rem
	}
}
.lp-quizz .forms-wrapper{
    margin: 2rem auto;
    margin-left: 0px;
}
.lp-quizz .kilometrage.container{
	min-width:100%;
	height:.25rem;
	margin:1rem 0;
	background-color:#e6e6e6
}
.lp-quizz .kilometrage .dragger{
	width:1rem;
	height:1rem;
	background-color:#646b52;
	-moz-border-radius:50%;
	border-radius:50%
}
.lp-quizz .kilometrage-text {
    font-family: 'NouvelRRegular';
    margin-bottom: 28px;
}
.lp-quizz .banner{
	background-color:#ccc;
	color:#222;
	padding:1rem;
	text-align:center;
	font-size:24px;
	font-size:1.5rem
}
.lp-quizz .banner strong{
	color:#646b52
}
@media only screen and (max-width:1024px){
	.lp-quizz .banner{
		font-size:18px;
		font-size:1.125rem
	}
}

/*.lp-quizz .reprise{
	background-color:#fafafa;
	padding:2rem 0
}
.lp-quizz .reprise .title{
	margin:0 auto
}
.lp-quizz .reprise .carousel{
	margin:3rem auto;
	max-width:75rem;
	text-align:center
}

.lp-quizz .reprise .content{
	padding:0 1rem;
	max-width:20rem;
	margin:0 auto
}
.lp-quizz .reprise .content .image{
	position:relative;
	width:4.25rem;
	height:4.375rem;
	margin:0 auto 1rem
}
.lp-quizz .reprise .content .image img{
	max-width:none
}
.lp-quizz .reprise .content .titre{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size: 18px;
}
/*@media only screen and (max-width:767px){
	.lp-quizz .reprise .carousel{
		margin:1.5rem auto
	}
}
.lp-quizz .testimonials .row{
	max-width:64rem
}
.lp-quizz .testimonials .title-wrapper{
	padding-top:6.25rem
}
.lp-quizz .testimonials .titre{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size:24px;
	font-size:1.5rem;
	line-height:1;
	margin-bottom:1.5rem;
	max-width:17.5rem
}
.lp-quizz .testimonials .titre span{
	display:block;
	font-family:dacia-spirit,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size:18px;
	font-size:1.125rem;
	line-height:1.3;
	margin-top:.25rem
}
.lp-quizz .testimonials .button.second{
	display:none
}
.lp-quizz .testimonials .owl-carousel.carousel .item{
	padding-top:2rem
}
.lp-quizz .testimonials .owl-carousel.carousel .content{
	text-align:center;
	background-color:#f2f2f2;
	padding:2rem 1rem;
	margin:0 .5rem
}
.lp-quizz .testimonials .owl-carousel.carousel .photo{
	position:relative;
	width:6rem;
	margin:0 auto
}
.lp-quizz .testimonials .owl-carousel.carousel .photo:after{
	content:"";
	position:absolute;
	right:0;
	bottom:0;
	width:1.875rem;
	height:1.875rem;
	background:url(../img/quote.png);
	-webkit-background-size:contain;
	-moz-background-size:contain;
	background-size:contain
}
.lp-quizz .testimonials .owl-carousel.carousel .text{
	margin:1.5rem 0 2rem;
	position:relative;
	padding:0 1.5rem
}
.lp-quizz .testimonials .owl-carousel.carousel .text:after{
	content:"";
	bottom:-1rem;
	width:3.5rem;
	height:.125rem;
	background-color:#646b52
}
.lp-quizz .testimonials .owl-carousel.carousel .name{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif
}
.lp-quizz .testimonials .owl-carousel.carousel .job{
	font-size:12px;
	font-size:.75rem
}
.lp-quizz .testimonials .owl-carousel.carousel .owl-nav{
	position:absolute;
	top:.5rem;
	right:0
}
.lp-quizz .testimonials .owl-carousel.carousel .owl-nav .owl-next,.lp-quizz .testimonials .owl-carousel.carousel .owl-nav .owl-prev{
	position:static;
	margin:0 .5rem
}
@media only screen and (max-width:960px){
	.lp-quizz .testimonials .owl-carousel.carousel .content{
		padding:1.5rem 0
	}
}
/*@media only screen and (max-width:767px){
	.lp-quizz .testimonials .title-wrapper{
		text-align:center;
		padding-top:0
	}
	.lp-quizz .testimonials .titre{
		margin:0 auto .5rem;
		max-width:none
	}
	.lp-quizz .testimonials .owl-carousel.carousel{
		margin-bottom:1.5rem
	}
	.lp-quizz .testimonials .owl-carousel.carousel .item{
		padding-top:0
	}
	.lp-quizz .testimonials .button.first{
		display:none
	}
	.lp-quizz .testimonials .button.second{
		display:inline-block
	}
}
.lp-quizz .news .carousel{
	max-width:81.25rem;
	margin:1.5rem auto
}
.lp-quizz .news .carousel .item{
	margin:0 .5rem
}
.lp-quizz .news .carousel .content{
	position:relative;
	display:block;
	color:#fff;
	text-decoration:none;
	height:16.25rem;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	background-size:cover;
	background-position:50%
}
.lp-quizz .news .carousel .content:before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.7)),to(transparent));
	background:-webkit-linear-gradient(bottom,rgba(0,0,0,.7),transparent);
	background:-moz- oldlinear-gradient(bottom,rgba(0,0,0,.7),transparent);
	background:-o-linear-gradient(bottom,rgba(0,0,0,.7),transparent);
	background:linear-gradient(0deg,rgba(0,0,0,.7),transparent);
	z-index:1
}
.lp-quizz .news .carousel .content p{
	position:absolute;
	bottom:1rem;
	left:1rem;
	font-size:24px;
	font-size:1.5rem;
	width:100%;
	max-width:80%;
	z-index:2
}
.lp-quizz .how-to .accordion{
	width:100%;
	max-width:53.75rem;
	margin:0 auto 2rem;
	height:28.75rem;
	overflow:hidden
}
.lp-quizz .how-to .accordion__table{
	width:100%;
	height:100%
}
.lp-quizz .how-to .accordion__item,.lp-quizz .how-to .accordion__table{
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	-moz-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center
}
.lp-quizz .how-to .accordion__item{
	position:relative;
	width:25%;
	-webkit-box-align:center;
	-webkit-align-items:center;
	-moz-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	-webkit-transition:width .5s cubic-bezier(.4,0,.2,1);
	-o-transition:width .5s cubic-bezier(.4,0,.2,1);
	-moz-transition:width .5s cubic-bezier(.4,0,.2,1);
	transition:width .5s cubic-bezier(.4,0,.2,1);
	background-color:#f2f2f2;
	-webkit-box-shadow:0 0 .125rem rgba(0,0,0,.3);
	-moz-box-shadow:0 0 .125rem rgba(0,0,0,.3);
	box-shadow:0 0 .125rem rgba(0,0,0,.3);
	-webkit-background-size:cover;
	-moz-background-size:cover;
	background-size:cover;
	background-position:50%;
	background-repeat:no-repeat;
	cursor:pointer;
	overflow:hidden
}
.lp-quizz .how-to .accordion__item:before{
	counter-increment:a;
	content:counter(a);
	position:absolute;
	top:-4.25rem;
	right:0;
	font-size:300px;
	font-size:18.75rem;
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	color:#f2f2f2;
	opacity:0
}
.lp-quizz .how-to .accordion__item:after{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.6)
}
.lp-quizz .how-to .accordion__item.show{
	width:50%;
	cursor:auto;
	background-color:#e6e6e6
}
.lp-quizz .how-to .accordion__item.show:before{
	opacity:.8
}
.lp-quizz .how-to .accordion__item.show:after{
	background:-webkit-gradient(linear,left bottom,left top,from(#000),color-stop(80%,hsla(0,0%,100%,0)));
	background:-webkit-linear-gradient(bottom,#000,hsla(0,0%,100%,0) 80%);
	background:-moz- oldlinear-gradient(bottom,#000,hsla(0,0%,100%,0) 80%);
	background:-o-linear-gradient(bottom,#000,hsla(0,0%,100%,0) 80%);
	background:linear-gradient(0deg,#000,hsla(0,0%,100%,0) 80%)
}
.lp-quizz .how-to .accordion__item.show .accordion__title{
	display:none
}
.lp-quizz .how-to .accordion__item.show .accordion__content{
	opacity:1;
	-webkit-transition-delay:.3s;
	-moz-transition-delay:.3s;
	-o-transition-delay:.3s;
	transition-delay:.3s
}
.lp-quizz .how-to .accordion__title{
	text-align:center;
	padding:0 .5rem;
	z-index:2
}
.lp-quizz .how-to .accordion__title img{
	width:3.5rem;
	margin-bottom:1.5rem;
	background-color:#646b52;
	-moz-border-radius:50%;
	border-radius:50%
}
.lp-quizz .how-to .accordion__title p{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size:18px;
	font-size:1.125rem;
	color:#fff;
	white-space:nowrap
}
.lp-quizz .how-to .accordion__title .plus{
	width:2.25rem;
	height:2.25rem;
	bottom:1.5rem;
	color:#fff;
	border:.125rem solid #fff;
	-moz-border-radius:50%;
	border-radius:50%;
	padding:0 .625rem;
	font-size:24px;
	font-size:1.5rem
}
.lp-quizz .how-to .accordion__title .plus span{
	left:52%;
	top:43%
}
.lp-quizz .how-to .accordion__content{
	opacity:0;
	-webkit-transition:opacity .3s cubic-bezier(.4,0,.2,1);
	-o-transition:opacity .3s cubic-bezier(.4,0,.2,1);
	-moz-transition:opacity .3s cubic-bezier(.4,0,.2,1);
	transition:opacity .3s cubic-bezier(.4,0,.2,1);
	-webkit-transition-delay:0;
	-moz-transition-delay:0;
	-o-transition-delay:0;
	transition-delay:0
}
.lp-quizz .how-to .accordion__text{
	position:absolute;
	bottom:3rem;
	left:0;
	width:100%;
	padding:0 1.5rem;
	z-index:2;
	color:#fff
}
.lp-quizz .how-to .accordion__text img{
	width:5rem;
	background-color:#646b52;
	-moz-border-radius:50%;
	border-radius:50%
}
.lp-quizz .how-to .accordion__text .titre{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size:20px;
	font-size:1.25rem;
	text-transform:uppercase;
	margin:.5rem 0
}
/*@media only screen and (max-width:767px){
	.lp-quizz .how-to .accordion{
		height:auto
	}
	.lp-quizz .how-to .accordion__table{
		display:initial
	}
	.lp-quizz .how-to .accordion__item{
		display:block;
		width:100%;
		height:5rem;
		-webkit-transition:height .5s cubic-bezier(.4,0,.2,1);
		-o-transition:height .5s cubic-bezier(.4,0,.2,1);
		-moz-transition:height .5s cubic-bezier(.4,0,.2,1);
		transition:height .5s cubic-bezier(.4,0,.2,1)
	}
	.lp-quizz .how-to .accordion__item.show{
		width:100%;
		height:20rem
	}
	.lp-quizz .how-to .accordion__item.show .accordion__content{
		opacity:1;
		-webkit-transition-delay:.1s;
		-moz-transition-delay:.1s;
		-o-transition-delay:.1s;
		transition-delay:.1s
	}
	.lp-quizz .how-to .accordion__title{
		position:relative;
		z-index:2;
		text-align:initial;
		padding:1rem 2rem
	}
	.lp-quizz .how-to .accordion__title img{
		width:3rem;
		margin-bottom:0;
		margin-right:.5rem;
		vertical-align:middle
	}
	.lp-quizz .how-to .accordion__title p{
		display:inline-block;
		-webkit-transform:translateY(.25rem);
		-moz-transform:translateY(.25rem);
		-ms-transform:translateY(.25rem);
		-o-transform:translateY(.25rem);
		transform:translateY(.25rem)
	}
	.lp-quizz .how-to .accordion__title .plus{
		left:auto;
		bottom:50%;
		right:1.5rem;
		-webkit-transform:translateY(50%);
		-moz-transform:translateY(50%);
		-ms-transform:translateY(50%);
		-o-transform:translateY(50%);
		transform:translateY(50%);
		padding:0 .5rem
	}
	.lp-quizz .how-to .accordion__text{
		padding:0 1rem;
		bottom:1rem;
		max-width:25rem;
		z-index:6
	}
}*/
.lp-quizz .progress{
	background-color:#f2f2f2;
	display:block;
	text-align:center;
	padding:2rem 0;
	margin:2rem auto
}
.lp-quizz .progress__title{
	font-family:NouvelRBold ;
	font-size:32px;
	font-size:2rem;
}
.lp-quizz .progress__circle {
    width: 17.75rem;
    height: 17.75rem;
    overflow: hidden;
    position: relative;
    margin: 1rem auto;
}
.lp-quizz .progress .right{
	border:2rem solid #000000;
	-moz-border-radius:50%;
	border-radius:50%;
	border-top-color:transparent;
	border-left-color:transparent;
	-webkit-transform:rotate(-225deg);
	-moz-transform:rotate(-225deg);
	-ms-transform:rotate(-225deg);
	-o-transform:rotate(-225deg);
	transform:rotate(-225deg)
}
.lp-quizz .progress .left,.lp-quizz .progress .right{
	width:100%;
	height:100%;
	position:absolute;
	-webkit-transition:-webkit-transform .6s ease-out;
	transition:-webkit-transform .6s ease-out;
	-o-transition:-o-transform .6s ease-out;
	-moz-transition:transform .6s ease-out,-moz-transform .6s ease-out;
	transition:transform .6s ease-out;
	transition:transform .6s ease-out,-webkit-transform .6s ease-out,-moz-transform .6s ease-out,-o-transform .6s ease-out
}
.lp-quizz .progress .left{
	border:2rem solid #000000;
	-moz-border-radius:50%;
	border-radius:50%;
	border-bottom-color:transparent;
	border-right-color:transparent;
	-webkit-transform:rotate(135deg);
	-moz-transform:rotate(135deg);
	-ms-transform:rotate(135deg);
	-o-transform:rotate(135deg);
	transform:rotate(135deg)
}
.lp-quizz .progress .middle{
	color:#000000;
	width:100%;
	height:100%;
	position:relative;
	z-index:4
}
.lp-quizz .progress .middle p{
	font-family:'NouvelRBold';
	font-size:56px;
	font-size:3.5rem
}
.lp-quizz .progress .middle p:before {
    content: "";
    width: 14rem;
    height: 14rem;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 0.625rem rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 .625rem rgba(0,0,0,.3);
    box-shadow: 0 0 0.625rem rgba(0,0,0,.3);
    z-index: -1;
}
.lp-quizz .progress .popover{
	background:#f2f2f2;
	width:50%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	opacity:1;
	z-index:2
}
.lp-quizz .progress__circle--10 .left{
	-webkit-transform:rotate(0deg);
	-moz-transform:rotate(0deg);
	-ms-transform:rotate(0deg);
	-o-transform:rotate(0deg);
	transform:rotate(0deg)
}
.lp-quizz .progress__circle--10 .right{
	-webkit-transform:rotate(-185deg);
	-moz-transform:rotate(-185deg);
	-ms-transform:rotate(-185deg);
	-o-transform:rotate(-185deg);
	transform:rotate(-185deg)
}
.lp-quizz .progress__circle--25 .right{
	-webkit-transform:rotate(-135deg);
	-moz-transform:rotate(-135deg);
	-ms-transform:rotate(-135deg);
	-o-transform:rotate(-135deg);
	transform:rotate(-135deg)
}
.lp-quizz .progress__circle--25 .left{
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-o-transform:rotate(45deg);
	transform:rotate(45deg)
}

.lp-quizz .progress__circle--50 .popover {
    opacity: 0;
}

.lp-quizz .progress__circle--50 .right {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.lp-quizz .progress__circle--75 .popover{
	opacity:0
}
.lp-quizz .progress__circle--75 .right{
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	transform:rotate(-45deg)
}
.lp-quizz .progress__circle--75 .left{
	-webkit-transform:rotate(225deg);
	-moz-transform:rotate(225deg);
	-ms-transform:rotate(225deg);
	-o-transform:rotate(225deg);
	transform:rotate(225deg)
}
.lp-quizz .progress__circle--100 .popover{
	opacity:0
}
.lp-quizz .progress__circle--100 .right{
	-webkit-transform:rotate(-45deg);
	-moz-transform:rotate(-45deg);
	-ms-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
	transform:rotate(-45deg)
}
.lp-quizz .progress__circle--100 .left{
	-webkit-transform:rotate(315deg);
	-moz-transform:rotate(315deg);
	-ms-transform:rotate(315deg);
	-o-transform:rotate(315deg);
	transform:rotate(315deg)
}
.lp-quizz .progress__number{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size:56px;
	font-size:3.5rem;
	display:none
}
.lp-quizz .progress__number:before{
	content:"";
	width:12.5rem;
	height:12.5rem;
	-moz-border-radius:50%;
	border-radius:50%;
	background-color:#f2f2f2;
	-webkit-box-shadow:0 0 .625rem rgba(0,0,0,.3);
	-moz-box-shadow:0 0 .625rem rgba(0,0,0,.3);
	box-shadow:0 0 .625rem rgba(0,0,0,.3);
	z-index:-1
}
/*@media only screen and (max-width:767px){
	.lp-quizz .progress{
		display:none
	}
}*/
.lp-quizz #progress-bar{
	display:none;
	text-align:center;
	padding:1rem;
	background:#fff
}
.lp-quizz #progress-bar .progress__title{
	font-size:22px;
	font-size:1.375rem
}
.lp-quizz #progress-bar .progress__text{
	font-size:14px;
	font-size:.875rem;
    font-family: 'NouvelRRegular';
}
.progress__text{
    font-family: 'NouvelRRegular';
}
.lp-quizz #progress-bar .track{
	position:relative;
	width:100%;
	height:.25rem;
	background-color:#e6e6e6;
	-moz-border-radius:.25rem;
	border-radius:.25rem;
	margin:1.5rem 0 1rem
}
.lp-quizz #progress-bar .track:after,.lp-quizz #progress-bar .track:before{
	position:absolute;
	top:-1.5rem;
	font-size:12px;
	font-size:.75rem
}
.lp-quizz #progress-bar .track:before{
	content:"0%";
	left:-.5rem;
	display:none
}
.lp-quizz #progress-bar .track:after{
	content:"100%";
	right:-.5rem;
	display:none
}
.lp-quizz #progress-bar .dot{
	font-size:12px;
	font-size:.75rem;
	top:0
}
.lp-quizz #progress-bar .dot:after{
	content:"";
	display:block;
	width:.75rem;
	height:.75rem;
	margin:.25rem auto 0;
	background-color:#e6e6e6;
	-moz-border-radius:50%;
	border-radius:50%;
	-webkit-transition:background .4s ease-in;
	-o-transition:background .4s ease-in;
	-moz-transition:background .4s ease-in;
	transition:background .4s ease-in
}
.lp-quizz #progress-bar .dot.first{
	left:19%
}
.lp-quizz #progress-bar .dot.second{
	left:49%
}
.lp-quizz #progress-bar .dot.third{
	left:79%
}
.lp-quizz #progress-bar .bar{
	left:0;
	width:0;
	height:.25rem;
	background-color:#646b52;
	-moz-border-radius:.25rem;
	border-radius:.25rem;
	-webkit-transition:width .4s ease-in;
	-o-transition:width .4s ease-in;
	-moz-transition:width .4s ease-in;
	transition:width .4s ease-in
}
.lp-quizz #progress-bar.step-1 .dot.first:after{
	background-color:#646b52
}
.lp-quizz #progress-bar.step-1 .bar{
	width:22%
}
.lp-quizz #progress-bar.step-2 .dot.first:after,.lp-quizz #progress-bar.step-2 .dot.second:after{
	background-color:#646b52
}
.lp-quizz #progress-bar.step-2 .bar{
	width:52%
}
.lp-quizz #progress-bar.step-3 .dot.first:after,.lp-quizz #progress-bar.step-3 .dot.second:after,.lp-quizz #progress-bar.step-3 .dot.third:after{
	background-color:#646b52
}
.lp-quizz #progress-bar.step-3 .bar{
	width:82%
}
.lp-quizz #progress-bar.step-4 .dot.first:after,.lp-quizz #progress-bar.step-4 .dot.second:after,.lp-quizz #progress-bar.step-4 .dot.third:after{
	background-color:#59a618
}
.lp-quizz #progress-bar.step-4 .bar{
	background-color:#59a618;
	width:100%
}
/*@media only screen and (max-width:767px){
	.lp-quizz #progress-bar{
		display:block
	}
}*/
/*.lp-quizz .faq{
	list-style-type:none;
	margin:2rem auto
}
.faq-container img{
	width: inherit;
}
.lp-quizz .faq-container{
	max-width:60rem;
	margin:0 auto;
	padding:0 .5rem
}
.lp-quizz .faq-container .titre{
	text-align:center;
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	font-size:24px;
	font-size:1.5rem;
	line-height:.3
}*/
/*@media only screen and (max-width:767px){
	.lp-quizz .faq-container .titre{
		font-size:22px;
		font-size:1.375rem
	}
}*/
/*.lp-quizz .faq-container .titre img{
	vertical-align:middle;
	margin-right:.5rem
}
.lp-quizz .faq-container .sous-titre{
	text-align:center;
	margin-bottom:1.5rem
}
.lp-quizz .faq li.q:first-child{
	border-top:.0625rem solid #e6e6e6
}
.lp-quizz .faq li p{
	margin:.5rem 0
}
.lp-quizz .faq li ul{
	padding-left:1.5rem
}
.lp-quizz .faq li.a,.lp-quizz .faq li.q{
	padding:1rem 1.5rem
}
/*@media only screen and (max-width:767px){
	.lp-quizz .faq li.a,.lp-quizz .faq li.q{
		padding:.5rem 1rem
	}
}*/
/*.lp-quizz .faq li.a{
	display:none
}
.lp-quizz .faq li.q{
	font-family:dacia-spirit-bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,Helvetica,Arial,sans-serif;
	background-color:#fafafa;
	cursor:pointer;
	border-bottom:.0625rem solid #e6e6e6
}
.lp-quizz .faq li.q img{
	margin-right:.5rem
}
/*@media only screen and (max-width:767px){
	.lp-quizz .faq li.q img{
		vertical-align:middle
	}
}*/

.lp-quizz .step-0 {
  display: none;
}
.lp-quizz .step-0.show {
  display: block;
}
.lp-quizz .step-0 .text-center {
  margin: 120px auto;
}
.lp-quizz .step-0 .text-center .button {
  margin: 16px auto;
}
.lp-quizz .confirm-trade {
  text-align: center;
  margin: 96px auto;
  display: none;
}
.lp-quizz .confirm-trade img{
	max-width:6.25rem;
	margin-bottom:1.25rem
}
.lp-quizz .confirm-trade p{
	font-size:18px;
	font-size:1.125rem;
	font-weight:500
}
.lp-quizz .choises {
  text-align: center;
  margin: 2px auto;
}
.lp-quizz .choises-buttons .back,
.back {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    width: var(--rn-width4);
    max-width: 380px;
    margin: 24px 0px;
    height: 46px;
    text-decoration: none;
    font-family: RenaultGroupSemibold;
    color: rgb(255, 255, 255) !important;
    align-content: flex-start;
    justify-content: space-around;
    background-color: var(--black);
    transition: background-color 0.5s ease, color 0.5s; 
}

.lp-quizz .choises-buttons .back:hover,
.back:hover {
    color: rgb(0, 0, 0) !important;
    background-color: white;
}

.lp-quizz .choises-buttons .item,
.submit {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    width: var(--rn-width4);
    max-width: 380px;
    margin: 24px 0px;
    height: 46px;
    text-decoration: none;
    font-family: RenaultGroupSemibold;
    color: black;
    align-content: flex-start;
    justify-content: space-around;
    background-color: var(--yellow);
    border: none !important;
    transition: background-color 0.5s ease, color 0.5s; 
}

.lp-quizz .choises-buttons .item:hover,
.submit:hover {
    color: rgb(0, 0, 0);
    background-color: var(--lightYellow);
}

.choises-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.lp-quizz .choises-buttons .item:hover {
  background-color: #646b52;
}
.lp-quizz .choises-buttons img {
  width: 40px;
  margin-right: 16px;
}



/*---------------formmodif----------------*/

select{
    background: transparent !important;
}
.select2 {
    width: 199% !important;
    border: 0.2px solid var(--gray3);
    height: 46px !important;
    background: transparent !important;
}
.select2-container--default .select2-selection--single {
    border: none !important; 
    background: transparent !important;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.3em;
    margin-left: 0em;
}
.ui-widget {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 0.2em;
}

.ui-slider-handle svg {
    margin-left: -27px;
    margin-top: -24px;
}

.ui-widget.ui-widget-content {
    border: 1px solid #898989 !important;
    background: #898989 !important;
}

.back{
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid black;
    padding: 0 8px;
    width: var(--rn-width4);
    max-width: 380px;
    margin: 24px 0px;
    height: 46px;
    text-decoration: none;
    font-family: 'RenaultGroupSemibold';
    color: black;
    align-content: flex-start;
    justify-content: space-around;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #999999 !important;
    line-height: 43px !important;
    font-family: 'NouvelRRegular' !important;
}

.car-image {
    border: 1px solid var(--gray2);
    height: 42.6%;
    text-align: center;
    line-height: 22;
    overflow: hidden;
    display: none;
}

.car-image img {
    display: inline-block;
    vertical-align: middle;
    width: 120%;
    max-width: 120%;
    height: auto;
    margin-left: -55px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') !important;
    position: absolute !important;
    top: 88% !important;
    right: 18px !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
}

.confirm p{
	margin: 20px;
}
.confirm{
	font-family: NouvelRRegular !important;
}
.confirm u{
	text-decoration: none;
	font-family: NouvelRRegular !important;
}
.confirm a{
	text-decoration: none;
	font-family: NouvelRBold !important;
	color: black;
}
.felicitation p{
	margin: 20px;
	font-family: NouvelRBold !important;
}


.btn_loading_1{
	display: none !important;
}


@media (max-width: 1237px) {
	.lp-quizz .form .row.buttons {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: 32px;
	}
    .lp-quizz .row .col-6.forms-wrapper{
        width: 481px;
        margin-left: 111px !important;
    }
    .choises-buttons {
        gap: 34px;
    }
    .lp-quizz .row .col-6{
        margin-left: 0px;
    }
    html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
        width: 480px;
        margin-right: 116px;
    }
    .car-image {
        margin-right: 111px;
    }
    .select2 {
        width: 161% !important;
    }
}

@media (max-width: 1190px) {
	.lp-quizz .row.quizz-wrapper {
		max-width: 65rem;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate{
		width: 468px;
		margin-right: 7px;
		margin-left: 0;
	}
	.lp-quizz .row .col-6.forms-wrapper {
		width: 475px;
		margin-right: 22px !important;
		margin-left: 15px !important;
	}
	.select2 {
		width: 160% !important;
	}
	.car-image {
		height: 340px;
		margin-right: 7px;
	}
	.car-image img {
		margin-left: -35px;
	}
}

@media (max-width: 1000px) {
	.lp-quizz .row.quizz-wrapper {
		max-width: 60rem;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
		width: 426px;
		margin-right: 10px;
	}
	.lp-quizz .row .col-6.forms-wrapper {
		width: 431px;
		margin-right: 22px !important;
		margin-left: 15px !important;
	}
	.select2 {
		width: 140% !important;
	}
	.car-image {
		height: 340px;
		margin-right: 19px;
	}
	.car-image img {
		margin-left: -26px;
	}
}
@media (max-width: 900px) {
	.lp-quizz .row.quizz-wrapper{
		max-width: 53rem;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate{
		width: 360px;
    	margin-right: 18px;
	}
	.lp-quizz .row .col-6.forms-wrapper {
		width: 403px;
		margin-right: 11px !important;
	}
	.select2 {
		width: 135% !important;
	}
	.car-image {
		height: 340px;
		margin-right: 19px;
	}
	.car-image img {
		margin-left: -26px;
	}
	.radio-containre {
		font-size: 16px;
	}
}


@media (max-width: 800px) {
    .lp-quizz .row .col-6.forms-wrapper {
        width: 355px;
        margin-right: 30px !important;
    }
    .choises-buttons {
        gap: 34px;
    }
    .lp-quizz .row .col-6{
        margin-left: 0px;
    }
    html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
        width: 354px;
        margin-right: 116px;
        padding: 10px;
		padding-left: 0px;
    }
    .lp-quizz .progress__circle {
        margin: 0rem auto;
    }
    .car-image {
        margin-right: 0;
		height: 36.6%;
    }
	.car-image img {
		margin-left: -26px;
	}
    .select2 {
        width: 118% !important;
    }
    .radio-containre {
        font-size: 13px;
    }
    .lp-quizz .form-title {
        font-size: 23px;
    }
    .lp-quizz .progress__title {
        margin-bottom: 10px;
    }

	.lp-quizz .form .form-control.radio-button-group .item strong {
		font-weight: 400;
		font-family: RenaultGroupSemibold;
		margin-left: 38px;
		font-size: 13px;
	}
	/*.lp-quizz .form .form-control.radio-button-group .item input {
		top: 8px;
		left: -3px;
		width: 31%;
		height: 49%;
	}*/
	.radio-containre input[type="radio"] {
		top: 13px;
	}
	.radios-container1 .item input[type="radio"]{
		left: 5px;
	}
}


/*------------------------------------*/
/*--------------- phone1 -------------*/
/*------------------------------------*/
@media (max-width: 740px) {
	.progress__text {
		margin-top: 15px;
	}
	.lp-quizz .form .form-control input[type=email], .lp-quizz .form .form-control input[type=number], .lp-quizz .form .form-control input[type=tel], .lp-quizz .form .form-control input[type=text]{
		margin-bottom: -15px;
	}
	.lp-quizz .form-title {
		font-size: 21px;
		text-align: center;
	}
	.car-image {
		display: none !important;
	}
	.lp-quizz .row.quizz-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.lp-quizz .row {
		width: 100%;
		margin: 0 auto;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
		width: 354px;
		/* margin-right: 116px; */
		padding: 10px 0;
		padding-left: 0px;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
		width: auto; 
		margin-right: 0px;
		padding: 10px 0;
		padding-left: 0px;
	}
	.lp-quizz .row .col-6 {
		width: 100%;
	}
	.lp-quizz .row .col-6.forms-wrapper {
		width: 355px;
		margin-right: 0 !important;
		margin-left: 0px !important;
		margin: auto;
	}
	.choises-buttons {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		gap: 0px;
	}
	.lp-quizz .form .row.buttons{
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		gap: 0px;
	}
	.lp-quizz .choises-buttons .item, .submit {
		margin: 3px 0px !important;
		width: 100% !important;
	}
	.lp-quizz .choises-buttons .back, .back {
		margin: 20px 0px 3px 0px;
		width: 100%;
	}
	.lp-quizz .progress .middle p:before {
		width: 10rem;
		height: 10rem;
	}
	.lp-quizz .progress__circle {
		width: 12.75rem;
		height: 12.75rem;
	}
	.lp-quizz .progress .middle p {
		font-size: 3rem;
	}
}
@media (max-width: 425px) {
	.lp-quizz .form-title {
		font-size: 21px;
		text-align: center;
	}
	.car-image {
		display: none !important;
	}
	.lp-quizz .row.quizz-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.lp-quizz .row {
		width: 100%;
		margin: 0 auto;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
		width: 354px;
		/* margin-right: 116px; */
		padding: 10px 0;
		padding-left: 0px;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
		width: auto; 
		margin-right: 0px;
		padding: 10px 0;
		padding-left: 0px;
	}
	.lp-quizz .row .col-6 {
		width: 100%;
	}
	.lp-quizz .row .col-6.forms-wrapper {
		width: 355px;
		margin-right: 0 !important;
		margin-left: 0px !important;
		margin: auto;
	}
	.choises-buttons {
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		gap: 0px;
	}
	.lp-quizz .form .row.buttons{
		display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		align-items: center;
		gap: 0px;
	}
	.lp-quizz .choises-buttons .item, .submit {
		margin: 3px 0px !important;
		width: 100% !important;
	}
	.lp-quizz .choises-buttons .back, .back {
		margin: 20px 0px 3px 0px;
		width: 100%;
	}
	.lp-quizz .progress .middle p:before {
		width: 10rem;
		height: 10rem;
	}
	.lp-quizz .progress__circle {
		width: 12.75rem;
		height: 12.75rem;
	}
	.lp-quizz .progress .middle p {
		font-size: 3rem;
	}
}
@media (max-width: 343px) {
	.lp-quizz .row .col-6.forms-wrapper {
		width: 288px;
	}
	.radio-containre span {
		margin-left: 16px;
		font-size: 11px;
	}
	.select2 {
		width: 97% !important;
	}
	.lp-quizz .form-title {
		font-size: 20px;
	}
	html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
		padding: 0px 0;
	}
}