/* CSS Document */

/* ------------------------------ RESET ------------------------------ */

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	outline:none;
	font-size:100%;
    box-sizing: border-box;
    webkit-apperance:none;
}

/* ------------------------------ END RESET ------------------------------ */

/* ------------------------------ GLOBAL ------------------------------ */

body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:18px;
	line-height:1.6;
	margin:0;
	max-width:100%;
	-webkit-text-size-adjust: none;
	position:relative;
    color:#2e384b;  
}

.center {text-align: center;}

a {text-decoration: none;}

img {width: 100%;height:auto;}

.uppercase {text-transform: uppercase;}

.content {width:1500px;margin:0 auto;position: relative;height:100vh;overflow: hidden;}
@media (max-width: 1500px) {.content {width: 100%;}}

.content_normal {width:1300px;margin:0 auto;position: relative;padding:20px;}
@media (max-width: 1300px) {.content_normal {width: 100%;}}

ul, li {list-style-type: none;margin:0;padding:0;}
        
.row{display: flex;flex-wrap: wrap; position: relative;align-items:center;}

.col {padding:0 20px;max-width:100%;position: relative;}
.col_6 {width:50%}
.col_4 {width:33.33%}
.col_3 {width:25%}
.col_2 {width:16.66%}

.mt50 {margin-top:50px;}

h1 {font-size: 40px;margin:40px 0;line-height:1.2;}
h2 {font-size: 32px;margin:10px 0 40px 0;line-height:1.2;}
.surtitre {font-size:23px;color:#8793a5;line-height:1.2;}

.content_normal h2 {margin:10px 0;}

.btn, input[type=submit] {
    cursor: pointer;
    display: inline-block;
    border:0;
    color:#FFF;
    text-transform: uppercase;
    font-size:14px;
    padding:20px 60px;
    transition:all ease 0.5s;
}
input[type=submit] {margin:0 auto;}

.beige { background-color: #E4C8B2;}
.beige:hover {background-color: #2E384B;}

.gris { background-color: #8793A5;}
.gris:hover {background-color: #000;}


.navigation {margin-top:50px;}

.next, .prev, .radio label {
    display: inline-block;
    border: 2px solid #2e384b;
    border-radius: 5px;
    padding:10px 15px 20px 15px;
    transition:all ease 0.5s;
    cursor: pointer;
}
.prev {
    border: 2px solid #8793A5;
    padding:20px 15px 10px 15px;
    margin-right:10px;
}

.next:hover {background-color: #2e384b;}
.prev:hover {background-color: #8793A5;}

.up, .down {
    width:15px;
    height:15px;
    border-left:2px solid #8793A5;
    border-top:2px solid #8793A5;
    transform: rotate(45deg);
    transform-origin: center;
    transition:all ease 0.5s;
}
.down {
    border-left:2px solid #2e384b;
    border-bottom:2px solid #2e384b;
    border-top:0;
    transform: rotate(-45deg);
}

.prev:hover .up, .next:hover .down {border-color: #FFF;}


.radio {
  display: inline-block;
  margin: 0 10px 10px 0;
  position: relative;
}
.radio label {padding:10px 40px;}

.radio input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.radio input[type="radio"] {
  opacity: 0.01;
  z-index: 100;
}

.radio input[type="radio"]:hover + label, .radio input[type="radio"]:checked + label {
    background: #2e384b;
    color:#FFF;
}


.images {display: flex;align-items:center;}
.images img {display: block;}

.small {z-index:2;margin-right:-100px;transition:all ease 1s;}
.big {z-index:1;transition:all ease 1s;}

.etape {
    position: absolute;
    height:100%;
    width:90%;
    top:0;
    left:5%;
    transition:all ease 1s;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.passee {top:-200%}
.suivante {top:200%;}

.passee .small {margin-bottom: 400px;}
.passee .big {margin-bottom: 600px;}

.suivante .small {margin-top: 400px;}
.suivante .big {margin-top: 600px;}





.slider_container {position: relative;}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height:60px;
    background: none;
    outline: none;
    z-index:3;

}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%; 
    background: #2e384b;
    cursor: pointer;
    z-index:3;
}

.slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #2e384b;
    cursor: pointer;
    z-index:3;
}
        
.range_values {
    position:absolute;
    z-index:-2;
    top:40px;
    width:100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.range_values:before {
    position:absolute;
    left:2px;
    right:2px;
    top:-10px;
    height:1px;
    background: #8793a5;
    content:'';
    border-radius: 5px; 
}
.range_values li:before {
    content:'';
    position:absolute;
    top:-12px;
    margin-left:2px;
    border-radius:7px;
    height:7px;
    width:7px;
    background: #2e384b;
}
   
.progression {
    position:absolute;
    top:30px;
    left:2px;
    right:2px;
    height:2px;
    background: #2e384b;
    border-radius: 5px; 
    z-index:-1;
    transition: all ease 0.5s;

}

.scores li {font-weight: normal;margin:10px 0;}

.resultats {align-items:stretch;margin:50px auto;width:1000px;}
.resultats .col {padding-bottom: 80px;}
.resultats .col .btn {position: absolute;bottom:0;}

.resultats .col h2 {min-height: 80px;}


/* ------------------------------  RESPONSIVE -----------------------------*/
@media (max-width: 1000px) {
    .resultats {width:100%;
    }

@media (max-width: 900px) {
    .col {width:100% !important;text-align: center;margin-bottom: 20px;}
    .images {padding: 40px 80px;}
    .small {margin-right: -50px;}
    h1 {font-size: 32px;margin:30px 0;}
    h2 {font-size: 27px;margin:10px 0 30px 0;}
    .surtitre {font-size:20px;}
    .radio {margin: 5px;}

    .resultats {align-items:flex-start;}
    .resultats .col {padding-bottom: 0;}
    .resultats .col .btn {position: relative;}

}
@media (max-width: 480px) {
    .mt50 {margin-top:20px;}

    .images {padding: 30px 100px;}
    .small {margin-right: -40px;}
    h1 {font-size: 27px;margin:20px 0;}
    h2 {font-size: 22px;margin:10px 0 20px 0;}
    .surtitre {font-size:18px;}
    body {font-size:16px;}

    .btn, input[type=submit] {
        font-size:13px;
        padding:15px 50px;
        margin-bottom: 10px;
    }
    .radio {margin: 10px auto;display: block;}
    .radio label {padding:10px 30px;min-width:200px;}

}
