<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> 
h1.title_h1_2 {
      font-family: SegoeWp-Bold !important;
      font-size: 25px !important;
      color: #1b2a2f !important;
      margin-bottom:10px !important;
  }

  h1 svg  {
        width: 34px;
        position: relative;
        top: 7px;
  }
  h1 svg path {
      fill: #fff;
  }
      .header p {
            font-size: 16px;
          /* font-weight: 400; */
          /* color: #3d3d3d; */
          font-family: 'Roboto' !important;
          color: #7d7d7d;
          font-weight: 300;
          margin: 10px 0px;
      }

  h5 {
    font-size: 14px;
    color: #3d3d3d;
  }

  /*form*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #2c2c2c;
  }
  body a {
    color: inherit;
    text-decoration: none;
  }

  .header__btn {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    padding: 10px 20px;
    display: inline-block;
    margin-right: 10px;
    background-color: #fff;
    border: 1px solid #2c2c2c;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
  }
  .header__btn:last-child {
    margin-right: 0;
  }
  .header__btn:hover, .header__btn.js-active {
    color: #fff;
    background-color: #2c2c2c;
  }
/*
  .header {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
  }
*/
  .header__title {
    margin-bottom: 30px;
    font-size: 2.1rem;
  }

  .content {
    width: 95%;
    margin: 0 auto 50px;
  }

  .content__title {
    margin-bottom: 40px;
    font-size: 20px;
    text-align: center;
  }

  .content__title--m-sm {
    margin-bottom: 10px;
  }

  .multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }

  .multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: rgba(108, 117, 125, 0.7);
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
  }
  @media (min-width: 500px) {
    .multisteps-form__progress-btn {
      text-indent: 0;
    }
  }
  .multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: '';
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 1px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
  }
  .multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: currentColor;
    z-index: 1;
  }
  .multisteps-form__progress-btn:first-child:after {
    display: none;
  }
  .multisteps-form__progress-btn.js-active {
    color: #007bff;
  }
  .multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
  }

  .multisteps-form__form {
    position: relative;
  }

  .multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
  }
  .multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  .multisteps-form__panel[data-animation="scaleOut"] {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .multisteps-form__panel[data-animation="scaleOut"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .multisteps-form__panel[data-animation="slideHorz"] {
    left: 50px;
  }
  .multisteps-form__panel[data-animation="slideHorz"].js-active {
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
    transition-delay: 0s;
    left: 0;
  }
  .multisteps-form__panel[data-animation="slideVert"] {
    top: 30px;
  }
  .multisteps-form__panel[data-animation="slideVert"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: 0;
  }
  .multisteps-form__panel[data-animation="fadeIn"].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
  }
  .multisteps-form__panel[data-animation="scaleIn"] {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .multisteps-form__panel[data-animation="scaleIn"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .multisteps-form__content {
      overflow: hidden;
  }
  .btn-continue {
      text-align: center;
  }

  .multisteps-form__content.choose-image div img {
    width: 100%;
        border: 1px solid #d9d9d9;
        margin-bottom: 5px;
        background: #fff;
  }

  .choose-image &gt; div {
    cursor: pointer;
      padding: 0px 2px;
  }

  button.multisteps-form__progress-btn.js-active {
      color: #5b8ef6 !important;
      font-weight: 600 !important;
  }

  button.multisteps-form__progress-btn {
      color: #B4B9BA;
      font-family: 'Roboto';
      font-weight: 400;
  }

  .multisteps-form__progress {
      margin: 50px 0px;
  }

  /**/

  .choose-image &gt; div.active img {
      border: 2px solid #5b8ef6;
      /*background: #ebeef0;*/
  }
  .multisteps-form .btn-continue button.ctn{

        background: #32ce32;
        background: -moz-linear-gradient(135deg, #32ce32 0%, #18e818 100%);
        background: -webkit-linear-gradient( 
    135deg
     , #32ce32 0%, #18e818 100%);
        background: linear-gradient( 
    135deg
     , #32ce32 0%, #18e818 130%);
        max-width: 235px;
        text-align: center;
        display: inline-block;
        margin-left: auto;
        font-size: 14px;
        font-family: SegoeWP-Bold;
        padding: 23px 0px;
        text-transform: uppercase;
        color: #fff;
        letter-spacing: 1px;
        border-radius: 2px;
        -webkit-transition: all 0.1s ease-out;
        -moz-transition: all 0.1s ease-out;
        -o-transition: all 0.1s ease-out;
        transition: all 0.1s ease-out;
        margin: 0 auto;
        width: 100%;
        border: none;
        margin-top: 20px;
  }
  .multisteps-form .btn-continue button.spe{

    background: transparent;
    text-align: center;
    display: inline-block;
    margin-left: auto;
    font-size: 14px;
    font-family: SegoeWP-SemiBold;
    padding: 21px 20px;
    text-transform: uppercase;
    color: #242424;
    letter-spacing: 1px;
    border-radius: 2px;
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    margin: 0 auto;
    border: 1px solid #242424;
    margin-top: 20px;
    margin-right: 15px;
  }

  .bck {
    border: none;
    opacity: .5;
  }

  .image-choose img {
    width: 100%;
        background: #fff;
        border: 1px solid #cacaca;
  }
  .image-choose label {
      color: #1B2A2F;
      font-family: 'SegoeWP-Semibold' !important;
      font-size: 14px;
      margin-bottom: 10px;
  }

  .image-choose textarea.multisteps-form__input.form-control {
      max-width: 920px;
      width: 100%;
      height: 130px;
  }

  .image-choose div {
      margin: 0px 0px 0px 0px;
  }

  .image-choose input {
      height: 50px;
  }

  #custom-button {
      padding: 12px;
      color: #5b8ef5;
      background-color: #eff5ff;
      border: 1px dashed #5b8ef5;
      border-radius: 5px;
      cursor: pointer;
  }

  #custom-button:hover {
    background-color: transparent;
  }

  #custom-text {
    margin-left: 10px;
    font-family: sans-serif;
    color: #aaa;
  }

  .choose-files {
    overflow: hidden;
    height: 84px;
    position: relative;
    z-index: 1;
  }

    .choose-files .input-file {
      padding: 0.7rem 0.5rem;
          border: 1px dashed #428dff;
          border-radius: .5rem;
          transition: background-color .25s ease-out;
          color: #2774ea;
          font-family: Roboto;
          font-weight: 400;
          text-align: center;
          max-width: 250px;
          width: 100%;
  }
    .choose-files.onei .input-file {
    padding: 0.7rem 0.5rem;
    border: 1px dashed #428dff;
    border-radius: .5rem;
    transition: background-color .25s ease-out;
    margin: 0px auto;
    color: #2774ea;
    font-family: Roboto;
    font-weight: 400;
    text-align: center;
    position: absolute;
    top: 27px;
  }


  .choose-files input {
    position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
         opacity: 0; 
        outline: none;
        cursor: pointer;
        right: 0;
        text-align: center;
        margin: 0;
        max-width: 265px;
  }

  p#file-upload-name ,   p#img-upload-name {
    background: #94bdfc;
        color: #ffffff;
        padding: 0px 10px;
        border-radius: 50px;
        z-index: 1;
        position: fixed;
        margin: 4px 0px;
  }


  .bloc-download svg {

    display: inline-block;
    position: relative;
    top: 4px;
    width: 32px;
    z-index: -1;
  }

  .bloc-download .card-subtitle {
      font-size: 13px;
      display: inline-block;
      margin-top: 0px;
  }

  .bloc-download {
      display: inline-block;
  }

  .image-choose .row {
      margin: 0px 0px 20px 0px;
  }

  .choose-files .input-file:hover {
      background: #ecf3ff54;
  }

  input.multisteps-form__input.form-control {
      height: 50px;
  }
  .multisteps-form__panel.shadow.p-4.rounded.bg-white.step3 .col-md-6 {
      margin-bottom: 20px;
  }

  p.thanks {
    color: #238A23;
        text-align: center;
        padding: 10px 20px;
        font-size: 16px;
        background: #F2FDF2;
        margin-top: 10px;
  }

  .step4 .check {
    text-align: center;
  }

/*  .newicon {
      width: 33px;
      float: left;
      margin-right: 8px;
  }
*/
  .lien2 {
    list-style-type: none;
  }

  span.number-img {
      position: absolute;
      top: 5px;
      left: 13px;
      font-family: 'Roboto';
      font-weight: 800;
      color: #2c323c;
  }

.form-control {
  font-family: 'Roboto';
  font-weight: 500;
  color: #333;
  }</pre></body></html>