@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Raleway:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0; }

img {
  max-width: 100%;
  display: block; }

h1 {
  font-size: 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 60px; }
  @media (max-width: 580px) {
    h1 {
      font-size: 42px;
      line-height: 55px; } }
  @media (max-width: 510px) {
    h1 {
      font-size: 38px; } }
  @media (max-width: 385px) {
    h1 {
      font-size: 32px; } }

h2 {
  font-size: 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 60px; }
  @media (max-width: 580px) {
    h2 {
      font-size: 42px;
      line-height: 55px; } }
  @media (max-width: 510px) {
    h2 {
      font-size: 38px; } }
  @media (max-width: 385px) {
    h2 {
      font-size: 32px; } }

h3 {
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: #333333; }

p {
  font-size: 17px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #333333; }

a {
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
  color: #333333; }

label {
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #333333; }

header {
  background: rgba(255, 255, 255, 0.98);
  position: fixed;
  width: 100%;
  z-index: 10000;
  border-bottom: 1px solid lightgrey;
  padding: 30px 0; }
  header div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-out;
    max-width: 1220px;
    margin: 0 auto; }
    @media (max-width: 1230px) {
      header div {
        padding: 0 30px; } }
  header #logo {
    max-width: 170px;
    transition: 0.2s ease-out; }
  header .desktopmenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media (max-width: 885px) {
      header .desktopmenu {
        display: none; } }
    header .desktopmenu ul {
      list-style: none; }
      header .desktopmenu ul li {
        display: inline-block;
        padding: 0 10px; }
        header .desktopmenu ul li img {
          display: inline-block;
          margin: 0 10px -1px 0; }
    header .desktopmenu .ulmenu {
      margin-right: 50px; }
      header .desktopmenu .ulmenu a:hover {
        z-index: 1;
        position: relative; }
        header .desktopmenu .ulmenu a:hover::after {
          content: " ";
          height: 5px;
          width: 100%;
          background-color: #F07E24;
          position: absolute;
          z-index: -1;
          top: 30px;
          right: 0px; }
      header .desktopmenu .ulmenu .borderexp {
        box-sizing: border-box;
        border-right: 1px solid lightgrey;
        padding: 0 20px; }
    header .desktopmenu .profil {
      position: relative; }
      header .desktopmenu .profil:hover ul {
        right: -20px; }
      header .desktopmenu .profil ul {
        background-color: white;
        border: 1px solid lightgrey;
        position: absolute;
        right: -4000px;
        top: 22px;
        width: 150px;
        z-index: 10000000000000000000; }
        header .desktopmenu .profil ul li {
          display: block;
          font-family: 'Raleway', sans-serif;
          margin: 10px 0; }
          header .desktopmenu .profil ul li a:hover {
            color: #F07E24;
            font-weight: 700; }
          header .desktopmenu .profil ul li a::after {
            display: none; }
  header .active1 {
    font-weight: 700;
    z-index: 1;
    position: relative; }
    header .active1::after {
      content: " ";
      height: 5px;
      width: 100%;
      background-color: #F07E24;
      position: absolute;
      z-index: -1;
      top: 30px;
      right: 0px; }
  header .active1bis {
    font-weight: 700;
    z-index: 1;
    position: relative; }
    header .active1bis::after {
      content: " ";
      height: 5px;
      width: 100%;
      background-color: #F9CE37;
      position: absolute;
      z-index: -1;
      top: 30px;
      right: 0px; }
  header .active1ter {
    font-weight: 700;
    z-index: 1;
    position: relative; }
    header .active1ter::after {
      content: " ";
      height: 5px;
      width: 100%;
      background-color: #3DB8BD;
      position: absolute;
      z-index: -1;
      top: 30px;
      right: 0px; }
  header .active2 {
    font-weight: 700;
    position: relative; }
    header .active2::after {
      content: " ";
      height: 40px;
      width: 20px;
      background-color: #F07E24;
      position: absolute;
      z-index: -1;
      top: -10px;
      right: -30px; }
  header .active3 {
    font-weight: 700;
    color: #F07E24; }
  header .mobilemenu {
    display: none; }
    header .mobilemenu button {
      background: none;
      border: none; }
    @media (max-width: 885px) {
      header .mobilemenu {
        display: block; } }
    header .mobilemenu #menuBurger {
      list-style: none;
      position: absolute;
      height: 100vh;
      background: white;
      right: -1000px;
      width: 60%;
      padding: 0 0 0 50px;
      top: 0;
      transition: all 0.2s ease-in-out;
      border-left: 1px solid lightgrey; }
      header .mobilemenu #menuBurger li {
        margin: 30px 0; }
        header .mobilemenu #menuBurger li a {
          color: #333333;
          font-size: 18px; }
      header .mobilemenu #menuBurger hr {
        width: 80%; }
      header .mobilemenu #menuBurger .fermer {
        color: #333333;
        font-family: 'Raleway', sans-serif;
        font-size: 18px;
        margin-top: 50px;
        margin-right: 30px;
        float: right; }
      header .mobilemenu #menuBurger .activeburger {
        font-weight: 700; }

