/* Our normalize css */
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/** TOP MENU **/
body {
  background: #F8F8F8;
  width: 100%;
}

.light-bg {
  background: #F8F8F8;
}

.dark-bg {
  background: linear-gradient(130.48deg, #222222 0.75%, #000000 100%);
  color: white;
}

.main-btn {
  outline: none;
  border-radius: 20px;
  height: 40px;
  padding: 0 25px;
  margin-bottom: 20px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  cursor: pointer;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  max-width: 165px;
}
.main-btn.inverted {
  background: #FFFFFF;
  color: #000;
  border: none;
}
.main-btn.black {
  background: #000000;
  border: none;
}
.main-btn.btn-video {
  padding-left: 45px;
  margin-top: 0;
  max-width: 130px;
  background: #FFFFFF url("../images/_icons/play_outline_circle.png") 11px 7px no-repeat;
}

header {
  background: #fbfbfb;
  border-bottom: 2px solid #E7E7E7;
  overflow: hidden;
  color: red;
  height: 123px;
  position: fixed;
  top: 0;
  transition: top 0.2s ease-in-out;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header {
    height: 58px;
  }
}
header.nav-up {
  top: -125px;
}
@media screen and (max-width: 767px) {
  header.nav-up {
    top: -60px;
  }
}
header img {
  margin: 0 25px;
}
@media screen and (max-width: 767px) {
  header img {
    max-height: 70%;
  }
}
header .hamburger-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  header .hamburger-icon {
    display: flex;
    margin: 0 25px;
  }
}
header label {
  display: flex;
  flex-direction: column;
  width: 35px;
  cursor: pointer;
}
header label span {
  background: #444;
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
header label span:nth-of-type(1) {
  width: 50%;
}
header label span:nth-of-type(2) {
  width: 100%;
}
header label span:nth-of-type(3) {
  width: 75%;
}
header input[type=checkbox] {
  display: none;
}
header input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(4px, 0px);
}
header input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}
header input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(14px, -4px) rotatez(45deg);
}
header .main-btn {
  margin: 0 25px;
  border: 1px solid #444 !important;
}
@media screen and (max-width: 767px) {
  header .main-btn {
    display: none;
  }
}

