/**
@mixin xsmin() {
  @media screen and (min-width: $xs+1) {
    @content;
  }
}
  
@mixin smmin() {
  @media screen and (min-width: $sm+1) {
    @content;
  }
}

@mixin mdmin() {
  @media screen and (min-width: $md+1) {
    @content;
  }
}

@mixin lgmin() {
  @media screen and (min-width: $lg+1) {
    @content;
  }
}
**/
/** FEUILLE BOUTON **/
button {
  text-align: center;
  border-radius: 0.2vw;
  padding: 0.6vw 1vw;
  font-size: 1.1vw;
  font-weight: 400;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  outline: none;
  border: none;
  cursor: pointer;
}

.but__muted {
  cursor: default;
  background-color: #999999;
  color: #ffffff;
  border-radius: 0.2vw;
  padding: 0.6vw 1vw;
  outline: none;
  border: none;
}

.but {
  text-align: center;
  border-radius: 0.2vw;
  padding: 0.6vw 1vw;
  font-size: 1.1vw;
  font-weight: 400;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  outline: none;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .but {
    font-size: 2vw;
    border-radius: 0.6vw;
    padding: 0.6vh 1.6vw;
  }
}

@media screen and (max-width: 425px) {
  .but {
    font-size: 4vw;
    border-radius: 1vw;
    padding: 1vh 4vw;
  }
}

.but__fullOrange {
  color: #ffffff;
  background-color: #f29100;
  border: 0.1vw solid #f29100;
}

.but__fullOrange:hover {
  background-color: #cc7a00;
  border: 0.1vw solid #cc7a00;
  color: #ffffff;
}

.but__fullBlue {
  background-color: #30b0f3;
  color: white;
  border: 0.1vw solid #30b0f3;
}

.but__fullBlue:hover {
  background-color: #188bc9;
  border: 0.1vw solid #188bc9;
  color: #ffffff;
}

.but__fullPurple {
  background-color: #cf1578;
  color: #ffffff;
  border: 0.1vw solid #cf1578;
}

.but__fullPurple:hover {
  background-color: #b3005f;
  border: 0.1vw solid #b3005f;
  color: #ffffff;
}

.but__emptyOrange {
  border: 0.1vw solid #f29100;
  background-color: unset;
  color: #f29100;
}

.but__emptyOrange:hover {
  background-color: #f29100;
  color: #ffffff;
}

.but__emptyBlue {
  border: 0.1vw solid #30b0f3;
  background-color: unset;
  color: #30b0f3;
}

.but__borderBlue {
  border: 0.1vw solid #30b0f3;
  background-color: white;
  color: #30b0f3;
}

.but__borderBlue:hover {
 
  color: white;
  background-color: #30b0f3;
}

.but__emptyBlue:hover {
  background-color: #30b0f3;
  color: #ffffff;
}

.but__emptyPurple {
  border: 0.1vw solid #cf1578;
  background-color: unset;
  color: #cf1578;
}

.but__emptyPurple:hover {
  background-color: #cf1578;
  color: #ffffff;
}

/** FEUILLE HEADER **/
.header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1vh;
  margin-bottom: 1vh;
}

.header__image img {
  height: 8vh;
  width: auto;
}

.header__menu a {
  color: #1a1a1a;
  font-size: 1.2vw;
  padding: 0vw 1.6vw;
}