.lien-jaune {
  font-weight: 700;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
  float: left;
  margin-bottom: 100px;
  padding: 20px 10px;
  box-sizing: border-box;
  border: 1px solid #F9CE37;
  color: #E8B70C;
  transition: all 0.2s linear;
  	/*	&::after{
  			content:" ";
  			height: 40px;
  			width: 20px;
  			background-color: $jaune;
  			position: absolute;
  			z-index: -1;
  			top: -10px;
  			left: -5px;
  			transition: all 0.2s ease-in-out;
  
  		}
  
  		&:hover{
  			&::after{
  			content:" ";
  			width: calc(100% + 15px);
  			}
  		}*/ }
  .lien-jaune:hover {
    background-color: #F9CE37;
    color: #333333; }
  @media (max-width: 650px) {
    .lien-jaune {
      float: none;
      background-color: #F9CE37;
      padding: 20px 0;
      display: block;
      text-align: center;
      letter-spacing: 5px;
      color: #333333; } }

.lien-bleu {
  font-weight: 700;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
  float: left;
  margin-bottom: 100px;
  padding: 20px 10px;
  box-sizing: border-box;
  border: 1px solid #3DB8BD;
  color: #3DB8BD;
  transition: all 0.2s linear;
  		/*&::after{
  			content:" ";
  			height: 40px;
  			width: 20px;
  			background-color: $bleu;
  			position: absolute;
  			z-index: -1;
  			top: -10px;
  			left: -5px;
  			transition: all 0.2s ease-in-out;
  
  		}
  
  		&:hover{
  			&::after{
  			content:" ";
  			width: calc(100% + 15px);
  			}
  		}*/ }
  .lien-bleu:hover {
    background-color: #3DB8BD;
    color: #333333; }
  @media (max-width: 650px) {
    .lien-bleu {
      float: none;
      background-color: #3DB8BD;
      padding: 20px 0;
      display: block;
      text-align: center;
      letter-spacing: 5px;
      color: #333333;
      			/*&::after{
      				display: none;
      
      			}*/ } }

.lien-orange {
  font-weight: 700;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
  float: left;
  margin-bottom: 100px;
  padding: 20px 20px;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #F07E24;
  color: #F07E24;
  transition: all 0.2s linear;
  		/*&::after{
  			content:" ";
  			height: 40px;
  			width: 20px;
  			background-color: $orange;
  			position: absolute;
  			z-index: -1;
  			top: -10px;
  			left: -5px;
  			transition: all 0.2s ease-in-out;
  
  		}
  
  		&:hover{
  			&::after{
  			content:" ";
  			width: calc(100% + 15px);
  			}
  		}*/ }
  .lien-orange:hover {
    background-color: #F07E24;
    color: #333333; }
  @media (max-width: 650px) {
    .lien-orange {
      float: none;
      background-color: #F07E24;
      padding: 20px 0;
      display: block;
      text-align: center;
      letter-spacing: 5px;
      color: #333333;
      			/*&::after{
      				display: none;
      
      			}*/ } }

main {
  max-width: 1220px;
  margin: 0 auto;
  min-height: 95vh; }
  @media (max-width: 1230px) {
    main {
      padding: 0 30px; } }
  main .ludus-section-1 {
    padding-top: 150px; }
    main .ludus-section-1 article {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center; }
      @media (max-width: 768px) {
        main .ludus-section-1 article {
          display: block; } }
      main .ludus-section-1 article div {
        max-width: calc((100% - 50px)/2); }
        @media (max-width: 768px) {
          main .ludus-section-1 article div {
            max-width: 100%; } }
        main .ludus-section-1 article div h1 {
          color: #F07E24;
          margin-bottom: 30px; }
          main .ludus-section-1 article div h1 span {
            color: white;
            -webkit-text-stroke: 2px #F07E24; }
        main .ludus-section-1 article div p {
          margin-bottom: 15px; }
        @media (max-width: 768px) {
          main .ludus-section-1 article div img {
            margin: 20px auto 30px; } }

.ludus-section-2 {
  clear: both;
  margin-bottom: 20px; }
  .ludus-section-2 h2 {
    color: #F9CE37;
    margin-bottom: 30px; }
    .ludus-section-2 h2 span {
      color: white;
      -webkit-text-stroke: 2px #F9CE37; }
  .ludus-section-2 p:nth-child(2) {
    width: 55%; }
    @media (max-width: 768px) {
      .ludus-section-2 p:nth-child(2) {
        width: 100%; } }
  .ludus-section-2 article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; }
    @media (max-width: 650px) {
      .ludus-section-2 article {
        display: block; } }
    .ludus-section-2 article div {
      background: white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 20px;
      border: 1px solid #EFF0F0;
      padding: 20px;
      margin: 50px 0;
      text-align: center;
      position: relative;
      transition: all 0.2s linear;
      width: 170px; }
      @media (max-width: 768px) {
        .ludus-section-2 article div {
          width: 70%;
          margin: 50px auto; } }
      .ludus-section-2 article div:hover {
        box-shadow: none; }
      .ludus-section-2 article div img {
        margin: 0 auto 20px; }
      .ludus-section-2 article div hr {
        margin: 15px 0;
        border: none;
        height: 1px;
        background-color: #cacaca; }
      .ludus-section-2 article div .ajouter {
        position: absolute;
        right: 20px;
        bottom: -5px; }

.ludus-section-3 {
  clear: both; }
  .ludus-section-3 article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 768px) {
      .ludus-section-3 article {
        display: block;
        margin-bottom: 30px; } }
    .ludus-section-3 article div {
      max-width: calc((100% - 50px)/2); }
      @media (max-width: 768px) {
        .ludus-section-3 article div {
          max-width: 100%; } }
      .ludus-section-3 article div h2 {
        color: #3DB8BD;
        margin-bottom: 30px; }
        .ludus-section-3 article div h2 span {
          color: white;
          -webkit-text-stroke: 2px #3DB8BD; }
      .ludus-section-3 article div p {
        margin-bottom: 15px; }
      @media (max-width: 768px) {
        .ludus-section-3 article div img {
          margin: 30px auto 0; } }

.ludus-section-4 {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px; }
  @media (max-width: 768px) {
    .ludus-section-4 {
      display: block; } }
  .ludus-section-4 article {
    width: calc((100% - 100px)/2); }
    @media (max-width: 768px) {
      .ludus-section-4 article {
        width: 100%; } }
    .ludus-section-4 article h2 {
      color: #3DBC98;
      margin-bottom: 30px; }
      .ludus-section-4 article h2 span {
        color: white;
        -webkit-text-stroke: 2px #3DBC98; }
  .ludus-section-4 article:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media (max-width: 768px) {
      .ludus-section-4 article:nth-child(2) {
        margin-top: 30px; } }
    @media (max-width: 510px) {
      .ludus-section-4 article:nth-child(2) {
        display: block; } }
    .ludus-section-4 article:nth-child(2) div {
      width: calc((100% - 50px)/2);
      margin: 50px 0 0 0;
      text-align: center; }
      @media (max-width: 510px) {
        .ludus-section-4 article:nth-child(2) div {
          margin: 50px auto 0; } }
      .ludus-section-4 article:nth-child(2) div img {
        margin: 0 auto 20px; }
      .ludus-section-4 article:nth-child(2) div p {
        font-weight: 700; }

.ludus-section-5 article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 768px) {
    .ludus-section-5 article {
      display: block; } }
  .ludus-section-5 article div {
    max-width: calc((100% - 50px)/2); }
    @media (max-width: 768px) {
      .ludus-section-5 article div {
        max-width: 100%; } }
    .ludus-section-5 article div h2 {
      color: #F07E24;
      margin-bottom: 30px; }
      .ludus-section-5 article div h2 span {
        color: white;
        -webkit-text-stroke: 2px #F07E24; }
    @media (max-width: 768px) {
      .ludus-section-5 article div img {
        margin: 30px auto 0; } }
  .ludus-section-5 article div:nth-child(2) {
    margin: 0 auto 50px; }

.ludus-section-6 {
  clear: both;
  margin-bottom: 50px; }
  @media (max-width: 1120px) {
    .ludus-section-6 {
      display: flex;
      align-items: center; } }
  @media (max-width: 768px) {
    .ludus-section-6 {
      display: block; } }
  .ludus-section-6 h2 {
    color: #3DB8BD;
    margin-bottom: 30px;
    float: left;
    margin-right: 150px; }
    @media (max-width: 1120px) {
      .ludus-section-6 h2 {
        margin-bottom: 0px; } }
    @media (max-width: 768px) {
      .ludus-section-6 h2 {
        margin-bottom: 30px; } }
    .ludus-section-6 h2 span {
      color: white;
      -webkit-text-stroke: 2px #3DB8BD; }
  .ludus-section-6 article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media (max-width: 768px) {
      .ludus-section-6 article {
        width: 100%; } }
    @media (max-width: 510px) {
      .ludus-section-6 article {
        display: block; } }
    .ludus-section-6 article div {
      width: calc(100%/4);
      margin: 0 0 20px 0;
      text-align: center; }
      @media (max-width: 1120px) {
        .ludus-section-6 article div {
          width: calc(100%/2); } }
      @media (max-width: 510px) {
        .ludus-section-6 article div {
          margin: 50px auto 0; } }
      .ludus-section-6 article div img {
        margin: 0 auto 20px; }
      .ludus-section-6 article div p {
        font-weight: 700; }

a:hover {
  cursor: pointer; }

.scenario-section-1 {
  padding: 150px 0 50px; }
  .scenario-section-1 h1 {
    color: #F9CE37;
    margin-bottom: 30px; }
    .scenario-section-1 h1 span {
      color: white;
      -webkit-text-stroke: 2px #F9CE37; }
  .scenario-section-1 .desktopfilter fieldset {
    border: none;
    border-bottom: 0.5px solid black;
    float: left;
    width: 85%;
    margin-bottom: 30px; }
    .scenario-section-1 .desktopfilter fieldset legend {
      float: left;
      font-size: 24px;
      font-weight: 700;
      font-family: 'Raleway', sans-serif;
      margin-right: 30px;
      margin-top: 10px; }
      @media (max-width: 1230px) {
        .scenario-section-1 .desktopfilter fieldset legend {
          margin-right: 50px; } }
    .scenario-section-1 .desktopfilter fieldset select {
      background: white;
      border: none;
      -webkit-background: white;
      -webkit-border: none;
      font-family: 'Raleway', sans-serif;
      font-size: 16px;
      margin: 15px 30px; }
      @media (max-width: 1230px) {
        .scenario-section-1 .desktopfilter fieldset select {
          margin: 15px; } }
  .scenario-section-1 .desktopfilter input[type=submit] {
    width: 113px;
    background: #333333;
    color: white;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    border: none;
    padding: 10px 0;
    float: right;
    margin-top: 10px;
    font-size: 16px; }
  @media (max-width: 1230px) {
    .scenario-section-1 .desktopfilter {
      display: none; } }
  .scenario-section-1 article {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    clear: both; }
    .scenario-section-1 article div {
      background: white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 20px;
      border: 1px solid #EFF0F0;
      padding: 20px;
      margin: 20px;
      text-align: center;
      position: relative;
      transition: all 0.2s linear;
      width: calc(200px - 40px); }
      .scenario-section-1 article div:hover {
        box-shadow: none; }
      .scenario-section-1 article div img {
        margin: 0 auto 20px; }
      .scenario-section-1 article div hr {
        margin: 15px 0;
        border: none;
        height: 1px;
        background-color: #cacaca; }
      .scenario-section-1 article div .ajouter {
        position: absolute;
        right: 20px;
        bottom: -5px; }
      @media (max-width: 768px) {
        .scenario-section-1 article div {
          width: calc((100% - 20px) / 3); } }
      @media (max-width: 650px) {
        .scenario-section-1 article div {
          width: 100%; } }
  .scenario-section-1 #mobilefilter {
    display: none; }
  .scenario-section-1 .filtrer {
    display: none; }
  @media (max-width: 1230px) {
    .scenario-section-1 #mobilefilter {
      background: white;
      position: absolute;
      z-index: 10000000;
      top: 100px;
      min-height: 80vh;
      width: 100%;
      display: none; }
      .scenario-section-1 #mobilefilter fieldset {
        border: none; }
        .scenario-section-1 #mobilefilter fieldset legend {
          font-size: 18px;
          font-weight: 700;
          font-family: 'Raleway', sans-serif; }
        .scenario-section-1 #mobilefilter fieldset select {
          display: block;
          width: 80%;
          margin-top: 20px;
          background: none;
          border: none;
          border-bottom: 1px solid black;
          padding: 5px 0; }
      .scenario-section-1 #mobilefilter input[type=submit] {
        width: 113px;
        background: #333333;
        color: white;
        font-weight: 700;
        font-family: 'Raleway', sans-serif;
        border: none;
        padding: 10px 0;
        margin-top: 20px;
        font-size: 16px; }
      .scenario-section-1 #mobilefilter .fermer {
        float: right;
        background: none;
        border: none;
        margin-right: 100px; }
    .scenario-section-1 .filtrer {
      width: 113px;
      background: #333333;
      color: white;
      font-weight: 700;
      font-family: 'Raleway', sans-serif;
      border: none;
      padding: 10px 0;
      font-size: 16px;
      margin-bottom: 20px;
      float: right;
      display: block; } }
  @media (max-width: 650px) {
    .scenario-section-1 #mobilefilter fieldset select {
      width: 90%; }
    .scenario-section-1 #mobilefilter input[type=submit] {
      margin-top: 30px; }
    .scenario-section-1 #mobilefilter .fermer {
      margin-right: 50px; } }

.le-scenario-section-1 article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px; }
  @media (max-width: 1024px) {
    .le-scenario-section-1 article {
      display: block; } }
  .le-scenario-section-1 article .separateur {
    max-width: calc((100% - 30px)/2);
    clear: both; }
    @media (max-width: 1024px) {
      .le-scenario-section-1 article .separateur {
        max-width: 100%; } }
    @media (max-width: 1024px) {
      .le-scenario-section-1 article .separateur div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; } }
    .le-scenario-section-1 article .separateur div img {
      float: left;
      margin-right: 20px;
      margin-top: 30px; }
      @media (max-width: 1024px) {
        .le-scenario-section-1 article .separateur div img {
          float: none; } }
    .le-scenario-section-1 article .separateur .couverture {
      margin: 30px auto 0; }
      @media (max-width: 650px) {
        .le-scenario-section-1 article .separateur .couverture {
          margin-bottom: 30px; } }
  .le-scenario-section-1 article h1 {
    color: #F9CE37;
    margin-bottom: 10px; }
    .le-scenario-section-1 article h1 span {
      color: white;
      -webkit-text-stroke: 2px #F9CE37; }
.le-scenario-section-1 .prix {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px; }
.le-scenario-section-1 a {
  clear: both; }

.ariane {
  padding-top: 150px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 30px; }
  .ariane a {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5); }