.menu-dropdown {
  position: fixed;
  top: -300px;
  width: 100%;
  background: #f7f7f7;
  transition: all ease-in-out 0.5s;
}
.menu-dropdown .download-btn img {
  height: 60px;
}
.menu-dropdown .nav-item {
  padding: 15px 0;
  display: block;
  text-align: center;
  border-top: 1px solid #eee;
}
.menu-dropdown .main-btn {
  display: flex;
  margin: 0 auto;
  border: 1px solid #444 !important;
}
.menu-dropdown.nav-displayed {
  top: 60px;
  z-index: 9;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
}
main .chapitre-id {
  position: relative;
  margin: 0;
}
main h1, main h2, main h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-style: normal;
}
main h1 {
  font-size: 38px;
  line-height: 41px;
}
@media screen and (max-width: 767px) {
  main h1 {
    font-size: 30px;
    line-height: 33px;
  }
}
main h2 {
  font-size: 38px;
  line-height: 41px;
}
@media screen and (max-width: 767px) {
  main h2 {
    font-size: 18px;
    line-height: 21px;
  }
}
main h3 {
  font-size: 24px;
  line-height: 31px;
}
@media screen and (max-width: 767px) {
  main h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
main p, main ul, main li {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  main p, main ul, main li {
    font-size: 14px;
    line-height: 19px;
  }
}
main .max-width-content {
  max-width: 1400px;
  margin: auto;
  position: relative;
}
main .hero {
  height: 90vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .hero {
    height: auto;
  }
}
main .hero::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.9) 100%);
}
main .hero .main-logo, main .hero .btn-profil, main .hero #mainTitleWrapper {
  z-index: 1;
  position: relative;
}
main .hero .main-logo {
  margin: 40px 0 0 8.5%;
  max-width: 155px;
}
@media screen and (max-width: 767px) {
  main .hero .main-logo {
    margin: 0 auto 25px;
    max-width: 105px;
    display: block;
  }
}
main .hero .btn-profil {
  position: absolute;
  right: 8.5%;
  top: 25px;
}
@media screen and (max-width: 767px) {
  main .hero .btn-profil {
    display: none;
  }
}
main .hero #mainTitleWrapper {
  margin: 25vh 8.5%;
}
main .hero #mainTitleWrapper p {
  margin: 25px 0;
}
main .hero #mainTitleWrapper .main-btn {
  margin-bottom: 30px;
}
main .hero #mainTitleWrapper .download-btn {
  margin-right: 20px;
}
main .hero #mainTitleWrapper .download-btn img {
  height: 50px;
}
@media screen and (max-width: 767px) {
  main .hero #mainTitleWrapper .download-btn {
    display: block;
    margin: 0 auto 5px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  main .hero #mainTitleWrapper h1 {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  main .hero #mainTitleWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 5vh 0;
  }
  main .hero #mainTitleWrapper h1, main .hero #mainTitleWrapper p {
    text-align: center;
  }
  main .hero #mainTitleWrapper p {
    margin: 0 0 25px;
  }
}
@media screen and (max-width: 767px) {
  main .hero .max-width-content {
    padding: 50px 25px;
  }
}
main #chapitre1 h1, main #chapitre1 p {
  color: white;
}
main #chapitre2 .part-1 .max-width-content, main #chapitre2 .part-2 .max-width-content {
  padding: 25px;
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  main #chapitre2 .part-1 .max-width-content, main #chapitre2 .part-2 .max-width-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
main #chapitre2 .part-1 .max-width-content .part-1-column, main #chapitre2 .part-1 .max-width-content .part-2-column, main #chapitre2 .part-2 .max-width-content .part-1-column, main #chapitre2 .part-2 .max-width-content .part-2-column {
  align-self: center;
  justify-self: center;
  flex-grow: 1;
  flex-basis: 50%;
}
main #chapitre2 .part-1 .max-width-content img, main #chapitre2 .part-2 .max-width-content img {
  max-width: 495px;
  margin: auto;
  display: block;
}
@media screen and (max-width: 500px) {
  main #chapitre2 .part-1 .max-width-content img, main #chapitre2 .part-2 .max-width-content img {
    max-width: 100%;
  }
}
main #chapitre2 .part-1 {
  background: url("../images/_decoration/bg_top-right.png") top right no-repeat;
  padding-top: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  main #chapitre2 .part-1 {
    background-size: auto 100%;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre2 .part-1 {
    padding-top: 50px;
  }
}
@media screen and (max-width: 490px) {
  main #chapitre2 .part-1 {
    background-size: auto 53%;
  }
}
@media screen and (min-width: 768px) {
  main #chapitre2 .part-1 .part-1-column.left {
    max-width: 600px;
  }
}
main #chapitre2 .part-2 {
  background: url("../images/_decoration/bg_bottom-left.png") bottom left no-repeat;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  main #chapitre2 .part-2 {
    padding-bottom: 50px;
    background: none;
  }
}
main #chapitre2 .part-2 .max-width-content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  main #chapitre2 .part-2 .max-width-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
main #chapitre2 .part-2 .max-width-content img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  main #chapitre2 .part-2 .part-2-column.right {
    padding-left: 25px;
  }
  main #chapitre2 .part-2 .part-2-column.right ul, main #chapitre2 .part-2 .part-2-column.right h2 {
    max-width: 600px;
  }
  main #chapitre2 .part-2 .part-2-column.right ul {
    margin: 0 0 45px;
  }
}
main #chapitre3 .max-width-content {
  text-align: center;
  max-width: 950px;
  padding: 100px 25px 0 25px;
}
@media screen and (max-width: 767px) {
  main #chapitre3 .max-width-content {
    padding-top: 50px;
  }
}
main #chapitre3 .max-width-content h2 {
  margin-top: 25px;
  margin-bottom: 1.2em;
}
main #chapitre3 img {
  max-width: 100%;
  position: relative;
  bottom: -150px;
}
@media screen and (max-width: 767px) {
  main #chapitre3 img {
    bottom: -60px;
  }
}
main #chapitre4 {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  main #chapitre4 {
    padding-top: 50px;
  }
}
main #chapitre4 .layered {
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 550px;
  min-height: 300px;
  top: 0;
}
main #chapitre4 .layered .layer {
  position: absolute;
  bottom: 0;
  left: 0;
}
main #chapitre4 .part-1 .layer {
  border-radius: 24px;
}
main #chapitre4 .max-width-content {
  display: flex;
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .max-width-content {
    flex-direction: column-reverse;
  }
}
main #chapitre4 .max-width-content .part-1-column, main #chapitre4 .max-width-content .part-2-column, main #chapitre4 .max-width-content .part-3-column {
  padding: 0 25px;
  flex-grow: 1;
  width: 50%;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .max-width-content .part-1-column, main #chapitre4 .max-width-content .part-2-column, main #chapitre4 .max-width-content .part-3-column {
    width: auto;
    padding: 25px;
  }
}
main #chapitre4 .max-width-content .part-text {
  margin: 70px 0 100px;
}
main #chapitre4 .max-width-content .part-text .logo {
  max-height: 40px;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .max-width-content .part-text {
    margin: 20px 0 0;
  }
}
main #chapitre4 .part-1 .max-width-content,
main #chapitre4 .part-3 .max-width-content {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-1 .max-width-content,
main #chapitre4 .part-3 .max-width-content {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-1 .max-width-content .layered .layer,
main #chapitre4 .part-2 .max-width-content .layered .layer {
    max-width: 50%;
  }
}
main #chapitre4 .part-1 .layered {
  margin-top: 20px;
  min-height: 420px;
}
@media screen and (max-width: 1100px) {
  main #chapitre4 .part-1 .layered {
    max-width: 360px;
  }
}
@media screen and (min-width: 768px) and (max-width: 890px) {
  main #chapitre4 .part-1 .layered {
    max-width: 290px;
    min-height: 550px;
    left: -30px;
    top: -30px;
  }
}
@media screen and (min-width: 465px) and (max-width: 767px) {
  main #chapitre4 .part-1 .layered {
    max-width: 767px;
    left: -20px;
    top: -30px;
  }
}
@media screen and (max-width: 464px) {
  main #chapitre4 .part-1 .layered {
    max-width: 767px;
    left: -50px;
    top: -30px;
  }
}
@media screen and (max-width: 320px) {
  main #chapitre4 .part-1 .layered {
    left: -42px;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(1) {
  left: 25%;
  bottom: 41%;
}
main #chapitre4 .part-1 .layered .layer:nth-child(2) {
  left: 25%;
  bottom: 60%;
}
@media screen and (max-width: 464px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(2) {
    bottom: 65%;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(3) {
  left: 15%;
  bottom: 70%;
}
main #chapitre4 .part-1 .layered .layer:nth-child(4) {
  left: 37%;
  bottom: 56%;
}
@media screen and (max-width: 768px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(4) {
    left: 26%;
    bottom: 53%;
  }
}
@media screen and (max-width: 464px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(4) {
    left: 38%;
    bottom: 55%;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(5) {
  left: 55%;
  bottom: 4%;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(5) {
    display: none;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(6) {
  left: 5%;
  bottom: 60%;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(6) {
    left: 13%;
    bottom: 52%;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(7) {
  left: 73%;
  bottom: 12%;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(7) {
    left: 68%;
    bottom: 20%;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(8) {
  left: 73%;
  bottom: 35%;
}
@media screen and (max-width: 320px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(8) {
    bottom: 30%;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(9) {
  left: 12%;
  bottom: 3%;
}
main #chapitre4 .part-1 .layered .layer:nth-child(10) {
  left: -2%;
  bottom: 19%;
}
@media screen and (max-width: 464px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(10) {
    left: 6%;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(11) {
  left: 51%;
  bottom: 40%;
}
main #chapitre4 .part-1 .layered .layer:nth-child(12) {
  left: 66%;
  bottom: 60%;
}
main #chapitre4 .part-1 .layered .layer:nth-child(13) {
  left: 60%;
  bottom: -15%;
}
@media screen and (max-width: 464px) {
  main #chapitre4 .part-1 .layered .layer:nth-child(13) {
    bottom: -6%;
  }
}
main #chapitre4 .part-1 .layered .layer:nth-child(14) {
  left: 35%;
  bottom: 10%;
}
main #chapitre4 .part-1 .layered .layer:nth-child(15) {
  left: 25%;
  bottom: -18%;
}
main #chapitre4 .part-2 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-2 {
    margin-top: 20px;
  }
}
main #chapitre4 .part-2 .part-text {
  margin: 20px 0 100px;
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-2 .part-text {
    margin-top: 110px;
    margin-bottom: 0;
  }
}
main #chapitre4 .part-2 .layered {
  min-height: 400px;
  top: 50px;
}
@media screen and (max-width: 1100px) {
  main #chapitre4 .part-2 .layered {
    min-height: 450px;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-2 .layered {
    min-height: 290px;
  }
}
main #chapitre4 .part-2 .layered .layer:nth-child(1) {
  left: 5%;
  bottom: 0;
}
main #chapitre4 .part-2 .layered .layer:nth-child(2) {
  left: 25%;
  bottom: -20%;
}
main #chapitre4 .part-2 .layered .layer:nth-child(3) {
  left: 50%;
  bottom: 50%;
}
@media screen and (max-width: 1024px) {
  main #chapitre4 .part-2 .layered .layer:nth-child(3) {
    left: 30%;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-2 .layered .layer:nth-child(3) {
    left: 50%;
  }
}
main #chapitre4 .part-2 .layered .layer:nth-child(4) {
  left: 35%;
  bottom: 36%;
}
main #chapitre4 .part-2 .layered .layer:nth-child(5) {
  left: 55%;
  bottom: 4%;
}
@media screen and (max-width: 860px) {
  main #chapitre4 .part-2 .layered .layer:nth-child(5) {
    left: 35%;
  }
}
main #chapitre4 .part-2 .layered .layer:nth-child(6) {
  left: 5%;
  bottom: 55%;
}
@media screen and (max-width: 860px) {
  main #chapitre4 .part-2 .layered .layer:nth-child(6) {
    left: -5%;
  }
}
main #chapitre4 .part-2 .layered .layer:nth-child(7) {
  left: 73%;
  bottom: 12%;
}
@media screen and (max-width: 860px) {
  main #chapitre4 .part-2 .layered .layer:nth-child(7) {
    left: 69%;
    bottom: 9%;
  }
}
main #chapitre4 .part-3 .part-img {
  position: relative;
  height: 100%;
}
main #chapitre4 .part-3 .layered {
  background: url("../images/_decoration/bg_qub-radio.png") bottom center no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: 0;
}
main #chapitre4 .part-3 .layered .layer {
  bottom: -50px;
  height: 100%;
}
main #chapitre4 .part-3 .layered .layer.mobile-only {
  display: none;
}
@media screen and (max-width: 1100px) {
  main #chapitre4 .part-3 .layered .layer {
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
  }
  main #chapitre4 .part-3 .layered .layer.mobile-only {
    display: block;
  }
  main #chapitre4 .part-3 .layered .layer.desktop-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre4 .part-3 .layered .layer {
    bottom: -60px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  main #chapitre4 .part-3 .layered .layer {
    max-width: 50%;
    margin-left: -25%;
    left: 50%;
  }
}
@media (min-width: 460px) and (max-width: 600px) {
  main #chapitre4 .part-3 .layered .layer {
    max-width: 70%;
    margin-left: -35%;
    left: 50%;
  }
}
@media screen and (max-width: 1100px) {
  main #chapitre4 .part-3 .layered {
    margin: auto;
    position: relative;
  }
}
main #chapitre5 .max-width-content {
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
}
main #chapitre5 .collapsible {
  display: none;
}
@media screen and (min-width: 768px) {
  main #chapitre5 #textPin {
    overflow: hidden;
    min-width: 384px;
  }
}
@media screen and (min-width: 980px) {
  main #chapitre5 #textPin {
    overflow: hidden;
    min-width: 490px;
  }
}
@media screen and (min-width: 1200px) {
  main #chapitre5 #textPin {
    overflow: hidden;
    min-width: 600px;
  }
}
main #chapitre5 .step-text {
  opacity: 0;
  transition: opacity ease-in-out 0.5s;
}
@media screen and (min-width: 768px) {
  main #chapitre5 .step-text {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 70vh;
    position: absolute;
    left: 10%;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}
