/* CSS Document */
/* Setup */
/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Border Radius */
/* Radial Gradient */
/* Radial Gradient */
/* Box Shadow */
/* Transition */
/* Transition Global */
/* Transform */
/* Import */
/* Color */
/* Font Family */
html {
  font-size: 100%;
}

body {
  background-attachment: fixed;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% cover;
  background-position: center bottom;
  height: auto;
  min-height: calc(100vh - 115px);
  padding: 0 0 135px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

body.bg-home {
  padding: 0 0 115px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* float clearing for IE6 */
* html .clearfix {
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
* + html .clearfix {
  min-height: 1%;
}

/* float clearing for everyone else */
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0 none !important;
}

button:focus {
  outline: 0 none !important;
}

.col-contenu {
  float: left;
  height: auto;
  width: 100%;
}

.clr {
  clear: both;
}

/* Container */
.container {
  max-width: 589px;
  padding: 0;
}

.banner {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  padding: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px auto 0;
  text-align: left;
  width: 442px;
}

.banner .banner-message {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1rem;
}

.banner .banner-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.banner .banner-close:hover {
  background: rgba(0, 0, 0, 0.12);
}

.banner.error {
  background: #ed1c24;
}

.banner.success {
  background: #10c15c;
}

.banner.info {
  background: #0b22e2;
}

.banner.text {
  background: white;
  color: black;
  text-align: center;
}

.banner:not(.visible) {
  display: none;
}

@media screen and (max-width: 1195px) {
  body {
    min-height: calc(100vh - 80px);
    padding: 0 0 100px;
  }
  body.bg-home {
    padding: 0 0 80px;
  }
}

@media screen and (max-width: 595px) {
  body {
    min-height: calc(100vh - 60px);
    padding: 0 0 100px;
  }
  body.bg-home {
    padding: 0 0 60px;
  }
  .container {
    max-width: calc(100% - 20px);
    padding: 0;
  }
}

/* Parts */
/* Header */
header {
  background-color: white;
  border-radius: 0 0 11px 11px;
  -webkit-border-radius: 0 0 11px 11px;
  -moz-border-radius: 0 0 11px 11px;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(40, 59, 77, 0.11);
  box-shadow: 0px 4px 0px 0px rgba(40, 59, 77, 0.11);
  height: 70px;
  margin: 0 auto;
  position: relative;
  width: calc(100% - 40px);
}

header::after {
  clear: both;
  content: '';
}

header .logo {
  float: left;
  margin: 5px 0 0 29px;
  width: 133px;
}

header .logo img {
  width: 100%;
}

header ul {
  font-size: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}

header ul li {
  color: #292929;
  cursor: pointer;
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 70px;
  margin-left: 174px;
  position: relative;
}

header ul li:nth-child(1) {
  margin-left: 0;
}

header ul li a {
  color: #292929;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

header ul li::before {
  background-color: #ff571e;
  bottom: 0;
  content: '';
  height: 7px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 0;
}

header ul li:hover a {
  color: #ff571e;
}

header ul li:hover::before {
  width: 76px;
}

header ul li.active a {
  color: #ff571e;
}

header ul li.active::before {
  width: 76px;
}

header .user {
  color: #1a171b;
  float: right;
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 38px;
  margin: 13px 28px 0 0;
  padding: 0 0 0 54px;
  position: relative;
}

header .user::before {
  background-color: #b1b1b1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  content: attr(data-name);
  color: white;
  font-size: 18px;
  font-weight: 700;
  height: 38px;
  left: 0;
  line-height: 34px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 38px;
}

@media screen and (max-width: 1195px) {
  header ul li {
    margin-left: 40px;
  }
}

@media screen and (max-width: 595px) {
  header {
    height: auto;
    width: calc(100% - 20px);
  }
  header .logo {
    margin: 5px 0 0 19px;
    width: 125px;
  }
  header .user {
    margin: 13px 20px 0 0;
  }
  header ul {
    display: inline-block;
    left: 0;
    position: relative;
    -webkit-transform: initial;
    transform: initial;
    text-align: center;
    width: 100%;
  }
}

/* End Header */
/* Content Home */
.home {
  line-height: calc(100vh - 115px);
  position: relative;
  width: 100%;
}

.home .logo-sponsor {
  right: 46px;
  position: absolute;
  top: 30px;
  width: 233px;
}

.home .gagner {
  bottom: 0;
  right: 0;
  position: absolute;
  width: 425px;
}

.home .center {
  display: inline-block;
  line-height: normal;
  vertical-align: middle;
  width: 100%;
}

.home p {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 34px;
  text-align: center;
  text-shadow: 1px 1px black;
}

.home p span {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home .button {
  margin: 24px 0 0;
  text-align: center;
}

.home .button button {
  background-color: #ff571e;
  border: 0 none;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  color: white;
  font-family: "Titillium Web", sans-serif;
  font-size: 17.24px;
  font-weight: 600;
  height: 36px;
  line-height: 36px;
  padding: 0 34px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: auto;
}

.home .button button:hover {
  background-color: #199fdc;
}

@media screen and (max-width: 1195px) {
  .home {
    line-height: normal;
    min-height: calc(100vh - 80px);
  }
  .home .logo-sponsor {
    left: 50%;
    right: auto;
    position: relative;
    top: 0;
    margin: 40px 0 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .home p {
    margin: 80px 0 0;
    padding: 0 10px;
  }
  .home p span br {
    display: none;
  }
  .home p font br {
    display: none;
  }
}

@media screen and (max-width: 595px) {
  .home {
    min-height: calc(100vh - 60px);
  }
  .home .logo-sponsor {
    margin: 30px 0 0;
    width: 200px;
  }
  .home p {
    font-size: 22px;
    line-height: 30px;
  }
  .home .gagner {
    position: relative;
    margin: 40px 0 0 20%;
    width: 80%;
  }
  .banner {
    width: 92%;
  }
}

/* End Content Home */
/* Content Register */
.register {
  position: relative;
  width: 100%;
}

.register .logo-sponsor {
  right: 46px;
  position: absolute;
  top: 30px;
  width: 233px;
}

.register .form-connexion {
  background-color: white;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(40, 59, 77, 0.11);
  box-shadow: 0px 4px 0px 0px rgba(40, 59, 77, 0.11);
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  margin: 61px auto 0;
  padding: 0 0 29px;
  text-align: center;
  width: 442px;
}

.register .form-connexion h1 {
  color: #262626;
  font-family: "Titillium Web", sans-serif;
  font-size: 25.5px;
  font-weight: 600;
  line-height: 44px;
  margin: 26px 0 0;
}

.register .form-connexion p {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  margin: 5px 0 0;
  text-align: center;
}

.register .form-connexion .form-group {
  font-size: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
  text-align: left;
  width: 295px;
}

.register .form-connexion .form-group:nth-of-type(1) {
  margin-top: 30px;
}

.register .form-connexion .form-group .form-control {
  background-color: #eeeeee;
  border: 0 none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  color: #7f7f7f;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  height: 40px;
  padding: 0 0 0 19px;
  position: relative;
  width: 100%;
}

.register .form-connexion .form-group .form-control::-webkit-input-placeholder {
  color: #7f7f7f;
  opacity: 0.8;
}

.register .form-connexion .form-group .form-control::-moz-placeholder {
  color: #7f7f7f;
  opacity: 0.8;
}

.register .form-connexion .form-group .form-control:-ms-input-placeholder {
  color: #7f7f7f;
  opacity: 0.8;
}

.register .form-connexion .form-group .form-control:-moz-placeholder {
  color: #7f7f7f;
  opacity: 0.8;
}

.register .form-connexion .form-group span {
  color: black;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin: 0 0 10px;
}

.register .form-connexion .form-group .radio {
  cursor: pointer;
  color: black;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 28px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50%;
}

.register .form-connexion .form-group .radio:nth-child(1) {
  margin-left: 0;
}

.register .form-connexion .form-group .radio .checkmark {
  background-color: #e9e9e9;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: 0 none;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

.register .form-connexion .form-group .radio .checkmark::after {
  border: solid white;
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: 11px;
  left: 6.5px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 2px;
  width: 7px;
}

.register .form-connexion .form-group .radio input {
  cursor: pointer;
  opacity: 0;
  position: absolute;
}

.register .form-connexion .form-group .radio input:checked ~ .checkmark {
  background-color: #199fdc;
}

.register .form-connexion .form-group .radio input:checked ~ .checkmark::after {
  display: block;
}

.register .form-connexion .form-group .radiocondition {
  cursor: pointer;
  color: black;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 11.26px;
  font-weight: 500;
  line-height: 20px;
  margin-left: 9px;
  margin-top: 8px;
  padding-left: 28px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
}

.register .form-connexion .form-group .radiocondition a {
  color: #2639ef;
  text-decoration: underline;
}

.register .form-connexion .form-group .radiocondition .checkmark {
  background-color: #e9e9e9;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border: 0 none;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

.register .form-connexion .form-group .radiocondition .checkmark::after {
  border: solid white;
  border-width: 0 2px 2px 0;
  content: "";
  display: none;
  height: 11px;
  left: 6.5px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 2px;
  width: 7px;
}

.register .form-connexion .form-group .radiocondition input {
  cursor: pointer;
  opacity: 0;
  position: absolute;
}

.register .form-connexion .form-group .radiocondition input:checked ~ .checkmark {
  background-color: #199fdc;
}

.register .form-connexion .form-group .radiocondition input:checked ~ .checkmark::after {
  display: block;
}

.register .form-connexion .form-group .error {
  color: red;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  margin: 4px 0 0;
}

.register .form-connexion .button {
  margin: 20px auto 0;
  text-align: center;
  width: 138px;
}

.register .form-connexion .button button {
  background-color: #199fdc;
  border: 0 none;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  color: white;
  font-family: "Titillium Web", sans-serif;
  font-size: 17.24px;
  font-weight: 600;
  height: 36px;
  line-height: 36px;
  padding: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 100%;
}

.register .form-connexion .button button:hover {
  background-color: #ff571e;
}

@media screen and (max-width: 1195px) {
  .register .logo-sponsor {
    left: 50%;
    right: auto;
    position: relative;
    top: 0;
    margin: 40px 0 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 595px) {
  .register .logo-sponsor {
    margin: 30px 0 0;
    width: 200px;
  }
  .register .form-connexion {
    margin: 40px auto 0;
    padding: 0 0 20px;
    width: 92%;
  }
  .register .form-connexion h1 {
    margin: 20px 0 0;
  }
  .register .form-connexion p {
    padding: 0 5px;
  }
  .register .form-connexion p br {
    display: none;
  }
  .register .form-connexion .form-group {
    width: 92%;
  }
  .register .form-connexion .form-group .radiocondition {
    margin-left: 0;
  }
}

/* End Content Register */
/* Game */
.game {
  height: auto;
  position: relative;
  width: 100%;
}

.game .container {
  position: relative;
}

.game .retour {
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 25px;
  left: -88px;
  position: absolute;
  top: 37px;
  width: 25px;
}

.game h1 {
  color: white;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 43px;
  margin: 20px 0 0;
  text-shadow: 1px 1px black;
  text-align: center;
}

.game .para {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 21.78px;
  margin: 11px 0 0;
  text-shadow: 1px 1px black;
  text-align: center;
}

.game .box-quizz {
  background-color: white;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(40, 59, 77, 0.11);
  box-shadow: 0px 4px 0px 0px rgba(40, 59, 77, 0.11);
  background-image: url("../img/ballon.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right bottom;
  height: auto;
  margin: 13px auto 0;
  padding: 0 89px 24px;
  position: relative;
  text-align: center;
  width: 100%;
}

.game .box-quizz .game-question {
  display: none;
  font-size: 0;
  height: auto;
  width: 100%;
}

.game .box-quizz .game-question h2 {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 21.78px;
  margin-top: 26px;
  text-align: center;
}

.game .box-quizz .game-question h2 span {
  color: #ff571e;
  font-weight: 700;
}

.game .box-quizz .game-question ul {
  margin: 39px 0 0;
  text-align: left;
  width: 100%;
}

.game .box-quizz .game-question ul li {
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
}

.game .box-quizz .game-question ul li .radio {
  cursor: pointer;
  color: black;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 12px;
  padding-left: 22px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.game .box-quizz .game-question ul li .radio:nth-child(1) {
  margin-left: 0;
}

.game .box-quizz .game-question ul li .radio .checkmark {
  background-color: white;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border: 0 none;
  -webkit-box-shadow: 0px 0px 0px 2px #d9d9d9;
  box-shadow: 0px 0px 0px 2px #d9d9d9;
  height: 12px;
  left: 0;
  position: absolute;
  top: 0;
  width: 12px;
}

.game .box-quizz .game-question ul li .radio .checkmark::before {
  background-color: #70c600;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: none;
  content: '';
  height: 6px;
  left: 3px;
  position: absolute;
  top: 3px;
  width: 6px;
}

.game .box-quizz .game-question ul li .radio input {
  cursor: pointer;
  opacity: 0;
  position: absolute;
}

.game .box-quizz .game-question ul li .radio input:checked ~ .checkmark::before {
  display: block;
}

.game .box-quizz .game-question ul li:last-child {
  margin-bottom: 0;
}

.game .box-quizz a {
  background-color: #199fdc;
  border: 0 none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  color: white;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 13.07px;
  font-weight: 500;
  height: 34px;
  line-height: 34px;
  margin-top: 39px;
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  width: 97px;
}

.game .box-quizz a.w-a {
  padding: 0 10px;
  width: auto !important;
}

.game .box-quizz a:hover {
  background-color: #ff571e;
}

.game .box-quizz.hidden {
  display: none;
}

.game .box-img {
  margin: 24px 0 0;
  width: 100%;
}

.game .box-img img {
  width: 100%;
}

@media screen and (max-width: 1195px) {
  .game .retour {
    left: 0;
  }
}

@media screen and (max-width: 595px) {
  .game .box-quizz {
    padding: 0 20px 20px;
  }
}

/* End Game */
/* Footer */
footer {
  background-color: white;
  bottom: 0;
  height: 115px;
  line-height: 115px;
  left: 0;
  position: fixed;
  width: 100%;
}

footer img {
  height: 71px;
  margin: 0 0 0 54px;
  vertical-align: middle;
}

@media screen and (max-width: 1195px) {
  footer {
    height: 80px;
    line-height: 80px;
  }
  footer img {
    height: 60px;
    margin: 0 0 0 20px;
  }
}

@media screen and (max-width: 595px) {
  footer {
    height: 60px;
    line-height: 60px;
  }
  footer img {
    height: 40px;
  }
}

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