.le-scenario-section-2 {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0px;
  align-items: center;
  position: relative;
  margin-bottom: 30px; }
  @media (max-width: 768px) {
    .le-scenario-section-2 {
      display: block; } }
  .le-scenario-section-2 article {
    max-width: calc((100% - 30px) / 2); }
    @media (max-width: 768px) {
      .le-scenario-section-2 article {
        max-width: 100%; } }
    .le-scenario-section-2 article h2 {
      color: #F9CE37;
      margin-bottom: 30px; }
      .le-scenario-section-2 article h2 span {
        color: white;
        -webkit-text-stroke: 2px #F9CE37; }
    .le-scenario-section-2 article h3 {
      margin-bottom: 10px; }
    .le-scenario-section-2 article p {
      margin: 10px 0; }
  .le-scenario-section-2 article:nth-child(2) {
    margin: 0 auto; }
    @media (max-width: 768px) {
      .le-scenario-section-2 article:nth-child(2) {
        margin: 20px auto 0; } }
    @media (max-width: 650px) {
      .le-scenario-section-2 article:nth-child(2) {
        margin-bottom: 30px; } }

.le-scenario-section-3 {
  margin-bottom: 100px; }
  .le-scenario-section-3 h2 {
    color: #3DB8BD;
    margin-bottom: 30px; }
    .le-scenario-section-3 h2 span {
      color: white;
      -webkit-text-stroke: 2px #3DB8BD; }
  .le-scenario-section-3 article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; }
    @media (max-width: 1024px) {
      .le-scenario-section-3 article {
        justify-content: center; } }
    .le-scenario-section-3 article img {
      margin-bottom: 20px;
      width: 330px; }
      @media (max-width: 1024px) {
        .le-scenario-section-3 article img {
          margin: 0 20px 20px; } }
      @media (max-width: 768px) {
        .le-scenario-section-3 article img {
          margin: 0 10px 20px; } }
    .le-scenario-section-3 article div {
      width: 330px;
      text-align: center; }
      .le-scenario-section-3 article div a {
        font-size: 38px;
        font-weight: 700;
        width: inherit;
        padding: 30px 0;
        display: block;
        color: #3DB8BD;
        transition: all 0.2s ease-in-out; }
        .le-scenario-section-3 article div a:hover {
          opacity: 0.6; }

.temoignages-section-1 {
  padding-top: 150px; }

.temoignages-section-2 article .owl-carousel {
  display: flex;
  width: 100%;
  overflow: scroll; }
  .temoignages-section-2 article .owl-carousel::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    /* make scrollbar transparent */ }
  .temoignages-section-2 article .owl-carousel div .temoin {
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: 1px solid #EFF0F0;
    padding: 20px;
    margin: 50px 20px 100px;
    position: relative;
    transition: all 0.2s linear;
    width: 275px; }
    @media (max-width: 550px) {
      .temoignages-section-2 article .owl-carousel div .temoin {
        margin: 50px 10px 100px; } }
    .temoignages-section-2 article .owl-carousel div .temoin p {
      font-size: 16px;
      padding: 5px 20px; }
    .temoignages-section-2 article .owl-carousel div .temoin p:nth-child(4) {
      color: lightgrey; }
    .temoignages-section-2 article .owl-carousel div .temoin img {
      margin: 0 auto 20px;
      width: 50%; }