main #chapitre5 .step-text.revealed {
  opacity: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  main #chapitre5 .step-text.revealed {
    margin: auto;
    text-align: center;
  }
  main #chapitre5 .step-text.revealed h3, main #chapitre5 .step-text.revealed p {
    padding: 0 25px;
  }
  main #chapitre5 .step-text.revealed h3 {
    margin: 10px 0 0;
    padding: 0;
    font-size: 17px;
  }
  main #chapitre5 .step-text.revealed ol {
    text-align: justify;
    max-width: 85%;
    margin: 25px auto;
  }
}
@media screen and (max-width: 370px) {
  main #chapitre5 .step-text.revealed {
    max-width: 290px;
    padding: 0;
  }
}
main #chapitre5 .step-progress {
  position: absolute;
  left: 0;
  top: 17vh;
  width: 4px;
  height: 35vh;
}
main #chapitre5 .step-progress ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 2px;
  height: 100%;
  flex-basis: 25%;
  padding: 0;
}
main #chapitre5 .step-progress ul li {
  list-style-type: none;
  content: "";
  width: 2px;
  height: 100%;
  flex-grow: 1;
  background-color: #c4c4c4;
  display: block;
}
main #chapitre5 .step-progress ul li.revealed {
  background-color: #1c1c1c;
}
@media screen and (max-width: 767px) {
  main #chapitre5 .step-progress {
    display: none;
  }
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
  main #chapitre5 #phonePin:not(.pinned) {
    margin-top: 120px !important;
  }
}
@media screen and (min-width: 768px) {
  main #chapitre5 #phonePin:not(.pinned) {
    margin-top: 120px;
  }
  main #chapitre5 #phonePin.pinned, main #chapitre5 #textPin.pinned {
    top: 50% !important;
    transform: translate(0, -50%);
  }
  main #chapitre5 #textPin {
    display: flex;
    flex-direction: row;
    width: 50vw !important;
    height: 100vh;
    overflow: visible;
  }
  main #chapitre5 #textPin:not(.pinned) {
    visibility: hidden;
  }
  main #chapitre5 #textPin.pinned {
    left: 40% !important;
    top: 65% !important;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  main #chapitre5 #textPin.pinned {
    left: 45% !important;
  }
}
@media screen and (min-width: 768px) {
  main #chapitre5 #textPin .step-texts {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
  main #chapitre5 #phonePin.pinned {
    margin-top: 4vh !important;
  }
  main #chapitre5 #textPin.pinned {
    left: 49% !important;
  }
  main #chapitre5 .step-text {
    right: 10% !important;
  }
}
main #chapitre5 .step-images {
  position: relative;
}
@media screen and (max-width: 767px) {
  main #chapitre5 .step-images {
    margin: 0;
  }
}
main #chapitre5 .step-mask {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  z-index: 2;
}
main #chapitre5 .step-mask .mobile-only {
  display: none;
}
@media screen and (max-width: 767px) {
  main #chapitre5 .step-mask img {
    width: 335px;
    margin: auto;
    display: block;
  }
  main #chapitre5 .step-mask img.mobile-only {
    display: block;
  }
  main #chapitre5 .step-mask img.desktop-only {
    display: none;
  }
}
@media screen and (max-width: 374px) {
  main #chapitre5 .step-mask img {
    width: 220px;
  }
}
main #chapitre5 .step-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  -webkit-transition: background 0.5s ease-out;
  -moz-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
  background-image: url("../images/_ecrans/parcourir_animation.gif");
  background-size: 270px 590px !important;
  background-position: center 15px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  main #chapitre5 .step-img {
    background-position: center 48px !important;
    background-size: 225px 485px !important;
  }
}
@media screen and (max-width: 374px) {
  main #chapitre5 .step-img {
    background-position: center 30px !important;
    background-size: 150px 320px !important;
  }
}
@media screen and (max-width: 319px) {
  main #chapitre5 .step-img {
    background: none !important;
  }
}
main #chapitre5 .step-img.step1 {
  background-image: url("../images/_ecrans/parcourir_animation_LQ.gif") !important;
}
main #chapitre5 .step-img.step2 {
  background-image: url("../images/_ecrans/chaines_animation_LQ.gif") !important;
}
main #chapitre5 .step-img.step3 {
  background-image: url("../images/_ecrans/bibliotheque_animation_LQ.gif") !important;
}
main #chapitre5 .step-img.step4 {
  background-image: url("../images/_ecrans/rattrapage_animation_LQ.gif") !important;
}
main #chapitre5 .scrollmagic-pin-spacer .step-img {
  top: 30px;
  left: 66px;
  z-index: 1;
  width: 270px;
  height: 590px;
}
main #chapitre5 #stepsText.pinned {
  margin-left: 395px;
}
@media screen and (max-width: 767px) {
  main #chapitre5 #textPin {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    margin: 0 !important;
  }
  main #chapitre5 #stepsText .draggable {
    height: 700px;
    position: relative;
  }
}
@media screen and (max-width: 767px) and (max-width: 370px) {
  main #chapitre5 #stepsText .draggable {
    height: 510px;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 #stepsText .slick-track {
    padding-bottom: 15px;
    position: absolute;
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 #stepsText .slick-track::before {
    content: "";
    display: block;
    height: 0;
    top: 0;
    position: relative;
    width: 100%;
    background: linear-gradient(0deg, #e7e7e7 0%, rgba(231, 231, 231, 0) 100%);
    transition: height 0.5s ease 0s;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 #stepsText .slick-slide {
    background-color: #E7E7E7;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 #stepsText.collapsed .slick-track::before {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 #stepsText ol {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 #stepsText .main-btn.black {
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 .collapsible-content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 h3 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 .collapsible {
    display: block;
    outline: none;
    cursor: pointer;
    margin: 10px auto 20px;
    width: 100%;
    text-align: center;
    color: #444;
    font-family: "Barlow", sans-serif;
  }
  main #chapitre5 .collapsible.active {
    margin: 20px auto 20px;
  }
}
@media screen and (max-width: 767px) {
  main #chapitre5 .max-width-content {
    background: #E7E7E7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    flex-direction: column;
    flex-basis: 100%;
    margin: 20px;
    position: relative;
    padding-bottom: 160px;
  }
}