@media screen and (max-width: 425px) {
  .header__menu a {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .header__menu a {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 425px) {
  .header__links a {
    display: none;
  }
}

.header__links TD:nth-child(1) a {
  margin-right: 1vw;
}

.header__links TD:nth-child(3) a {
  color: #cf1578;
  font-size: 2.6vw;
  margin-left: 1.2vw;
}

.header__links TD:nth-child(4) a {
  color: #0b3e66;
  font-size: 2.4vw;
  margin-left: 1.2vw;
}

/** Partie concernant le menu sur mobile **/
.mobileMenu__icon {
  display: none;
}

@media screen and (max-width: 425px) {
  .mobileMenu__icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

.mobileMenu__icon .mobileMenu__bars {
  width: 50%;
  height: 3px;
  background-color: #1a1a1a;
}

.mobileMenu__icon .mobileMenu__bars::before, .mobileMenu__icon .mobileMenu__bars::after {
  content: '';
  width: 50%;
  height: 3px;
  position: absolute;
  background-color: #1a1a1a;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mobileMenu__icon .mobileMenu__bars::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.mobileMenu__icon .mobileMenu__bars::after {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.mobileMenu__icon--open .mobileMenu__bars {
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  background-color: transparent;
}

.mobileMenu__icon--open .mobileMenu__bars::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.mobileMenu__icon--open .mobileMenu__bars::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mobileMenu__menu {
  display: none;
}

.mobileMenu__menu--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  margin-bottom: 4vh;
}

.mobileMenu__menu--links a {
  color: #1a1a1a;
  font-size: 5vw;
  padding-top: 1.4vh;
  padding-bottom: 1.4vh;
}

.mobileMenu__menu--socials a:nth-child(1) {
  color: #cf1578;
  font-size: 8vw;
  padding-right: 3vw;
}

.mobileMenu__menu--socials a:nth-child(2) {
  color: #0b3e66;
  font-size: 7vw;
}

.mobileMenu__menu--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #e1e6ed;
  height: 89vh;
  width: 67%;
  padding: 4vw;
  position: absolute;
  left: 25%;
  z-index: 999;
  -webkit-animation: menuIn 0.4s  ease-in-out;
          animation: menuIn 0.4s  ease-in-out;
}

@-webkit-keyframes menuIn {
  from {
    left: 125%;
  }
  to {
    left: 25%;
  }
}

@keyframes menuIn {
  from {
    left: 125%;
  }
  to {
    left: 25%;
  }
}

.footerContainer {
  position: absolute;
  bottom: 0vh;
  width: 100%;
}

.footer {
  font-size: 0.85em;
  display: flex;
  flex-direction: column;
  height: auto;
}

@media screen and (max-width: 768px) {
  .footer {
    /*font-size: 1.4vw;*/
  }
}

@media screen and (max-width: 425px) {
  .footer {
    /*font-size: 3vw;*/
  }
}

.footer__svg {
  /*position: absolute; */
  /*top: -49%;*/
  /*z-index: 1;*/
  margin-bottom:-1px;
}

.container_footer_base {width:100%; background:#0b3e66;}
@media screen and (max-width: 1440px) {
  .footer__svg {
    top: -44%;
  }
}

@media screen and (max-width: 1024px) {
  .footer__svg {
    top: -40%;
  }
}

@media screen and (max-width: 768px) {
  .footer__svg {
    top: -27%;
  }
}

@media screen and (max-width: 425px) {
  .footer__svg {
    top: -4%;
  }
}

.footer__links {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__links a {
  color: #ffffff;
}

@media screen and (max-width: 425px) {
  .footer__links a {
    padding: 0.8vh;
  }
}

@media screen and (max-width: 425px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__text {
  color: #5ac0f6;
  text-align: center;
  padding-top: 2vh;
  padding-bottom: 2vh;
}

.footer__text a {
  color: #5ac0f6;
}

* {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

input, textarea {
  padding: 0.5vw;
  font-size: 1em;
  color: #1a1a1a;
  border: #ffffff 0.1vw solid;
  outline: none;
  border-radius: 0.2vw;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #1a1a1a;
  font-size: 1em;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color:#1a1a1a;
  font-size: 1em;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color:#1a1a1a;
  font-size: 1em;
}

input::placeholder, textarea::placeholder {
  color: #1a1a1a;
  /* font-size: 1.5em; */
}



input:focus, input:hover, textarea:focus, textarea:hover {
  border: #cf1578 0.1vw solid;
}

input.error, .select2-container.error > .select2-choice {background:#fbb9b9;;color:white;}
input.error:focus { border: #cf1578 0.1vw solid;background:white;;color: #1a1a1a;}

.label_error {font-size :0.75em;font-weight:600;}


@media screen and (max-width: 1024px) {
  input, textarea {
    padding: 0.8vw;
    border-radius: 0.4vw;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 768px) {
  input, textarea {
    padding: 1.2vw;
    border-radius: 0.8vw;
    font-size: &em;
  }
}

@media screen and (max-width: 425px) {
  input, textarea {
    padding: 2.4vw;
    border-radius: 1vw;
    font-size: 1em;
  }
}

body {
  position: relative;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 1440px) {
  .container {
    max-width: 94%;
  }
}

@media screen and (max-width: 425px) {
  .container {
    max-width: 92%;
  }
}

.dispFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-top:2vh;
}

.footer__links.dispFlex  { 

  display:flex; 
  width:400px;;

}
.dispFlex.choiceMain {display:flex; flex-direction:column;}
.header.dispFlex { padding-top:0;}

.visible {
  display: block;
}

.hidden {
  display: none;
}

.flexColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-self: flex-start;          
}

@media screen and (max-width: 1024px) {
  .flexColumn {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .flexColumn {
    width: 100%;
  }
}

.flexAlignCen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flexSpaceBet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexHalf { width:48%;}

@media screen and (max-width: 768px) {
  .flexSpaceBet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flexSpaceArr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
      margin-bottom:15px;
}

.titleStyle {
  font-size: 3vw;
  font-weight: 700;
}

@media screen and (max-width: 425px) {
  .titleStyle {
    font-size: 8vw;
  }
}

.sstitleStyle {
  font-size: 1.4vw;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .sstitleStyle {
    font-size: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .sstitleStyle {
    font-size: 2.6vw;
  }
}

@media screen and (max-width: 425px) {
  .sstitleStyle {
    font-size: 5vw;
  }
}

.paraStyle {
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom:15px;
}

@media screen and (max-width: 768px) {
  .paraStyle {
    font-size: 1.4vw;
    line-height: 1.8vh;
  }
}

@media screen and (max-width: 425px) {
  .paraStyle {
    font-size: 3.6vw;
    line-height: 2.4vh;
  }
}

.rightRadius {
  border-top-right-radius: 1vw;
  border-bottom-right-radius: 1vw;
}

@media screen and (max-width: 768px) {
  .rightRadius {
    border-top-right-radius: 0vw;
    border-bottom-left-radius: 1vw;
  }
}

.leftRadius {
  border-top-left-radius: 1vw;
  border-bottom-left-radius: 1vw;
}

@media screen and (max-width: 768px) {
  .leftRadius {
    border-top-right-radius: 1vw;
    border-bottom-left-radius: 0vw;
  }
}

.formLabel {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 0.6vh;
}


.inputBotMargin {
  margin-bottom: 2vh;
}

.formContainer {
  width: 80%;
  margin: auto;
}

.bannerBg {
  background-image: url("../assets/images/bannerBG.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 14vh;
  padding-bottom: 14vh;
}

@media screen and (max-width: 1440px) {
  .bannerBg {
    background-size: cover;
    padding-top: 6vh;
    padding-bottom: 14vh;
  }
}

@media screen and (max-width: 1024px) {
  .bannerBg {
    padding-top: 6vh;
    padding-bottom: 14vh;
  }
}

@media screen and (max-width: 768px) {
  .bannerBg {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}

.bannerMain {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bannerMain__left {
  width: 48%;
}

.bannerMain__left--title {
  color: #ffffff;
  padding-bottom: 2vh;
}

.bannerMain__left--paragraph {
  color: #ffffff;
  padding-bottom: 6vh;
}

@media screen and (max-width: 768px) {
  .bannerMain__left--paragraph {
    padding-top: 1vh;
  }
}

@media screen and (max-width: 425px) {
  .bannerMain__left--paragraph {
    padding-top: 1vh;
  }
}

.bannerMain__left--but {
  padding: 1vh 3vw;
  text-transform: uppercase;
}

.bannerMain__left--but i {
  padding-left: 0.6vw;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
}

.bannerMain__left--but:hover i {
  -webkit-transform: translateX(0.6vw);
          transform: translateX(0.6vw);
}

.bannerMain__left--quote {
  margin-top: 2vh;
  font-size: 1.2vw;
  color: #ffffff;
}

.bannerMain__left--quote a {
  color: #e3067a;
  font-weight: 400;
  font-size: 0.88em;
  background: #FFFFFF;
  border-radius: 1vw;
  padding: 0.2vw;
  padding-left: 0.6vw;
  padding-right: 0.6vw;
  margin-left:0.4vw;
}

.bannerMain__left--quote a:hover {
  background : #e3067a;
  color:#e1e6ed;
  cursor : pointer;
}

@media screen and (max-width: 768px) {
  .bannerMain__left--quote {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 425px) {
  .bannerMain__left--quote {
    margin-top: 2vh;
    margin-bottom: 4vh;
    font-size: 3.6vw;
  }
}

@media screen and (max-width: 425px) {
  .bannerMain__left {
    width: 100%;
  }
}

.bannerMain__right {
  width: 44%;
}

.bannerMain__right svg {
  width: 100%;
}

@media screen and (max-width: 425px) {
  .bannerMain__right svg {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .bannerMain__right {
    width: 85%;
  }
}

@-webkit-keyframes testAnim {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@keyframes testAnim {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@media screen and (max-width: 425px) {
  .bannerMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.illus {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  padding-top: 8vh;
  padding-bottom: 8vh;
}

.illus__div {
  width: 18%;
  color: #1a1a1a;
  padding-left:1%; padding-right:1%;
}

.illus__div:hover { width:20%;padding-left:0;padding-right:0;cursor:pointer;}

.illus__div--image {
  width: 100%;
  height: auto;
}

.sectionGrid__div--circle  {width:12vw;}

@media screen and (max-width: 425px) {
  .illus__div--image {
    margin-top: 10vh;
  }
}

.illus__div--title {
  font-size: 1.6vw;
  margin-top: 4vh;
  margin-bottom: 2vh;
}

@media screen and (max-width: 768px) {
  .illus__div--title {
    font-size: 2vw;
  }
}

@media screen and (max-width: 425px) {
  .illus__div--title {
    font-size: 4.4vw;
  }
}

.illus__div--paragraph {
  font-size: 1vw;
}

@media screen and (max-width: 768px) {
  .illus__div--paragraph {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 425px) {
  .illus__div--paragraph {
    font-size: 3.4vw;
  }
}

@media screen and (max-width: 425px) {
  .illus__div {
    width: 50%;
  }
}

@media screen and (max-width: 425px) {
  .illus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0vh;
    padding-bottom: 6vh;
  }
}

#illus__special {
  width: 140%;
  height: auto;
  margin-left: -2.5vw;
}

@media screen and (max-width: 425px) {
  #illus__special {
    margin-top: 10vh;
  }
}

.productivityBg {
  background-image: url("../assets/images/home_prodBG.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 4vh;
  padding-bottom: 10vh;
}

@media screen and (max-width: 1440px) {
  .productivityBg {
    background-size: cover;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

@media screen and (max-width: 768px) {
  .productivityBg {
    background-size: cover;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

@media screen and (max-width: 425px) {
  .productivityBg {
    background-size: cover;
    padding-top: 14vh;
    padding-bottom: 14vh;
  }
}

.productivityMain {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.productivityMain__left {
  color: #ffffff;
  width: 40%;
}

.productivityMain__left img {
  padding-bottom: 2vh;
  width:80%;

}

@media screen and (max-width: 425px) {
  .productivityMain__left img {
    padding-bottom: 4vh;
  }
}

.productivityMain__left p {
  margin-top: 2vh;
}

@media screen and (max-width: 425px) {
  .productivityMain__left p {
    margin-bottom: 6vh;
  }
}

@media screen and (max-width: 425px) {
  .productivityMain__left {
    width: 100%;
  }
}

.productivityMain__right {
  width: 48%;
}

.productivityMain__right div {
  display: inline-block;
  margin-top: 4vh;
}

@media screen and (max-width: 425px) {
  .productivityMain__right div {
    margin-top: 2vh;
  }
}

.productivityMain__right--tag {
  background-color: #5ac0f6;
  border-radius: 0.2vw;
  padding: 1.2vh 2vw;
  font-size: 1.4vw;
  color: #ffffff;
  margin: 0.2vh 2vw 0vh 0vw;
}

@media screen and (max-width: 425px) {
  .productivityMain__right--tag {
    font-size: 4vw;
  }
}

@media screen and (max-width: 425px) {
  .productivityMain__right {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .productivityMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.video {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 8vh;
  padding-bottom: 6vh;
}

.video__left {
  width: 48%;
  position: relative;
}

.video__left iframe {
  width: 99%;
  height: 40vh;
  border-radius: 1vw;
}

@media screen and (max-width: 768px) {
  .video__left iframe {
    height: 23vh;
  }
}

@media screen and (max-width: 425px) {
  .video__left iframe {
    height: 24vh;
    border-radius: 2vw;
    margin-bottom: 2vh;
  }
}

.video__left--button {
  width: 5vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}

@media screen and (max-width: 425px) {
  .video__left--button {
    width: 20vw;
  }
}

@media screen and (max-width: 425px) {
  .video__left {
    width: 100%;
  }
}

.video__right {
  width: 48%;
  text-align: center;
}

.video__right p {
  font-weight: 400;
  margin-top: 2vh;
  margin-bottom: 6vh;
}

@media screen and (max-width: 425px) {
  .video__right p {
    margin-bottom: 4vh;
  }
}

@media screen and (max-width: 425px) {
  .video__right {
    width: 100%;
  }
}

.video__button {
  text-align: center;
}

@media screen and (max-width: 425px) {
  .video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.formBg {
  background-image: url("../assets/images/home_formBG.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 28vh;
  padding-bottom: 26vh;
  margin-top: 6vh;
}

@media screen and (max-width: 1440px) {
  .formBg {
    background-size: cover;
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}

@media screen and (max-width: 1024px) {
  .formBg {
    background-size: cover;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

@media screen and (max-width: 768px) {
  .formBg {
    background-size: cover;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

@media screen and (max-width: 425px) {
  .formBg {
    background-size: cover;
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

.pre-form {
  text-align: center;
  color: #ffffff;
}

.pre-form__title {
  font-size: 1.8vw;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .pre-form__title {
    font-size: 3vw;
    margin-bottom: 1vh;
  }
}

@media screen and (max-width: 425px) {
  .pre-form__title {
    font-size: 5vw;
    margin-bottom: 1vh;
  }
}

@media screen and (max-width: 425px) {
  .pre-form {
    margin-bottom: 4vh;
  }
}

.form {
  max-width: 50%;
  margin: auto;
  margin-top: 6vh;
  margin-bottom: 10vh;
}

.form__firstRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__firstRow > div {
  width: 44%;
}

@media screen and (max-width: 768px) {
  .form__firstRow > div {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .form__firstRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__inputContainer {
  width: 100%;
  margin-bottom: 3vh;
  position: relative;
}

.form__inputContainer--icon {
  position: absolute;
  padding: 1.2vh;
  font-size: 1vw;
  color: #cf1578;
}

@media screen and (max-width: 1024px) {
  .form__inputContainer--icon {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 768px) {
  .form__inputContainer--icon {
    font-size: 2vw;
  }
}

@media screen and (max-width: 425px) {
  .form__inputContainer--icon {
    font-size: 4vw;
  }
}



.form__inputContainer input {
  width: 100%;
  padding-left: 2vw;
}

@media screen and (max-width: 1024px) {
  .form__inputContainer input {
    padding-left: 3.2vw;
  }
}

@media screen and (max-width: 768px) {
  .form__inputContainer input {
    padding-left: 4vw;
  }
}

@media screen and (max-width: 425px) {
  .form__inputContainer input {
    padding-left: 8vw;
  }
}

@media screen and (max-width: 375px) {
  .form__inputContainer input {
    padding-left: 8.6vw;
  }
}

@media screen and (max-width: 320px) {
  .form__inputContainer input {
    padding-left: 9vw;
  }
}

@media screen and (max-width: 425px) {
  .form__inputContainer {
    margin-bottom: 2vh;
  }
}

.form textarea {
  width: 100%;
  resize: none;
  height: 12vh;
  line-height: 2.2vh;
  padding-left: 2vw;
}

@media screen and (max-width: 1024px) {
  .form textarea {
    padding-left: 3.2vw;
  }
}

@media screen and (max-width: 768px) {
  .form textarea {
    padding-left: 4vw;
  }
}

@media screen and (max-width: 425px) {
  .form textarea {
    padding-left: 8vw;
  }
}

@media screen and (max-width: 375px) {
  .form textarea {
    padding-left: 8.6vw;
  }
}

@media screen and (max-width: 320px) {
  .form textarea {
    padding-left: 9vw;
  }
}

.form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 425px) {
  .form {
    margin: unset;
    max-width: 88%;
    margin-top: 3vh;
    margin-bottom: 24vh;
  }
}

.atouts__bannerBg {
  background-image: url("../assets/images/bannerBG.svg");
  background-color: #e1e6ed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 20vh;
}

@media screen and (max-width: 1024px) {
  .atouts__bannerBg {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

.atouts__bannerMain {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.atouts__bannerMain--left {
  width: 45%;
  color: #ffffff;
}

.atouts__bannerMain--left h2 {
  margin-top: 1.4vh;
  margin-bottom: 3vh;
}

@media screen and (max-width: 425px) {
  .atouts__bannerMain--left {
    width: unset;
  }
}

.atouts__bannerMain--right {
  width: 40%;
}

.atouts__bannerMain--right img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 425px) {
  .atouts__bannerMain--right {
    width: 100%;
    margin-top: 6vh;
  }
}

@media screen and (max-width: 425px) {
  .atouts__bannerMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.atouts__secOneBg {
  background-color: #e1e6ed;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

@media screen and (max-width: 425px) {
  .atouts__secOneBg {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

.atouts__secOneMain {
  position: relative;
}

.atouts__secOneMain div {
  color: #1a1a1a;
}

@media screen and (max-width: 425px) {
  .atouts__secOneMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#atoutsImg__specialOne {
  width: 64%;
  height: auto;
}

#atoutsImg__specialTwo {
  width: 63%;
  height: auto;
}

.atouts__secTwoBg {
  background-image: url("../assets/images/sectionBG.svg");
  background-color: #e1e6ed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 6vh;
  padding-bottom: 20vh;
}

.atouts__secTwoMain {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.atouts__secTwoMain div {
  color: #ffffff;
}

@media screen and (max-width: 425px) {
  .atouts__secTwoMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 10vh;
  }
}

.atouts__box {
  width: 33%;
  height: 45vh;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.atouts__box--image {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.atouts__box--title {
  font-size: 1.6vw;
  font-weight: 700;
  margin-top: 3vh;
}

@media screen and (max-width: 1024px) {
  .atouts__box--title {
    font-size: 2vw;
  }
}

@media screen and (max-width: 425px) {
  .atouts__box--title {
    font-size: 4.4vw;
  }
}

.atouts__box--text {
  font-size: 1vw;
  width: 50%;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .atouts__box--text {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 425px) {
  .atouts__box--text {
    font-size: 3.4vw;
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .atouts__box {
    height: 30vh;
  }
}

@media screen and (max-width: 768px) {
  .atouts__box {
    height: 24vh;
  }
}

@media screen and (max-width: 425px) {
  .atouts__box {
    width: 100%;
    margin-bottom: 6vh;
    height: 35vh;
  }
}

.atoutsCarrousel {
  position: relative;
}

.atoutsSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  width: 70%;
  height: 50%;
  background-color: #ffffff;
  border-radius: 0.6vw;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2vh 2vw;
}

.atoutsSlide__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.atoutsSlide__main--text {
  font-size: 1vw;
  width: 48%;
}

.atoutsSlide__main--img {
  width: 48%;
}

.atoutsSlide__main--img img {
  width: 50%;
  height: auto;
}

.atoutsSlide__bubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: 25%;
}

.atoutsSlide__bubble div {
  border-radius: 50%;
  height: 1vw;
  width: 1vw;
}

.atoutsSlide__bubble--static {
  background-color: rgba(207, 21, 120, 0.5);
}

.atoutsSlide__bubble--active {
  background-color: #cf1578;
}

.atoutsSlideBG {
  background-color: black;
  height: 100%;
  width: 100%;
}

.decouvrir__bannerBg {
  background-image: url("../assets/images/bannerBG.svg");
  background-color: #e1e6ed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 18vh;
}

@media screen and (max-width: 1024px) {
  .decouvrir__bannerBg {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}

.decouvrir__bannerMain {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.decouvrir__bannerMain--left {
  width: 45%;
  color: #ffffff;
}

.decouvrir__bannerMain--left h2 {
  margin-top: 1.4vh;
  margin-bottom: 3vh;
}

@media screen and (max-width: 425px) {
  .decouvrir__bannerMain--left {
    width: unset;
  }
}

.decouvrir__bannerMain--right {
  width: 40%;
}

.decouvrir__bannerMain--right img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 425px) {
  .decouvrir__bannerMain--right {
    width: 85%;
    margin-top: 6vh;
  }
}

@media screen and (max-width: 425px) {
  .decouvrir__bannerMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sectionGrid {
  display:flex;
  flex-direction:row;
  justify-content: space-around;
}

.sectionGrid__div p {
  font-size: 1vw;
  text-transform: uppercase;
  margin-bottom: 4vh;
  text-align: center;
  line-height: 2.4vh;
  width: 80%;
  margin-left: 10%;
}

@media screen and (max-width: 768px) {
  .sectionGrid__div p {
    font-size: 1.6vw;
  }
}

@media screen and (max-width: 425px) {
  .sectionGrid__div p {
    font-size: 4vw;
  }
}

.sectionGrid__div--circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 8px 30px -8px #6b6b6b;
          box-shadow: 0px 8px 30px -8px #6b6b6b;
}

.sectionGrid__div--circle img {
  width: 100%;
  padding: 35%;
}

@media screen and (max-width: 768px) {
  .sectionGrid__div {
    width: 75%;
    margin: 0 auto;
    margin-top: 8vh;
  }
}

@media screen and (max-width: 425px) {
  .sectionGrid__div {
    width: 50%;
    margin: 0 auto;
    margin-top: 8vh;
  }
}

@media screen and (max-width: 768px) {
  .sectionGrid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 425px) {
  .sectionGrid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.firstSection {
  background-color: #e1e6ed;
  padding-top: 8vh;
  padding-bottom: 8vh;
}

@media screen and (max-width: 768px) {
  .firstSection {
    padding-top: 0vh;
  }
}

.firstSection p {
  color: #6b6b6b;
}

.secondSection {
  background-image: url("../assets/images/sectionBG.svg");
  background-color: #e1e6ed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 14vh;
  padding-bottom: 20vh;
}

.secondSection p {
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  .secondSection {
    padding-top: 6vh;
    padding-bottom: 16vh;
  }
}

@media screen and (max-width: 768px) {
  .secondSection {
    padding-top: 2vh;
    padding-bottom: 14vh;
  }
}

@media screen and (max-width: 425px) {
  .secondSection {
    padding-top: 2vh;
    padding-bottom: 30vh;
  }
}

.caroussel {
  overflow: hidden;
  max-width: 100%;
  z-index:2;
}

.caroussel__element, .caroussel__element--hidden {
  display: none;
}

.caroussel__element--visible {
  display: flex;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(26, 26, 26, 0.8);
  align-items: center;
  justify-content: center;
}

.caroussel__buttons {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.caroussel__buttons--prev {
  margin-left: 11vw;
  background-color: unset;
}

.caroussel__buttons--next {
  margin-right: 11vw;
  background-color: unset;
}

.caroussel__buttons i {
  color: #999999;
  font-size: 2vw;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0.5;
}

.caroussel__buttons i:hover {
  opacity: 1;
}

@media screen and (max-width: 425px) {
  .caroussel__buttons i {
    font-size: 5vw;
  }
}

.caroussel__buttons--close {
  position: relative;
  top: -30px;
  left: calc(100% + 3vw);
  background-color: unset;
}

.caroussel__buttons--close i {
  color: #999999;
  font-size: 1.4vw;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0.5;
}

.caroussel__buttons--close i:hover {
  opacity: 1;
}

@media screen and (max-width: 425px) {
  .caroussel__buttons--close i {
    font-size: 5vw;
  }
}


.lightbox__container {
  background-color: #e1e6ed;
  border-radius: 1vw;
  padding: 6vh 8vw;
  width: calc(80vw - 16vw);

}

.lightbox__containerMain {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}



.lightbox__containerMain--left, .lightbox__containerMain--right {
  width: 45%;
  -webkit-animation: changeLightbox 0.6s ease-in-out;
          animation: changeLightbox 0.6s ease-in-out;
}

@media screen and (max-width: 425px) {
  .lightbox__containerMain--left, .lightbox__containerMain--right {
    width: 90%;
  }
}

.lightbox__containerMain h3, .lightbox__containerMain--left h3 {
  color: #cf1578;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2vh;
}

.lightbox__containerMain--left p {
  color: #1a1a1a;
}

.lightbox__containerMain--right img {
  float: right;
  width: 100%;
  border-radius:0.6vw;
}

.lightbox__containerMain--left ul { padding-left:35px; padding-right:15px;margin-top:10px;margin-bottom:15px;font-size:1vw;}
.lightbox__containerMain--left ul>li {margin-top:1vh;line-height:1.6em;}

@media screen and (max-width: 425px) {
  .lightbox__containerMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 425px) {
  .lightbox__containerMain--right img {
    padding-top: 6vh;
    width: 100%;
  }
}

@-webkit-keyframes changeLightbox {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes changeLightbox {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox__bubbles {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  margin: auto;
  padding-top: 10vh;
  display:flex;
}

.lightbox__bubbles--bubble {
  height: 1vw;
  width: 1vw;
  border-radius: 50%;
  background-color: #cf1578;
  opacity: 0.5;
  margin-left: 2.5px;
margin-right: 2.5px;
}

@media screen and (max-width: 768px) {
  .lightbox__bubbles--bubble {
    height: 1.4vw;
    width: 1.4vw;
  }
}

.lightbox__bubbles #bubbleSpecial {
  height: 1.4vw;
  width: 1.4vw;
  opacity: 1;
  -webkit-animation: changeBubble 0.3s ease-in-out;
          animation: changeBubble 0.3s ease-in-out;
}

@-webkit-keyframes changeBubble {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes changeBubble {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  .lightbox__bubbles #bubbleSpecial {
    height: 1.8vw;
    width: 1.8vw;
  }
}

@media screen and (max-width: 425px) {
  .lightbox__bubbles {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.plansBG {
  background-image: url("../assets/images/bannerBG.svg");
  background-color: #e1e6ed;
  background-repeat: no-repeat;
  padding-top: 12vh;
  padding-bottom: 20vh;
}

.plansMain {
  margin: 0 auto;
  width: 60%;
  height: auto;
  background-color: #ffffff;
  border-radius: 0.6vw;
  padding: 4vh 2vw;
}

.plansMain__title p {
  font-size: 2.2vw;
  color: #f29100;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4vh;
}

@media screen and (max-width: 768px) {
  .plansMain__title p {
    font-size: 3.4vw;
    margin-bottom: 2vh;
  }
}

@media screen and (max-width: 425px) {
  .plansMain__title p {
    font-size: 7vw;
    margin-bottom: 0.6vh;
  }
}


.plangrid_row {display:flex; flex-direction:row;}
.plangrid_line {width:55%}
.column_plan {width: 22%;text-align: center;}

.plansGrid__free { 
  margin-left: 55%;  
  margin-right: 0.5%;
  }

.plansGrid__premium {width:22.5%;}
.plansGrid__free--tag {font-weight: 800;color: #cf1578;}

.gridBox {border-top:1px solid #d7c4c4;padding-top:1vh; padding-bottom:1vh;}

.checkGreen {
  font-size: 2vw;
  color: #56ba62;
  
}

@media screen and (max-width: 768px) {
  .checkGreen {
    font-size: 3vw;
  }
}

@media screen and (max-width: 425px) {
  .checkGreen {
    font-size: 5vw;
  }
}

.checkPurple {
  font-size: 2vw;
  color: #cf1578;
  
}

@media screen and (max-width: 768px) {
  .checkPurple {
    font-size: 3vw;
  }
}

@media screen and (max-width: 425px) {
  .checkPurple {
    font-size: 5vw;
  }
}

.connexionBg {
  background-image: url("../assets/images/bannerBG.svg");
  background-color: #e1e6ed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 14vh;
  padding-bottom: 26vh;
}

@media screen and (max-width: 1024px) {
  .connexionBg {
    padding-bottom: 32vh;
  }
}

.connexionForm {
  background-color: #cf1578;
  width: 50%;
  margin: 0 auto;
  color: #ffffff;
  padding-top: 8vh;
  padding-bottom: 8vh;
}

.connexionForm__title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 4vh;
}

.connexionForm__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4vh;
}

.connexionForm__button i {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.connexionForm__button:hover i {
  -webkit-transform: translateX(0.4vw);
          transform: translateX(0.4vw);
}

@media screen and (max-width: 768px) {
  .connexionForm {
    width: 75%;
  }
}

@media screen and (max-width: 425px) {
  .connexionForm {
    width: 85%;
  }
}

#container_ets, #container_cours {}
#container_ets > label, #container_cours > label {}
#container_ets > ul, #container_cours > ul {
  list-style-type: none;
  padding: 0px;
  /*height: 30vh;*/
  overflow-y: auto;
  margin-bottom:10px;}

#container_ets > ul li, #container_cours > ul li {
  background : white;
  border-radius : 5px;
  color : #1A1a1a;
  padding:10px; 
  margin-bottom:10px;

}

#container_ets > ul li:hover, #container_cours > ul li:hover { background :rgba(26, 26, 26, 0.8); color:white;cursor:pointer;}

#container_ets > ul li > .row {display: flex;
  flex-direction: row;
  padding:5px;
  pointer-events: none;
}

#container_ets > ul li > .row > .nom {width:60%;padding-right:5px;font-weight:bold;}
#container_ets > ul li > .row > .ville {width:40%;text-align:right}

#container_cours > ul li {width:calc(100% - 40px);border-radius:5px; background:white; color:black;display:inline-block;padding:5px;}
#container_cours > ul li.selected, #container_cours > ul li.selected:hover {

  background-color:#e3067a; color:white;
}

#container_cours > ul li > div.libelle_cours {
  width:calc(100% - 130px);
  position:relative;
  float:left;

}

#container_cours > ul li > div.prix_cours {
  float:right;
  position:relative;
  width:90px;
  height:2em;
  text-align:right;
  margin-right:10px;
}

/* ecran payer paypal - cours descriptrion */

#cartouche_cours_content {
	color: black;
  display:flex;
}

#cours_label_payer {
	font-size: 13px;
	font-weight: bold;
	text-align: left;
}

#cours_libel_complet {
	text-align: left;
	font-weight: bold;
	border-bottom: 1px solid black;
}

#cartouche_cours_description {
	width: 34%;
	padding:20px;
	height: 100%;
	background: white;
	border-radius: 5px;

}

#cartouche_payment {
	background: white;
	width: 63%;
	min-height: 50%;
	border-radius: 5px;
	margin-left: 6px;
	padding: 20px;
	font-size: 13px;
	font-weight: bold;
}

#sumup_paypal {
	margin-top: 15px;
	font-size: 12px;
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 30px;
}

.detail_sumup {
	text-align: right;
}

.header_paypal > TD {
	padding-top: 5px;
	padding-bottom: 5px;
	text-transform: uppercase;
	border-top: 1px solid lightgrey;
	border-bottom: 1px solid lightgrey;
  text-align:left;
  font-size:9px;
}

TD.td2 {text-align:center;width:25%;}
TD.td3 {text-align:right;width:15%;}
TD.td1 {text-align:left;width:60%;}

.previous_header > TD {
	padding-bottom: 8px;
  font-weight:bold;
}

.next_header > TD {padding-top:8px;}

.paypal_cours_content {
	width: calc(95% - 10px);
	font-size: 12px;
	text-align: left;
	margin-left: 10px;

}

/* fin ecran paypal */


#span_ets, #choixCours { 
  
  border-radius: 5px;
  padding: 10px;
  display:flex;
  justify-content : space-between;
  border:1px solid white;
 }

 #span_ets.hidden, #choixCours.hidden, #container_form_ets.hidden, #container_ets.hidden, #container_cours.hidden, #labelCours_list.hidden, #labelCGUlist.hidden {display:none;}
 
 #labelCours_list, #labelCGUlist { 
   border: 1px solid white;
  padding: 10px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;}
 
.choiceBg {
  background-image: url("../assets/images/bannerBG.svg");
  background-color: #e1e6ed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 4vh;
  padding-bottom: 24vh;
}

@media screen and (max-width: 425px) {
  .choiceBg {
    padding-bottom: 36vh;
  }
}

.choice__title {
  font-size: 1.4vw;
  font-weight: 700;
  color: #f29100;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 4vh;
}

@media screen and (max-width: 768px) {
  .choice__title {
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 425px) {
  .choice__title {
    font-size: 5vw;
  }
}

.choiceMain {
  width: 65vw;
  height:   auto;
}

.choiceMain.extend {

  width:100vw;
  max-width : 100vw; 

}


.choiceMain__but {
  background-color: #ffffff;
  width: 50%;
  padding: 8vh 4vw;
  max-height:80vh;
}

.choiceMain__but img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 90%;
}

.choiceMain__but:hover {
  background-color: #cf1578;
}

.choiceMain__but:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

@media screen and (max-width: 768px) {
  .choiceMain__but {
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .choiceMain__but {
    width: 95%;
  }
}

.choiceMain__separation {
  border: solid 1px #cf1578;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .choiceMain__separation {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .choiceMain__separation {
    width: 95%;
  }
}

@media screen and (max-width: 1024px) {
  .choiceMain {
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .choiceMain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: unset;
  }
}

.formMain__bub {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 25%;
  margin: auto;
  margin-top: 3vh;
}

.formMain__bub span {
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-animation: changeBubble 0.3s ease-in-out;
          animation: changeBubble 0.3s ease-in-out;
}

.formMain__bub .formMain__bubActive {
  opacity: 1;
}

@media screen and (max-width: 425px) {
  .formMain__bub {
    width: 50%;
  }
}

.formMain {
  background-color: #cf1578;
  width: 50%;
  color: #ffffff;
}

.formMain h3, .formMain h4, .formMain p {
  text-align: center;
}

.formMain h3 {
  text-transform: uppercase;
  margin-top: 3vh;
  margin-bottom: 3vh;
  line-height: 3.4vh;
}

.formMain h4 {
  font-weight: 700;
}

.formMain p {
  line-height: 1.5em;
  margin-top: 2vh;
  margin-bottom: 0.4vh;
}

.formMain a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-weight: 700;
}

.formMain__but {
  margin-top: 4vh;
}

@media screen and (max-width: 768px) {
  .formMain__but {
    margin-bottom: 4vh;
  }
}

@media screen and (max-width: 768px) {
  .formMain {
    width: 70%;
  }
}

@media screen and (max-width: 425px) {
  .formMain {
    width: 95%;
  }
}

#changeSize {
  width: 85%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .respBotMargin {
    margin-top: 2vh;
  }
}

@media screen and (max-width: 768px) {
  #formMain__butSpecial {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .respInput__MD {
    width: 85%;
  }
}

.change_langue_inscription {
    text-align: center;
}

.change_langue_inscription a {}

.change_langue_inscription a > img { 
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  height : 2.4vw;margin-right:5px; border:1px solid transparent;}

.change_langue_inscription a > img:hover, .change_langue_inscription a > img.active { cursor : pointer; 
  border:1px solid #b3005f; -webkit-filter:none; filter:unset; }

  .change_langue_inscription {
    text-align: center;
}

.change_langue_inscription a {}

.change_langue_inscription a > img { 
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  height : 2.4vw;margin-right:5px; border:1px solid transparent;}

.change_langue_inscription a > img:hover, .change_langue_inscription a > img.active { cursor : pointer; 
  border:1px solid #b3005f; -webkit-filter:none; filter:unset; }


.menu_langue {margin-left:10px;}  
.menu_header {}

.menu_langue_items {
	position: absolute;
	top: 7vh;
	background: white;
	text-align: center;
	border: 1px solid #0b3e66;
  display:none;
}

.menu_langue_item {

  display:none;
  padding:5px;

}
.menu_langue_item:hover {background:#5ac0f6}

.menu_langue_item > img {
  margin-top: 0.5vw;
  width:3vw;
  cursor : pointer;
}




/**
#eleveButton__selected {
    border-top-left-radius: 1vw;
    border-bottom-left-radius: 1vw;

    border-top-right-radius: 0vw;
    border-bottom-left-radius: 0vw;
}
**/
/*# sourceMappingURL=style.css.map */

/* affichage des mots de passe */

.password-icon {
  display: flex;
  align-items: center;
  position: relative;
  top: -18px;
  left: calc(100% - 30px);
  transform: translateY(-50%);
  width: 20px;
  transition: all 0.2s;
}
.password-icon .fa.fa-eye, .password-icon .fa.fa-eye-slash { cursor:pointer; color:#1a1a1a;}
.password-icon .fa.fa-eye { display : none;}