.temoignages-section-3 {
  padding-bottom: 50px; }
  .temoignages-section-3 h2 {
    color: #3DB8BD;
    margin-bottom: 20px; }
    .temoignages-section-3 h2 span {
      color: white;
      -webkit-text-stroke: 2px #3DB8BD; }
  .temoignages-section-3 form div {
    float: left;
    width: 425px;
    margin-right: 100px; }
    @media (max-width: 1110px) {
      .temoignages-section-3 form div {
        margin-right: 30px; } }
    @media (max-width: 970px) {
      .temoignages-section-3 form div {
        float: none;
        width: 100%; } }
  .temoignages-section-3 form select {
    width: 50px;
    height: 50px;
    border: 1px solid black; }
    .temoignages-section-3 form select option {
      text-align: center; }
  .temoignages-section-3 form #scenario {
    display: block;
    width: 425px;
    height: 50px;
    border: 1px solid black;
    box-sizing: border-box;
    padding-left: 20px; }
    @media (max-width: 970px) {
      .temoignages-section-3 form #scenario {
        width: 100%; } }
  .temoignages-section-3 form label {
    display: block;
    margin: 30px 0 10px 0; }
  .temoignages-section-3 form input[type=text], .temoignages-section-3 form input[type=email], .temoignages-section-3 form input[type=number] {
    display: block;
    width: 425px;
    height: 50px;
    border: 1px solid black;
    box-sizing: border-box;
    padding-left: 20px; }
    @media (max-width: 970px) {
      .temoignages-section-3 form input[type=text], .temoignages-section-3 form input[type=email], .temoignages-section-3 form input[type=number] {
        width: 100%; } }
  .temoignages-section-3 form p {
    margin-top: 30px;
    margin-bottom: 10px; }
  .temoignages-section-3 form textarea {
    width: calc(425px - 40px);
    resize: none;
    border: 1px solid black;
    padding: 20px;
    height: 160px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    width: 425px; }
    @media (max-width: 970px) {
      .temoignages-section-3 form textarea {
        width: 100%; } }
  .temoignages-section-3 form input[type=submit] {
    display: block;
    width: 425px;
    border: none;
    background-color: #F07E24;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    margin: 30px auto 0;
    font-size: 16px;
    transition: 0.2s all linear;
    border: 1px solid #F07E24;
    color: #333333; }
    @media (max-width: 970px) {
      .temoignages-section-3 form input[type=submit] {
        width: 100%; } }
    .temoignages-section-3 form input[type=submit]:hover {
      border: 1px solid #F07E24;
      background: white;
      box-sizing: border-box;
      color: #F07E24; }

.clear {
  clear: both; }

footer {
  clear: both; }

.panier-section-1 {
  padding-top: 150px;
  color: #333333;
  margin-bottom: 100px; }
  .panier-section-1 h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 15px; }
  .panier-section-1 article {
    float: left; }
    @media (max-width: 1065px) {
      .panier-section-1 article {
        float: none;
        display: block; } }
    .panier-section-1 article div h2 {
      font-size: 24px;
      font-weight: 700;
      font-family: 'Raleway', sans-serif; }
      @media (max-width: 1065px) {
        .panier-section-1 article div h2 {
          width: 100%; } }
    .panier-section-1 article div div {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center;
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      margin: 10px 0 50px;
      padding: 30px 0; }
      .panier-section-1 article div div button {
        background: none;
        border: none; }
        @media (max-width: 550px) {
          .panier-section-1 article div div button {
            margin: 30px auto 0;
            display: block; } }
    .panier-section-1 article a img {
      width: 90px;
      height: 90px; }
  .panier-section-1 article:nth-child(2) {
    width: 70%;
    margin-right: 50px; }
    @media (max-width: 550px) {
      .panier-section-1 article:nth-child(2) div {
        display: block; } }
    @media (max-width: 550px) {
      .panier-section-1 article:nth-child(2) div p {
        width: 100%;
        text-align: center;
        margin: 10px 0; } }
    @media (max-width: 550px) {
      .panier-section-1 article:nth-child(2) div img {
        margin: 0 auto; } }
    @media (max-width: 1065px) {
      .panier-section-1 article:nth-child(2) {
        width: 100%;
        margin-right: 0; } }
  .panier-section-1 article:nth-child(3) {
    width: 25%; }
    @media (max-width: 1065px) {
      .panier-section-1 article:nth-child(3) {
        width: 100%; } }
  .panier-section-1 ul {
    list-style: none;
    font-family: 'Raleway', sans-serif;
    font-size: 18px; }
    .panier-section-1 ul li {
      margin: 7px 0; }
  .panier-section-1 ul:nth-child(1) {
    font-weight: 700; }
  .panier-section-1 .vider {
    width: 35%;
    border: 1px solid black;
    box-sizing: border-box;
    display: block;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    float: left;
    transition: all 0.2s linear; }
    .panier-section-1 .vider:hover {
      background-color: black;
      color: white; }
    @media (max-width: 1065px) {
      .panier-section-1 .vider {
        width: calc(50% - 30px); } }
    @media (max-width: 550px) {
      .panier-section-1 .vider {
        width: 100%;
        margin: 10px 0; } }
  .panier-section-1 .continuer {
    width: 45%;
    border: 1px solid #F07E24;
    box-sizing: border-box;
    display: block;
    float: left;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #F07E24;
    margin-left: 30px;
    transition: all 0.2s linear; }
    .panier-section-1 .continuer:hover {
      background-color: #F07E24;
      color: white; }
    @media (max-width: 1065px) {
      .panier-section-1 .continuer {
        width: calc(50% - 30px);
        margin-bottom: 30px; } }
    @media (max-width: 550px) {
      .panier-section-1 .continuer {
        width: 100%;
        margin: 10px 0 50px;
        background: #F07E24;
        color: #333333; } }
  .panier-section-1 .finaliser {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #333333;
    background-color: #F07E24;
    display: block;
    margin: 0 auto;
    sborder: 1px solid #F07E24;
    transition: all 0.2s linear;
    box-sizing: border-box;
    border: 1px solid #F07E24; }
    .panier-section-1 .finaliser:hover {
      background-color: white;
      color: #F07E24;
      border: 1px solid #F07E24; }
    @media (max-width: 550px) {
      .panier-section-1 .finaliser {
        color: #333333; } }

.paiement-1-section-1 h1 {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 15px; }
.paiement-1-section-1 nav {
  width: 800px;
  border-bottom: 1px solid black;
  margin-top: 50px; }
  @media (max-width: 820px) {
    .paiement-1-section-1 nav {
      width: 100%; } }
  .paiement-1-section-1 nav ul {
    list-style: none;
    font-weight: 700; }
    .paiement-1-section-1 nav ul li {
      display: inline-block;
      margin-right: 50px;
      margin-bottom: 20px; }
      @media (max-width: 570px) {
        .paiement-1-section-1 nav ul li {
          margin-right: 20px; } }
      @media (max-width: 414px) {
        .paiement-1-section-1 nav ul li {
          margin-right: 10px; } }
      .paiement-1-section-1 nav ul li a {
        color: rgba(0, 0, 0, 0.1);
        transition: all 0.2s linear; }
      .paiement-1-section-1 nav ul li .activepay {
        color: black; }
.paiement-1-section-1 form {
  margin: 50px 0; }
  .paiement-1-section-1 form div {
    float: left;
    width: 425px;
    margin-right: 100px; }
    @media (max-width: 1110px) {
      .paiement-1-section-1 form div {
        width: 100%;
        margin-right: 0; } }
    .paiement-1-section-1 form div input[type=text], .paiement-1-section-1 form div input[type=tel], .paiement-1-section-1 form div input[type=email] {
      width: calc(100% - 20px);
      height: 50px;
      border: 1px solid black;
      display: block;
      padding-left: 20px;
      margin: 10px 0 30px 0;
      font-family: 'Raleway', sans-serif;
      font-size: 16px; }
    .paiement-1-section-1 form div input[type=checkbox] {
      margin-right: 10px;
      margin-top: 20px; }
  .paiement-1-section-1 form .continuer {
    width: 310px;
    border: 1px solid #F07E24;
    float: left;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #333333;
    margin: 20px 50px;
    background-color: #F07E24;
    transition: all 0.2s linear; }
    @media (max-width: 768px) {
      .paiement-1-section-1 form .continuer {
        margin: 20px auto;
        width: 100%; } }
    .paiement-1-section-1 form .continuer:hover {
      background-color: white;
      color: #F07E24; }
  .paiement-1-section-1 form .retour {
    width: 310px;
    border: 1px solid #F07E24;
    display: block;
    float: left;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #F07E24;
    margin: 20px 100px;
    transition: all 0.2s linear; }
    @media (max-width: 768px) {
      .paiement-1-section-1 form .retour {
        margin: 50px auto 0;
        width: 100%; } }
    .paiement-1-section-1 form .retour:hover {
      background-color: #F07E24;
      color: white; }

.paiement-2-section-1 h1 {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 15px; }
.paiement-2-section-1 nav {
  width: 800px;
  border-bottom: 1px solid black;
  margin-top: 50px; }
  @media (max-width: 820px) {
    .paiement-2-section-1 nav {
      width: 100%; } }
  .paiement-2-section-1 nav ul {
    list-style: none;
    font-weight: 700; }
    .paiement-2-section-1 nav ul li {
      display: inline-block;
      margin-right: 50px;
      margin-bottom: 20px; }
      @media (max-width: 570px) {
        .paiement-2-section-1 nav ul li {
          margin-right: 20px; } }
      @media (max-width: 414px) {
        .paiement-2-section-1 nav ul li {
          margin-right: 10px; } }
      .paiement-2-section-1 nav ul li a {
        color: rgba(0, 0, 0, 0.1);
        transition: all 0.2s linear; }
        .paiement-2-section-1 nav ul li a:hover {
          color: black; }
      .paiement-2-section-1 nav ul li .activepay {
        color: black; }
.paiement-2-section-1 form {
  margin: 50px 0; }
  .paiement-2-section-1 form div {
    float: left;
    width: 425px;
    margin-right: 100px; }
    @media (max-width: 1110px) {
      .paiement-2-section-1 form div {
        width: 100%;
        margin-right: 0; } }
    .paiement-2-section-1 form div label {
      display: block; }
    .paiement-2-section-1 form div .enregistrer {
      display: inline-block; }
    .paiement-2-section-1 form div input[type=text], .paiement-2-section-1 form div input[type=number] {
      width: calc(100% - 20px);
      height: 50px;
      border: 1px solid black;
      display: block;
      padding-left: 20px;
      margin: 10px 0 30px 0;
      font-family: 'Raleway', sans-serif;
      font-size: 16px; }
    .paiement-2-section-1 form div input[type=checkbox] {
      margin-right: 10px;
      margin-top: 20px; }
    .paiement-2-section-1 form div input[type=radio] {
      margin-left: 5px;
      margin-bottom: 30px; }
  .paiement-2-section-1 form img {
    display: inline-block;
    margin: 20px 0px 0px 10px; }
  .paiement-2-section-1 form .continuer {
    width: 310px;
    border: 1px solid #F07E24;
    float: left;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #333333;
    margin: 20px 50px;
    background-color: #F07E24;
    transition: all 0.2s linear; }
    @media (max-width: 768px) {
      .paiement-2-section-1 form .continuer {
        margin: 20px auto;
        width: 100%; } }
    .paiement-2-section-1 form .continuer:hover {
      background-color: white;
      color: #F07E24; }
  .paiement-2-section-1 form .retour {
    width: 310px;
    border: 1px solid #F07E24;
    display: block;
    float: left;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #F07E24;
    margin: 20px 100px;
    transition: all 0.2s linear; }
    @media (max-width: 768px) {
      .paiement-2-section-1 form .retour {
        margin: 50px auto 0;
        width: 100%; } }
    .paiement-2-section-1 form .retour:hover {
      background-color: #F07E24;
      color: white; }

.paiement-3-section-1 h1 {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 15px; }
.paiement-3-section-1 nav {
  width: 800px;
  border-bottom: 1px solid black;
  margin-top: 50px; }
  @media (max-width: 820px) {
    .paiement-3-section-1 nav {
      width: 100%; } }
  .paiement-3-section-1 nav ul {
    list-style: none;
    font-weight: 700; }
    .paiement-3-section-1 nav ul li {
      display: inline-block;
      margin-right: 50px;
      margin-bottom: 20px; }
      @media (max-width: 570px) {
        .paiement-3-section-1 nav ul li {
          margin-right: 20px; } }
      @media (max-width: 414px) {
        .paiement-3-section-1 nav ul li {
          margin-right: 10px; } }
      .paiement-3-section-1 nav ul li a {
        color: rgba(0, 0, 0, 0.1);
        transition: all 0.2s linear; }
        .paiement-3-section-1 nav ul li a:hover {
          color: black; }
      .paiement-3-section-1 nav ul li .activepay {
        color: black; }
.paiement-3-section-1 .remerciement {
  width: 100%;
  text-align: center;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .paiement-3-section-1 .remerciement span {
    color: #27AE60; }
.paiement-3-section-1 .boutonretour {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 50px; }
  .paiement-3-section-1 .boutonretour .continuer {
    width: 310px;
    border: 1px solid #F07E24;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #333333;
    margin: 20px 50px;
    background-color: #F07E24;
    transition: all 0.2s linear; }
    @media (max-width: 768px) {
      .paiement-3-section-1 .boutonretour .continuer {
        margin: 20px auto;
        width: 100%; } }
    .paiement-3-section-1 .boutonretour .continuer:hover {
      background-color: white;
      color: #F07E24; }
  .paiement-3-section-1 .boutonretour .retour {
    width: 310px;
    border: 1px solid #F07E24;
    display: block;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    color: #F07E24;
    margin: 20px 0px;
    transition: all 0.2s linear; }
    @media (max-width: 768px) {
      .paiement-3-section-1 .boutonretour .retour {
        margin: 50px auto 0;
        width: 100%; } }
    .paiement-3-section-1 .boutonretour .retour:hover {
      background-color: #F07E24;
      color: white; }

.contact-et-idee {
  padding-bottom: 50px; }
  .contact-et-idee h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 15px; }
  .contact-et-idee form div {
    float: left;
    width: 425px;
    margin-right: 100px;
    			 /*
    			a:nth-child(1){
    				background: white;
    
    				@media(max-width: 970px){
    					margin-top: 20px;
    					text-align: left;
    				}
    			}*/ }
    @media (max-width: 1120px) {
      .contact-et-idee form div {
        margin-right: 50px; } }
    @media (max-width: 1010px) {
      .contact-et-idee form div {
        margin-right: 30px; } }
    @media (max-width: 970px) {
      .contact-et-idee form div {
        margin-right: 0px;
        float: none;
        width: 100%; } }
    .contact-et-idee form div select {
      width: 50px;
      height: 50px;
      border: 1px solid black; }
      .contact-et-idee form div select option {
        text-align: center; }
    .contact-et-idee form div label {
      display: block;
      margin: 30px 0 10px 0; }
    .contact-et-idee form div input[type=text], .contact-et-idee form div input[type=email] {
      display: block;
      width: 425px;
      height: 50px;
      border: 1px solid black;
      box-sizing: border-box;
      padding-left: 20px; }
      @media (max-width: 970px) {
        .contact-et-idee form div input[type=text], .contact-et-idee form div input[type=email] {
          width: 100%; } }
    .contact-et-idee form div p {
      margin-top: 30px;
      margin-bottom: 10px; }
    .contact-et-idee form div textarea {
      width: 100%;
      resize: none;
      border: 1px solid black;
      padding: 20px;
      height: 250px;
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      box-sizing: border-box; }
      @media (max-width: 970px) {
        .contact-et-idee form div textarea {
          display: block; } }
    .contact-et-idee form div a {
      display: block;
      width: 100%;
      border: none;
      background-color: #F07E24;
      color: #333333;
      text-align: center;
      padding: 15px 0;
      font-weight: 700;
      margin: 50px auto 0;
      font-size: 16px;
      transition: 0.2s all linear;
      border: 1px solid #F07E24;
      box-sizing: border-box; }
      @media (max-width: 970px) {
        .contact-et-idee form div a {
          width: 100%;
          margin: 30px 0; } }
      .contact-et-idee form div a:hover {
        background-color: white;
        color: #F07E24; }
  .contact-et-idee .remerciement {
    width: 100%;
    text-align: center;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center; }
    .contact-et-idee .remerciement span {
      color: #27AE60; }
  .contact-et-idee .boutonretour {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 50px; }
    .contact-et-idee .boutonretour .continuer {
      width: 310px;
      border: 1px solid #F07E24;
      text-align: center;
      padding: 15px 0;
      font-weight: 700;
      color: #333333;
      margin: 20px 50px;
      background-color: #F07E24;
      transition: all 0.2s linear; }
      @media (max-width: 768px) {
        .contact-et-idee .boutonretour .continuer {
          margin: 20px auto;
          width: 100%; } }
      .contact-et-idee .boutonretour .continuer:hover {
        background-color: white;
        color: #F07E24; }
    .contact-et-idee .boutonretour .retour {
      width: 310px;
      border: 1px solid #F07E24;
      display: block;
      text-align: center;
      padding: 15px 0;
      font-weight: 700;
      color: #F07E24;
      margin: 20px 0px;
      transition: all 0.2s linear; }
      @media (max-width: 768px) {
        .contact-et-idee .boutonretour .retour {
          margin: 20px auto;
          width: 100%; } }
      .contact-et-idee .boutonretour .retour:hover {
        background-color: #F07E24;
        color: white; }

.connexion-section-1 {
  padding-top: 150px;
  color: #333333;
  margin-bottom: 50px; }
  .connexion-section-1 h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 15px; }
  .connexion-section-1 h2 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase; }
  .connexion-section-1 article {
    width: 50%;
    float: left; }
    @media (max-width: 1000px) {
      .connexion-section-1 article {
        float: none;
        width: 100%; } }
    .connexion-section-1 article form input[type=email], .connexion-section-1 article form input[type=password] {
      display: block;
      width: 425px;
      height: 50px;
      border: 1px solid black;
      margin: 10px 0 30px 0; }
      @media (max-width: 1000px) {
        .connexion-section-1 article form input[type=email], .connexion-section-1 article form input[type=password] {
          width: 100%; } }
    .connexion-section-1 article form input[type=checkbox] {
      margin-right: 10px; }
    .connexion-section-1 article a {
      display: block;
      text-align: center;
      width: 425px; }
    .connexion-section-1 article .connect {
      padding: 20px 0;
      color: white;
      background: #333333;
      text-transform: uppercase;
      border: 1px solid #333333;
      box-sizing: border-box;
      margin-bottom: 20px;
      margin-top: 30px;
      font-weight: 700;
      transition: all 0.2s linear; }
      @media (max-width: 1000px) {
        .connexion-section-1 article .connect {
          margin: 30px auto; } }
      @media (max-width: 768px) {
        .connexion-section-1 article .connect {
          width: 100%; } }
      .connexion-section-1 article .connect:hover {
        color: #333333;
        background: white; }
    .connexion-section-1 article .lienconnectbis1 {
      text-decoration: underline;
      font-size: 16px; }
      @media (max-width: 1000px) {
        .connexion-section-1 article .lienconnectbis1 {
          width: 100%;
          text-align: center; } }
    .connexion-section-1 article .lienconnectbis2 {
      text-decoration: underline;
      font-size: 16px;
      margin: 0 auto; }
      @media (max-width: 1000px) {
        .connexion-section-1 article .lienconnectbis2 {
          width: 100%;
          text-align: center; } }
    .connexion-section-1 article .creer {
      padding: 20px 0;
      color: #F07E24;
      background: white;
      text-transform: uppercase;
      border: 1px solid #F07E24;
      box-sizing: border-box;
      margin: 215px auto 20px;
      font-weight: 700;
      transition: all 0.2s linear; }
      @media (max-width: 1000px) {
        .connexion-section-1 article .creer {
          margin: 50px auto 30px; } }
      @media (max-width: 768px) {
        .connexion-section-1 article .creer {
          width: 100%; } }
      .connexion-section-1 article .creer:hover {
        color: white;
        background: #F07E24; }
  .connexion-section-1 .nouveauclient {
    border-left: 1px solid black;
    box-sizing: border-box;
    padding-left: 180px; }
    @media (max-width: 1230px) {
      .connexion-section-1 .nouveauclient {
        padding-left: 100px; } }
    @media (max-width: 1100px) {
      .connexion-section-1 .nouveauclient {
        padding-left: 50px; } }
    @media (max-width: 1000px) {
      .connexion-section-1 .nouveauclient {
        padding: 0;
        border: none;
        margin-top: 50px; } }
    @media (max-width: 768px) {
      .connexion-section-1 .nouveauclient {
        width: 100%; } }

.mes-jeux-section-1 {
  margin-bottom: 50px; }
  .mes-jeux-section-1 h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 15px; }
  .mes-jeux-section-1 .lien-orange-compte {
    font-weight: 700;
    letter-spacing: 7px;
    z-index: 1;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #F07E24;
    padding: 10px;
    color: #F07E24;
    transition: all 0.2s linear;
    		/*&::after{
    			content:" ";
    			height: 40px;
    			width: 20px;
    			background-color: $orange;
    			position: absolute;
    			z-index: -1;
    			top: -10px;
    			right: -5px;
    			transition: all 0.2s ease-in-out;
    
    		}
    
    		&:hover{
    			&::after{
    			content:" ";
    			width: calc(100% + 15px);
    			}
    		}*/ }
    @media (max-width: 885px) {
      .mes-jeux-section-1 .lien-orange-compte {
        display: block;
        width: 100%;
        text-align: center;
        margin: 30px 0 0;
        background: #F07E24;
        color: #333333; } }
    .mes-jeux-section-1 .lien-orange-compte:hover {
      background-color: #F07E24;
      color: #333333; }
  .mes-jeux-section-1 article {
    border-bottom: 1px solid black;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 30px;
    padding-top: 30px;
    box-sizing: border-box; }
    @media (max-width: 885px) {
      .mes-jeux-section-1 article {
        display: block; } }
    .mes-jeux-section-1 article p {
      margin: 0 120px; }
      @media (max-width: 1230px) {
        .mes-jeux-section-1 article p {
          margin: 0 100px; } }
      @media (max-width: 1170px) {
        .mes-jeux-section-1 article p {
          margin: 0 80px; } }
      @media (max-width: 1090px) {
        .mes-jeux-section-1 article p {
          margin: 0 50px; } }
      @media (max-width: 965px) {
        .mes-jeux-section-1 article p {
          margin: 0 30px; } }
      @media (max-width: 885px) {
        .mes-jeux-section-1 article p {
          width: 100%;
          text-align: center;
          margin: 20px 0; } }
    .mes-jeux-section-1 article a img {
      width: 90px;
      height: 90px; }
      @media (max-width: 885px) {
        .mes-jeux-section-1 article a img {
          margin: 20px auto; } }

.profil-section-1 h1 {
  font-size: 24px;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 15px;
  margin-bottom: 50px; }
.profil-section-1 h2 {
  font-size: 18px;
  color: #F07E24;
  font-weight: 700;
  font-family: 'Raleway', sans-serif; }
.profil-section-1 .lien-orange-compte {
  font-weight: 700;
  letter-spacing: 7px;
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: -20px;
  border: 1px solid #F07E24;
  text-align: center;
  padding: 10px;
  color: #F07E24;
  transition: all 0.2s linear;
  		/*&::after{
  			content:" ";
  			height: 40px;
  			width: 20px;
  			background-color: $orange;
  			position: absolute;
  			z-index: -1;
  			top: -10px;
  			right: -5px;
  			transition: all 0.2s ease-in-out;
  
  		}
  
  		&:hover{
  			&::after{
  			content:" ";
  			width: calc(100% + 15px);
  			}
  		}*/ }
  @media (max-width: 1230px) {
    .profil-section-1 .lien-orange-compte {
      position: relative;
      bottom: 0;
      margin-top: 30px;
      display: block;
      width: 200px; } }
  @media (max-width: 768px) {
    .profil-section-1 .lien-orange-compte {
      width: 90%;
      text-align: center;
      margin: auto;
      background: #F07E24;
      color: #333333; } }
  .profil-section-1 .lien-orange-compte:hover {
    background: #F07E24;
    color: #333333; }
.profil-section-1 article {
  width: 70%;
  padding-bottom: 50px;
  margin-bottom: 100px;
  position: relative; }
  @media (max-width: 1230px) {
    .profil-section-1 article {
      width: 100%; } }
.profil-section-1 article:nth-child(3) {
  display: flex;
  flex-wrap: wrap;
  margin: 0; }
  @media (max-width: 1230px) {
    .profil-section-1 article:nth-child(3) {
      display: block; } }
  @media (max-width: 768px) {
    .profil-section-1 article:nth-child(3) {
      width: 100%; } }
  .profil-section-1 article:nth-child(3) div {
    width: 50%;
    position: relative; }
    @media (max-width: 768px) {
      .profil-section-1 article:nth-child(3) div {
        width: 100%; } }
    .profil-section-1 article:nth-child(3) div p {
      margin-bottom: 20px; }
  .profil-section-1 article:nth-child(3) div:nth-child(1) {
    padding-left: 100px;
    width: calc(50% - 100px); }
    @media (max-width: 1230px) {
      .profil-section-1 article:nth-child(3) div:nth-child(1) {
        padding-left: 0px;
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px; } }
.profil-section-1 article:nth-child(4) {
  width: 50%; }
  @media (max-width: 1230px) {
    .profil-section-1 article:nth-child(4) {
      width: 100%; } }
  .profil-section-1 article:nth-child(4) form input {
    margin: 20px 10px;
    background: none;
    border: none;
    border-bottom: 1px solid black;
    width: 215px;
    font-size: 18px; }
    @media (max-width: 768px) {
      .profil-section-1 article:nth-child(4) form input {
        display: block;
        margin: 20px 0 50px;
        width: 100%; } }
    .profil-section-1 article:nth-child(4) form input:focus {
      outline: none; }

.creer-compte-section-1 {
  padding-top: 150px; }
  .creer-compte-section-1 h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 15px; }
  .creer-compte-section-1 form {
    margin: 50px 0; }
    .creer-compte-section-1 form div {
      float: left;
      width: 425px;
      margin-right: 100px; }
      @media (max-width: 1110px) {
        .creer-compte-section-1 form div {
          float: none;
          width: 100%; } }
      .creer-compte-section-1 form div input {
        width: calc(100% - 20px);
        height: 50px;
        border: 1px solid black;
        display: block;
        padding: 0 20px;
        margin: 10px 0 30px 0;
        font-family: 'Raleway', sans-serif;
        font-size: 16px;
        box-sizing: border-box; }
    .creer-compte-section-1 form select {
      width: 50px;
      height: 50px;
      border: 1px solid black;
      margin-bottom: 20px;
      margin-top: 10px; }
    .creer-compte-section-1 form label {
      display: block; }
    .creer-compte-section-1 form .continuer {
      width: 310px;
      border: 1px solid #F07E24;
      float: left;
      text-align: center;
      padding: 15px 0;
      font-weight: 700;
      color: #333333;
      margin: 20px 50px;
      background-color: #F07E24;
      transition: all 0.2s linear; }
      @media (max-width: 1000px) {
        .creer-compte-section-1 form .continuer {
          width: 100%;
          text-align: center;
          margin: 20px auto; } }
      .creer-compte-section-1 form .continuer:hover {
        background-color: white;
        color: #F07E24; }
    .creer-compte-section-1 form .retour {
      width: 310px;
      border: 1px solid #F07E24;
      display: block;
      float: left;
      text-align: center;
      padding: 15px 0;
      font-weight: 700;
      color: #F07E24;
      margin: 20px 100px;
      transition: all 0.2s linear; }
      @media (max-width: 1000px) {
        .creer-compte-section-1 form .retour {
          width: 100%;
          text-align: center;
          margin: 20px auto; } }
      .creer-compte-section-1 form .retour:hover {
        background-color: #F07E24;
        color: white; }

.creer-compte-section-2 {
  min-height: 100%;
  padding-top: 150px; }
  .creer-compte-section-2 h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 15px; }
  .creer-compte-section-2 form {
    margin: 50px auto 140px;
    width: 800px;
    text-align: center; }
    @media (max-width: 850px) {
      .creer-compte-section-2 form {
        width: 100%; } }
    .creer-compte-section-2 form input {
      width: 425px;
      height: 50px;
      border: 1px solid black;
      display: block;
      padding-left: 20px;
      margin: 10px auto;
      font-family: 'Raleway', sans-serif;
      font-size: 16px;
      box-sizing: border-box; }
      @media (max-width: 768px) {
        .creer-compte-section-2 form input {
          width: 100%; } }
    .creer-compte-section-2 form label {
      display: block; }
    .creer-compte-section-2 form div {
      margin: 50px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      @media (max-width: 850px) {
        .creer-compte-section-2 form div {
          display: block; } }
      .creer-compte-section-2 form div .continuer {
        width: 310px;
        border: 1px solid #F07E24;
        text-align: center;
        padding: 15px 0;
        font-weight: 700;
        color: #333333;
        background-color: #F07E24;
        transition: all 0.2s linear; }
        @media (max-width: 850px) {
          .creer-compte-section-2 form div .continuer {
            display: block;
            margin: 20px auto 0; } }
        @media (max-width: 768px) {
          .creer-compte-section-2 form div .continuer {
            width: 100%; } }
        .creer-compte-section-2 form div .continuer:hover {
          background-color: white;
          color: #F07E24; }
      .creer-compte-section-2 form div .retour {
        width: 310px;
        border: 1px solid #F07E24;
        display: block;
        text-align: center;
        padding: 15px 0;
        font-weight: 700;
        color: #F07E24;
        transition: all 0.2s linear; }
        @media (max-width: 850px) {
          .creer-compte-section-2 form div .retour {
            display: block;
            margin: 20px auto 0; } }
        @media (max-width: 768px) {
          .creer-compte-section-2 form div .retour {
            width: 100%; } }
        .creer-compte-section-2 form div .retour:hover {
          background-color: #F07E24;
          color: white; }

.creer-compte-section-3 {
  padding-top: 150px; }
  .creer-compte-section-3 h1 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 15px; }
  .creer-compte-section-3 .remerciement {
    width: 100%;
    text-align: center;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center; }
    .creer-compte-section-3 .remerciement span {
      color: #27AE60; }
  .creer-compte-section-3 .boutonretour {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 50px; }
    .creer-compte-section-3 .boutonretour .continuer {
      width: 310px;
      border: 1px solid #F07E24;
      text-align: center;
      padding: 15px 0;
      font-weight: 700;
      color: #333333;
      margin: 20px 50px;
      background-color: #F07E24;
      transition: all 0.2s linear; }
      @media (max-width: 850px) {
        .creer-compte-section-3 .boutonretour .continuer {
          display: block;
          margin: 20px auto 0; } }
      @media (max-width: 768px) {
        .creer-compte-section-3 .boutonretour .continuer {
          width: 100%; } }
      .creer-compte-section-3 .boutonretour .continuer:hover {
        background-color: white;
        color: #F07E24; }
    .creer-compte-section-3 .boutonretour .retour {
      width: 310px;
      border: 1px solid #F07E24;
      display: block;
      text-align: center;
      padding: 15px 0;
      font-weight: 700;
      color: #F07E24;
      margin: 20px 0px;
      transition: all 0.2s linear; }
      @media (max-width: 850px) {
        .creer-compte-section-3 .boutonretour .retour {
          display: block;
          margin: 20px auto 0; } }
      @media (max-width: 768px) {
        .creer-compte-section-3 .boutonretour .retour {
          width: 100%; } }
      .creer-compte-section-3 .boutonretour .retour:hover {
        background-color: #F07E24;
        color: white; }

footer {
  background-color: #F07E24;
  padding: 20px 0; }
  footer nav {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center; }
    @media (max-width: 650px) {
      footer nav {
        display: block; } }
    footer nav ul {
      list-style: none; }
      footer nav ul li {
        display: inline-block;
        margin: 0 10px; }
        footer nav ul li img {
          width: 50px; }
    footer nav div {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-content: center; }
      @media (max-width: 650px) {
        footer nav div {
          display: flex;
          justify-content: center;
          align-content: center;
          margin-top: 20px; } }
      footer nav div img {
        margin-right: 20px; }
        @media (max-width: 385px) {
          footer nav div img {
            margin-bottom: 20px; } }
      footer nav div ul li {
        display: block; }
        footer nav div ul li a {
          color: white;
          font-size: 16px;
          text-decoration: underline; }
    footer nav ul:nth-child(1) li:nth-child(1) {
      width: 135px; }
      footer nav ul:nth-child(1) li:nth-child(1) p {
        font-size: 16px;
        color: white; }
    @media (max-width: 650px) {
      footer nav ul:nth-child(1) {
        display: flex;
        justify-content: center;
        align-content: center; } }
    @media (max-width: 650px) {
      footer nav ul:nth-child(2) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center; } }

/*# sourceMappingURL=style.css.map */