footer {
  font-family: "Barlow", sans-serif;
  color: #E7E7E7;
  background: linear-gradient(180deg, #222222 0%, #000000 100%);
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 30px;
  }
}
footer .footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 8.5%;
}
footer .footer-menu .footer-col {
  flex-grow: 1;
  padding: 25px 0 80px;
  flex-direction: column;
  display: flex;
  flex-basis: 33.3333%;
}
footer .footer-menu .footer-col .download-btn:first-of-type {
  margin-right: 25px;
}
footer .footer-menu .footer-col .download-btn img {
  height: 44px;
}
@media screen and (max-width: 767px) {
  footer .footer-menu .footer-col {
    padding: 0 0 25px;
  }
  footer .footer-menu .footer-col .download-btn:first-of-type {
    margin-right: 0px;
  }
  footer .footer-menu .footer-col .download-btn img {
    height: 42px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-menu {
    flex-direction: column;
  }
}
footer h4 {
  font-size: 18px;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  footer h4 {
    line-height: 21px;
  }
}
footer a {
  color: #E7E7E7;
  text-decoration: none;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  padding: 0;
  opacity: 0.8;
}
footer a + a {
  padding-top: 25px;
}
footer .copyrights {
  padding: 25px 0 30px;
  text-align: center;
  font-size: 0.8em;
  color: #E7E7E7;
  font-family: "Barlow", sans-serif;
}

/* Style the container for the player */
#qubLandingVideo {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}
#qubLandingVideo.hidden {
  display: none;
}

#upNext {
  display: none;
}

/* Style the player within the container */
#qubLandingVideo .video-js {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

#qubLandingVideo .vjs-tech {
  object-fit: cover !important;
}

/* Hide the player control bar */
#qubLandingVideo .video-js .vjs-control-bar {
  display: none !important;
}

/* Remove click events on the player */
#qubLandingVideo .video-js {
  pointer-events: none !important;
}

.vjs-dock-text {
  display: none;
}

/*** LIGHTBOX ***/
/* position the div which contains the video still image and the lightbox player */
/* styles for the lightbox player, including transitions to show and hide */
#playerLightbox {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition: opacity ease-in-out 0.1s;
}

/* show the player */
.playerShow {
  position: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* hide the player */
.playerHide {
  width: 0;
  height: 0;
  padding: 0;
  opacity: 0;
}

/* style the close button for the lightbox player */
.playerClose {
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font-weight: lighter;
  line-height: 16px;
  height: 39px;
}

/* style the video poster image */
#videoContainer {
  display: none;
}

.responsiveVideoPlayerWrapper {
  position: relative;
  display: block;
  max-width: 682px;
  min-width: 300px;
}
@media (min-width: 682px) {
  .responsiveVideoPlayerWrapper {
    min-width: 682px;
  }
}
.responsiveVideoPlayerWrapper .responsiveVideoPlayerRatioMaker {
  padding-top: 56.25%;
}

.slick-initialized .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-dots {
  bottom: -10px;
}
.slick-dots li button:before {
  font-size: 20px;
  width: 30px;
  height: 2px;
  content: "";
  background-color: #1c1c1c;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
}

.lazy {
  filter: blur(4px);
  transition: filter 2s ease-in;
}

.lazy.loaded {
  filter: none;
}

/*# sourceMappingURL=style.css.map */
