body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400 !important;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .logoApp{
      width: 20% !important;
  }  /* CSS */
    .logo_container {
       text-align: left !important;
        font-size: 16px;
        text-transform: uppercase;
    }
}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

  /* CSS */
    .logoApp{
      width: 20% !important;
  }
    .logo_container {
       text-align: left !important;
        font-size: 25px;
    }

}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  .logoApp{
      width: 20% !important;
  }
    .logo_container {
       text-align: left !important;
        font-size: 18px;
    }
  /* CSS */

}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  .logoApp{
      width: 20% !important;
  }
    .logo_container {
       text-align: left !important;
        font-size: 16px;
    }
  /* CSS */

}
 .rating-stars {
      --rating: 84%; /* 🔁 Modifie ici pour changer la note */
      position: relative;
      display: inline-block;
      font-size: 1rem;
      line-height: 1;
      width: calc(5 * 37px); /* 5 étoiles * (30px + 4px de marge) */
      height: 34px;
         margin-top: 10px;
    margin-bottom: 10px;
    }

    .stars-bg, .stars-fg {
      white-space: nowrap;

    }
.stars-bg i::before {
    content: "☆";
    font-size: 20px;
    color: white;
}.stars-fg i::before {
    content: "☆";
    font-size: 20px;
    color: white;
}
    .stars-bg i, .stars-fg i {
      width: 30px;
      height: 30px;
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 4px;
      font-size: 0.95rem;
    }

    .stars-bg {
      color: white;
    }

    .stars-bg i {
      background-color: #d1d5db; /* gris clair */
    }

    .stars-fg {
      color: white;
      position: absolute;
      top: 0;
      left: 0;
      width: var(--rating);
      overflow: hidden;
      pointer-events: none;
    }

    .stars-fg i {
      background-color: #34d399; /* vert menthe */
    }
.dem-card {

    width: 30%;

}
.demecardapp{
    text-align: center;
margin-top: 8px;
    color:var(--couleurBleu);
}
.demecardapp2{
    text-align: left;
margin-top: 8px;
    color:var(--couleurBleu);
}
.demenageur-card {
    height: 100%;
    border: 1px solid lightgrey;
    border-radius: 10px;

    padding: 10px;
}
.demenageurs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 51px;
    margin-bottom: 20px;
}
 .etape {
      display: flex;
      background: white;
      border-radius: 12px;
      overflow: hidden;
     border: 0.5px solid lightgrey ;
      max-width: 700px;

      position: relative;
    }

    .etape-num {
         flex:1;
      background: #d1fae5;
      font-weight: bold;
      font-size: 4rem;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
    }

    .etape-text {
      padding: 1.5rem;
      flex: 6;
          font-size: 15px;
            display: flex;
    align-items: anchor-center;
    font-weight: 600;
      color: #111827;
    }
    .etapeNote{
         margin-bottom: 1rem;
    }



    @media (max-width: 600px) {
      .etape {
        flex-direction: column;
      }

      .etape-note {
        position: static;
        margin-top: 0.5rem;
        text-align: right;
        padding: 0 1rem 1rem;
      }
    }
 .sectionAS {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .sectionAS h2 {
      font-size: 2rem;
      font-weight: bold;
    }

    .sectionAS h2 span {
      color: #34d399;
    }

    .steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .step {
      background: #fff;
      border-left: 10px solid #d1fae5;
      padding: 1.5rem;
      border-radius: 12px;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      position: relative;
    }

    .step-number {
      font-size: 2.2rem;
      font-weight: bold;
      color: #000;
    }

    .step p {
      margin: 0;
      text-align: left;
    }

    .note {
      font-size: 0.8rem;
      color: #6366f1;
      margin-top: 0.4rem;
      text-align: left;
    }

    .image-box {
      margin-top: 2rem;
      text-align: center;
    }

    .image-placeholder {
      width: 200px;
      height: 250px;
      background: #e5e7eb;
      border-radius: 12px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280;
      font-size: 0.9rem;
    }

    .cta {
      margin-top: 2rem;
    }

    .cta a {
      display: inline-block;
      background: #34d399;
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 8px;
      font-size: 1.2rem;
      text-decoration: none;
      transition: background 0.3s;
    }

    .cta a:hover {
      background: #10b981;
    }

    @media (max-width: 768px) {
      .steps {
        grid-template-columns: 1fr;
      }

      .step {
        flex-direction: column;
        align-items: flex-start;
      }

      .image-placeholder {
        width: 100%;
        height: 180px;
      }
    }
 .rowAPP {
        display: flex;
        justify-content: start;
        gap: 20px;
        margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .card {

       background-color: white;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 15px;
        width: calc(25% - 15px);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    }
 .card:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }


    .card img {
        display: block;
        margin: 10px auto;
        height: 80px;
    }

    .card-title {
        font-weight: 900;
        font-size: 16px;
        margin-bottom: 10px;
    }
@media (max-width: 768px) {
    .card {
width: calc(50% - 10px);
    }
     .rowAPP {

            align-items: center;
        }
}

.containerCenter{

    margin-top: 20px;
    margin-bottom: 20px;
}
.title1 {
     font-size:  51px;
    justify-content:  normal;
    font-weight:  900 }
 .subtitle1et2 {
     font-size:  42px }
 .title2 {
     font-size:  55px;
    justify-content:  normal;
    font-weight:  900;
    color:  var(--colorFavoride) }
#close_menu,  .checkbox-besoin input[type=checkbox],  .checkbox-besoin input[type=radio],  .checkbox-grouprigh input[type=checkbox],  .checkbox-grouprigh input[type=radio],  .datepicker>div,  .display_none,  .displaynone,  .lastone:before,  .toc-mobile-placeholder  {
     display:  none }
.alignleft {
    float: left;
    margin: 4px 24px 7px 0;
}
.aligncenter, div.aligncenter {
    display: block;
    margin: 5px auto!important;
}
.menu_responsive ul:not(.sub-menu) li, .text_align_left {
    text-align: left;
}
#flexible, .t-align, .text-right, .text_align_right {
    text-align: right;
}
.alignright {
    float: right;
    margin: 4px 0 7px 24px;
}
.table_article {
    width: 100%;
    border-collapse: collapse;
    border-style: solid;
    border-color: #2a3257;
    height: 266px;
}
.height105 {
    height: 105px;
}
.height23 {
    height: 23px;
}
.cbesoin, .col-xs-12, .txtOptx, .wd100, table {
    width: 100%}
.width808px {
    width: 808px;
}
.width390px {
    width: 390px;
}
.width402667px {
    width: 402.667px;
}
.col-xs-6, .wd50 {
    width: 50%}
.fs-x-large {
    font-size: x-large;
}
.colorff0000 {
    color: red;
}
.color333333 {
    color: #333;
}
.fs-10pt {
    font-size: 10pt;
}
.fs-24pt {
    font-size: 24pt;
}
.fs-36pt {
    font-size: 36pt;
}
.fs-18pt {
    font-size: 18pt;
}
.styleSpan {
    font-family: tahoma, arial, helvetica, sans-serif;
    color: #c41256;
}
.fs-1_2em {
    font-size: 1.2em;
}
.fs-inherit {
    font-size: inherit;
}
.breadcrumbx {
    padding: 0 .5rem;
}
.breadcrumbx ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumbx li:not(:last-child)::after {
    display: inline-block!important;
    margin: 0 .25rem;
    content: "→"}
.background_article_bread, .breadcrumbsDiv {
    background: #f7f7f7;
}
.btnDevisTxt, .fs-12 {
    font-size: 12px;
}
.alignCenter, .bhome, .input-daterange input, .quote {
    text-align: center;
}
.background_slide, .brd-10, .img-transpodem {
    border-radius: 10px;
}
.day, .font-weight-400, .font-weight-n, body {
    font-weight: 400;
}
.sidebar a, .topnav a {
    margin-bottom: 2px;
    font-weight: 500!important;
}
.color_black, .sidebar a, .topnav a, footer p {
    color: #000;
}
.phone_rotate {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.float_none {
    float: none!important;
}
.p-l-0-force, .paddingleftslide {
    padding-left: 0!important;
}
.p-r-0-force {
    padding-right: 0!important;
}
.position_relative {
    position: relative!important;
}
.border_left_none, .nblnbb {
    border-left: none!important;
}
.display_flex {
    padding-left: .8px!important;
    display: flex;
    justify-content: space-between;
}
.checkmark, .display_block, .mod1 .mod1_, .next_home, ul.menu_top li, ul.menu_top li a {
    display: inline-block;
}
.flexibilite_input_home {
    width: 48px!important;
    height: 48px;
    margin-left: 0!important;
}
.position_initial {
    position: initial!important;
}
#imageinfo, .breadcrumbs_icon, .checkmark, .checkmark i, .heading_, .ifleche, .logo_container, .mod1 .mod1_ .mod1_txt, .quote, .relative {
    position: relative;
}
.next_home {
    font-size: 20px;
    font-weight: 700;
}
.bhome {
    font-size: 48px;
    margin-bottom: 10px!important;
    color: #000!important;
    letter-spacing: 1px;
    margin-top: 0!important;
    line-height: 40px!important;
}
.date_dem_size {
    width: 100%!important;
    font-weight: 100!important;
}
.seDemarquer, h1, h2, h3, h4, h5, h6 {
    letter-spacing: -.05em;
    font-weight: 600;
}
.flex_jour_space_baseline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.quote {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 50px auto;
    font-style: italic;
}
.quote-content {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
}
.quote-source {
    font-size: 20px;
    color: #555;
    margin-top: 10px;
}
.quote::after, .quote::before {
    content: "“";
    font-size: 50px;
    line-height: 0;
    position: absolute;
    color: #d3d3d3;
}
.quote::before {
    top: 0;
    left: 0;
    transform: translateX(-50%);
}
.quote::after {
    content: "”";
    bottom: 0;
    left: 100%;
    transform: translateX(-50%);
}
.nblnbb, .noborder_bottom {
    border-bottom: none!important;
}
.seDemarquer {
    font-size: 25px;
    color: var(--primaryColor)!important;
}
.displayFlexCenter, .flexCenter, .flexFrance5 {
    display: flex;
    align-items: center;
}
.borderTopRadius5 {
    border-top: 5px solid var(--colorOrangeRed);
}
.border-02lightgrey, .border-top-grey {
    border-top: .2px solid #d3d3d3;
}
.colorPrincipal {
    color: var(--colorOrangeRed);
}
.colorDarkGrey {
    color: #a9a9a9;
}
.containerBackGroundRadius {
    background-color: #f4f5fb;
    border-radius: 10px;
}
.title_comparateur_confiance {
    height: 90px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.comparateur_bg {
    background-color: #f4f5fb;
}
.confiance_bg, .step-number, .step:before {
    background-color: var(--couleurBleu);
}
.equal {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nopa-r, .p-r-0, .paddingRight {
    padding-right: 0;
}
.background0 {
    background: 0;
}
.border-right_deme, .flexjourheightpad {
    height: 48px;
    padding: 0;
}
.imageslide, .img-responsive, .img-transpodem {
    height: 100%;
    width: 92%;
    object-fit: cover;
}
#single .widget ul.toc_widget_list li a, .toc a:hover, ul.elementtoc li a {
    font-weight: 400;
    line-height: 20px;
    font-size: 12px;
}
.closebtn, .link-block-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    align-self: center;
}
.nopaddingall {
    padding: 0!important;
}
.txt_bgB {
    color: var(--couleurVertPastel);
}
.background_slide {
    padding: 30px;
    background: var(--couleurVertPastel);
}
.background_border_demenagement {
    border: 5px solid var(--colorOrangeRed);
    background: #fff;
    border-radius: 10px;
    padding: 0;
}
.border-right_deme {
    border-right: 5px solid #d9ab39;
}
.rounded-button {
    height: 40px;
    width: 40px;
    background-color: #fff;
    color: var(--couleurBleu);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: var(--colorOrangeRed) 3px solid;
}
.backgroudBlue {
    background: var(--couleurBleu);
    color: #fff;
}
.b_home_big_titlev2, .b_home_options_devis {
    text-align: center;
    color: var(--couleurBleu);
}
.rounded-button:hover {
    background-color: var(--colorOrangeRed)!important;
    border: 3px solid #fff;
}
.b_home_options_devis {
    min-height: 40px;
    outline: 0;
    text-decoration: none;
    background-color: var(--couleurBleu);
    display: block;
    border-radius: 5px;
    line-height: 75px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    border: none;
    cursor: pointer;
}
.b_home_big_titlev2 {
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0;
}
.btnSubmitForm, .btnSubmitFormHome {
    color: #fff!important;
}
.content_article {
    text-align: justify!important;
    padding: 0!important;
}
.checkbox-besoin label, .checkbox-grouprigh label {
    line-height: 24px;
    padding-left: 30px;
    cursor: pointer;
}
.text-with-line2:after, .text-with-line3:after {
    width: calc(100% - 84px);
    left: 44px;
}
#flexible, #last_blog article h4 a, #moving_date, body, footer .f_title, h1, h2, h3, h4, h5, h6, ul.menu_top li a {
    font-family: Poppins, sans-serif;
}
.text-with-line, .text-with-line2, .text-with-line3 {
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    position: relative;
}
.divbuttom, .divinfo {
    margin-bottom: 8px;
    text-align: center;
}
.text-with-line3:after {
    content: "";
    display: block;
    height: 3px;
    background-color: #fff;
    position: absolute;
    bottom: -10px;
}
.besoinx {
    border: 1px solid #d3d3d3!important;
    background: #fff;
    border-radius: 4px!important;
    height: 100%;
    color: #000;
}
input, input[type=button i] {
    border-width: 2px;
    border-image: initial;
}
.text_new_form {
    text-align: center!important;
    font-size: 13px!important;
}
input[type=checkbox]:checked~label .box, input[type=radio]:checked~label .box {
    border-radius: 6px;
    background: #e8e8e8!important;
}
.checkbox-besoin label {
    margin-bottom: 0;
    font-weight: 600!important;
}
.checkbox-besoin label span {
    font-weight: 600!important;
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s;
}
.content_article p {
    margin-bottom: 10px;
    margin-top: 10px;
}
.checkbox-besoin label .box {
    border-radius: 6px!important;
    background: #e8e8e8;
    height: 28px;
    width: 31px;
    z-index: 9;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
    border: 1px solid #e8e8e8;
    top: 1px;
}
.checkbox-besoin label .check {
    left: 10px;
    width: 12px;
    height: 24px;
    border: 7px solid #000;
    border-top: none;
    border-left: none;
    opacity: 0;
    z-index: 10;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    transition-delay: .3s;
    top: 1px;
}
.ccx {
    width: 80%}
.checkbox-grouprigh label span {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: .3s;
}
.checkbox-grouprigh label .box {
    top: 8px;
    border-radius: 6px!important;
    background: #e8e8e8;
    height: 28px;
    width: 31px;
    z-index: 9;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
    border: 1px solid #e8e8e8;
}
.checkbox-grouprigh label .check {
    top: 8px;
    left: 10px;
    width: 12px;
    height: 24px;
    border: 7px solid #000;
    border-top: none;
    border-left: none;
    opacity: 0;
    z-index: 10;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    transition-delay: .3s;
}
input[type=checkbox]:checked~label .check, input[type=radio]:checked~label .check {
    opacity: 1;
    -webkit-transform: scale(1) rotate(45deg);
    -moz-transform: scale(1) rotate(45deg);
    transform: scale(1) rotate(42deg);
}
input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=submit], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea {
    font-size: 13px;
    color: #000!important;
}
.coco {
    font-size: 14px;
    font-weight: 600!important;
}
.divinfo {
    margin-top: 8px;
    font-weight: 700;
    color: #000;
}
.divbuttom, .m-t-10 {
    margin-top: 10px;
}
.colorRose {
    color: var(--couleurBleu);
}
.fa-check-circle:before {
    content: "\f058"}
.fa-check:before, .icon-checkmark1:before, .icon-checkmark:before {
    content: "\f00c"}
.fa-arrow-right:before {
    content: "\f061"}
.text-with-line2:after, .text-with-line:after {
    content: "";
    height: 1px;
    background-color: var(--colorPrincipalTheme);
    display: block;
    position: absolute;
    bottom: -10px;
}
.text-with-line:after {
    width: calc(100% - 20px);
    left: 10px;
}
.custom-flex-container {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    height: 100%}
.checkmark i {
    color: #fff;
    font-size: 15px;
}
.checkmarkTop b {
    font-size: 16px;
    font-weight: 100;
    color: #fff;
}
@media (max-width:768px) {
    .checkmarkTop b {
    font-size: 16px;
}
}@media (max-width:480px) {
    .checkmarkTop b {
    font-size: 3.2vw;
}
}.visually-hidden {
    position: absolute!important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
.step-text p, body, nav[role=navigation] ul {
    margin: 0;
}
.toc ul, .widget ol, .widget ul, nav[role=navigation] ul {
    padding: 0;
    list-style: none;
}
#last_blog .last_blog_comparer a, #single .widget .f_title, #single h1::first-letter, .btnSubmitForm, .overlay nav ul li a, .phone_top_bar a, .txt_mobile_menu, .txt_mobile_newx, ul.menu_top li a {
    text-transform: uppercase;
}
.fa, .fas, [class*=" icon-"], [class^=icon-] {
    font-family: "Font Awesome 5 Free";
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
}
.phone_top_bar a, body {
    line-height: 1.42857143;
}
#header_hero .hero_title, #last_blog article h4 a, #single .widget ul.toc_widget_list li a, .colorBlue, .mod2 .mod2_title1, .mod2_button a, .txt_blue, a {
    color: var(--secondaryColor);
}
.f_menu1, .overlay nav ul, ul.menu_top {
    list-style-type: none;
}
:root {
     --colorFavoride:  #6dd7a2;
    --colorComparateur: #0B6045;
    --colorOrangeRed: #d9ab39;
    --colorgraylight: #f4f5fb;
    --couleurBleu: #3f48cc;
    --couleurVertPastel: #7fd1ac;
    --primaryColor: #F2AA09;
    --colorPrincipalTheme: #F2AA09;
    --secondaryColor: #4054B2;
    --colorBlueTheme: #4054B2;
    --couleurbutton: #F2AA09;
}
.has-danger {
    border: 3px solid #f52222!important;
}
.has-dangerHome1 {
    border: 5px solid red!important;
}
.has-danger input.txtOptx {
    background-image: url(data:image/i+xml;
    base64, PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iI2Y1MjIyMiIgZD0iTTIzLjk1NCAyMS4wM2wtOS4xODQtOS4wOTUgOS4wOTItOS4xNzRMMjEuMDMtLjA0NmwtOS4wOSA5LjE3OUwyLjc2NC4wNDVsLTIuODEgMi44MUw5LjE0IDExLjk2LjA0NSAyMS4xNDRsMi44MSAyLjgxIDkuMTEyLTkuMTkyIDkuMTggOS4xeiIvPjwvc3ZnPg==)!important;
}
.fa-refresh: before {
    content: "\f021"}
.fa-pulse {
    -webkit-animation: 1s steps(8) infinite fa-spin;
    animation: 1s steps(8) infinite fa-spin;
}
@-webkit-keyframes fa-spin {
    0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
}
}@keyframes fa-spin {
    0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
}
}nav[role=navigation] a {
    min-width: 48px;
    min-height: 48px;
    text-decoration: none;
}
#archive .one-post, .one-post {
    padding: 25px;
    margin-bottom: 30px;
}
.b_silde, .p-r-10, ul.menu_top li a {
    padding-right: 10px;
}
.toc a {
    text-decoration: none;
    color: #007bff;
}
#archive .one-post h4 a, #single .widget ul.toc_widget_list li a:hover, .b_silde, .content_article a:hover, .content_article a:link, .content_article a:visited, .content_article>a, .equipedem, .txt_color_principal, a, ul.menu_top li a:hover {
    color: var(--colorFavoride);
}
#single .widget ul.toc_widget_list li, .quick_replies {
    background: 0 0;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding-bottom: 5px;
    padding-top: 5px;
}
ul.elementtoc li a {
    text-decoration: none;
    color: var(--colorBlueTheme);
}
.margingTrnaspodem {
    margin-bottom: 259px;
}
.confianceB {
    color: var(--colorOrangeRed);
    font-size: 40px;
}
.img-transpodem {
    width: 100%;
    height: 237%;
    position: absolute;
    top: -84px;
    border: 5px solid #fff;
}
.img-responsive {
    height: 318.96px;
    width: 100%;
    border-radius: 10px;
}
.imageDemenageurAdresse {
    position: absolute;
    top: -105px;
    width: 29%;
    left: 36%}
.securityImage {
    width: 32%;
    position: absolute;
    top: -185px;
    right: -6%}
.footer_border {
    border-right: 1px solid #a9a9a9;
    border-left: .1px solid #a9a9a9;
}
.height-center {
    height: 200px;
}
.col-xs-3, .percent-w-25, .round-button {
    width: 25%}
.round-button-circle {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    border: 10px solid #cfdcec;
    overflow: hidden;
    background: #4679bd;
    box-shadow: 0 0 3px grey;
}
.round-button-circle:hover {
    background: #30588e;
}
.round-button a {
    display: block;
    float: left;
    width: 100%;
    padding-top: 50%;
    padding-bottom: 50%;
    line-height: 1em;
    margin-top: -.5em;
    text-align: center;
    color: #e2eaf3;
    font-family: Verdana;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
}
.steps-container {
    position: relative;
    padding-left: 30px;
}
.step {
    text-align: justify!important;
    position: relative;
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    z-index: 1;
}
.step-number {
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    z-index: 2;
}
.lastone:before {
    height: 50%!important;
}
.step:before {
    content: ' ';
    position: absolute;
    display: block;
    top: -6px;
    right: 21%;
    bottom: 1px;
    left: -1px;
    height: 57%;
    width: 2px;
    transform: scale(1, 2);
    transform-origin: 50% -53%;
    z-index: -1;
}
.step-text {
    padding-left: 1.5rem;
}
.step-text h4 {
    margin: 0;
    color: #0066a2;
}
.input-container {
    display: flex;
    width: 100%}
.iconTxt {
    padding: 11px 4px 10px;
    color: #000;
    min-width: 34px;
    text-align: center;
    vertical-align: bottom;
    font-size: 24px;
}
.fa-calendar:before, .icon-calendar-solid:before {
    content: "\f073"}
.ifleche {
    color: #fff;
    font-size: 20px;
    top: 3px;
    left: 26px;
}
.flechbutton {
    text-align: center;
    justify-content: space-around;
    display: flex;
    align-items: center;
}
#imageinfo {
    display: flex;
    align-items: end;
    justify-content: end;
}
#imageinfo img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 66%}
*, :after, :before {
    box-sizing: border-box;
}
body {
    font-size: 16px;
    background-color: #fff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    text-align: left;
    margin: 0px;

}
.fs-31, h1 {
    font-size: 31px;
}
.fs-25, h3 {
    font-size: 25px;
}
.fs-20, .text-block-2, h4 {
    font-size: 20px;
}
.fs-15, .sidebar a, h6 {
    font-size: 15px;
}
.fs-10, h7 {
    font-size: 10px;
}
.fs-30, footer .f_title span, h2 {
    font-size: 25px!important;
    font-weight: 400!important;
    color: #000!important;
}
#footer, #footer a:not(.btn), .f_menu1 li a, footer, footer p a {
    color: #96a1b1;
}
.fa-star-o:before {
    content: "\f005"}
.fa-idcard:before {
    content: "\f47f"}
.fa-chevron-right:before {
    content: "\f054"}
.fa-search:before {
    content: "\f002"}
.fa-couch:before {
    content: "\f4b8"}
.fa-comments:before {
    content: "\f075"}
.fa-truck-loading:before {
    content: "\f4de"}
.fa-people-carry:before {
    content: "\f4ce"}
.fa-past:before {
    content: "\f0ea"}
.fa-arrows-alt-h:before {
    content: "\f337"}
.fa-sync-alt:before {
    content: "\f2f1"}
.fa-user:before {
    content: "\f007"}
.fa-phone, .icon-phone {
    --fa: "\f095"}
.icon-check:before {
    content: "\e918"}
.icon-th-menu:before {
    content: "\e917"}
.icon-square:before {
    content: "\f0c8"}
.icon-dot-circle-o:before {
    content: "\f192"}
.icon-star:before {
    content: "\e915"}
.icon-icon-dir-1:before {
    content: "\e901"}
.icon-icon-lock:before {
    content: "\e902"}
.icon-copyright-regular:before {
    content: "\e903"}
.icon-circle-regular:before {
    content: "\e904"}
.icon-circle-solid:before {
    content: "\e905"}
.icon-long-arrow-alt-right-solid:before {
    content: "\e906"}
.icon-chevron-right-solid:before {
    content: "\e907"}
.icon-envelope-regular:before {
    content: "\f0e0"}
.icon-clock-regular:before {
    content: "\f017"}
.fa-whatsapp:before, .icon-whatsapp-brands:before {
    content: "\f232"}
.fa-whatsapp-square:before {
    content: "\f40c"}
.icon-linkedin-in-brands:before {
    content: "\e90b"}
.icon-twitter-brands:before, .twitter-brands:before {
    content: "\f099"}
.facebook-f-brands:before, .icon-facebook-f-brands:before {
    content: "\f09a"}
.icon-chevron-up-solid:before {
    content: "\e910"}
.fa-plus:before, .icon-plus-solid:before {
    content: "\f067"}
.icon-user-lock-solid:before {
    content: "\e914"}
.icon-home:before {
    content: "\e900"}
.icon-checkbox-checked:before {
    content: "\ea52"}
.icon-checkbox-unchecked:before {
    content: "\ea53"}
.icon-pinterest:before, .pinterest:before {
    content: "\f0d2"}
pre {
    white-space: initial!important;
}
body.custom-background {
    background-color: #fff!important;
}
.content_article a:hover {
    text-decoration: underline;
}
#archive .one-post h4 a, #last_blog article h4 a, #send_to_form, #single .widget .f_title, #single .widget ul.toc_widget_list li a, .cat-item>a:hover, .closebtn, .f_menu1 li a, .link-block-2, .menu_responsive ul:not(.sub-menu) li a, .mod2_button a, .overlay nav ul li a, .phone_top_bar a, .sidebar a, .toc a:hover, .topnav a, a, ul.menu_top li a {
    text-decoration: none;
}
#footer a, .widget .menu-top-menu-container ul li a {
    color: #96a1b1!important;
}
.widget .cat-item a:before, .widget .menu-item a:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free"!important;
    font-weight: 900;
    margin-left: -11px;
    margin-right: 6px;
    font-size: .45rem;
    opacity: .7;
    vertical-align: middle;
}
.txt_transofrm {
    text-transform: capitalize;
}
.fs-50 {
    font-size: 50px;
}
.m-b-37 {
    margin-bottom: 37px;
}
.m-b-0, p {
    margin-bottom: 0;
}
.content_grid .content-grid-item {
    display: flex;
    overflow: hidden;
    margin: 0!important;
    padding: 0!important;
    flex-wrap: wrap;
}
.content-grid-item:before {
    border-left: 1px solid #dadada;
    height: 100%;
    top: 0;
    left: -1px;
}
.content-grid .content-grid-item:after, .content-grid-item:before {
    content: '';
    position: absolute;
}
.fontBolder {
    font-size: 16px;
    font-weight: bolder!important;
}
#archive .one-post h4 {
    margin-top: 0;
    margin-bottom: 10px;
}
.breadcrumbs_ {
    padding: 10px 0;
    margin: 0 0 30px;
    background: #f7f7f7;
}
.menu__respo, .overlay, .phone_top_bar a {

    text-align: center;
}
.breadcrumbs_icon {
    top: 0;
    margin-left: 7px;
    margin-right: 7px;
    color: #08c;
    font-size: 10px;
}
.heading_ {
    top: -3px;
}
.menu__respo, .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    margin: 0;
    bottom: 0;
}
.cat-item>a, .widget>div>ul li>a, .widget>ul li>a {
    text-decoration: none;
    color: #96a1b1;
    display: inline-block;
}
.toc a:hover {
    color: #ff4500!important;
}
@keyframes navItemArrow {
    0%, 100% {
    position: relative;
    right: -1px;
}
50% {
    position: relative;
    right: 3px;
}
}.widget_archive>ul li a:before, .widget_categories>ul li a:before, .widget_meta>ul li a:before, .widget_nav_menu>div>ul li a:before, .widget_pages>ul li a:before, .widget_recent_comments>ul li a:before, .widget_recent_entries>ul li a:before, .widget_rss>ul li a:before, .wp-block-archives-list li a:before, .wp-block-categories-list li a:before, .wp-block-latest-posts li a:before {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: -11px;
    margin-right: 6px;
    font-size: .45rem;
    opacity: .7;
    vertical-align: middle;
}
.menu-top-menu-container>ul li>a:hover:before, .widget_categories>ul li>a:hover:before {
    animation: .6s linear infinite navItemArrow;
}
#footer a:not(.btn) {
    transition: .1s ease-in-out;
}
.footer .menu-top-menu-container ul li {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(150, 161, 177, .3);
    margin-top: 10px;
}
.footer .menu-top-menu-container ul li a {
    position: relative;
    left: 10px;
}
.menu__respo {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}
.overlay {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: visibility 0s .4s, -webkit-transform .4s ease-in-out;
}
.overlay nav ul {
    padding: 90px 15px 30px;
    margin: 0;
}
.overlay nav ul li a {
    color: #fff;
    font-family: inherit;
    font-size: 23px;
    display: block;
    line-height: 40px;
}
.overlay nav ul li a:hover {
    color: #f71e00;
}
.overlay .overlay-close {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 20px;
    top: 20px;
    overflow: hidden;
    border: none;
    text-indent: 200%;
    color: transparent;
    outline: 0;
    z-index: 100;
    cursor: pointer;
}
.overlay-slidedown {
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: visibility 0s .4s, -webkit-transform .4s ease-in-out;
    transition: visibility 0s .4s, -webkit-transform .4s ease-in-out;
}
#single .widget .f_title {
    color: #313131;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1em;
    margin-top: 0;
}
.content {
    display: inline;
    color: #d3d3d3;
    font-size: 10px;
    font-weight: 700;
}
.border-bottom {
    border-bottom: 1px solid #d3d3d3!important;
}
.formBorderD {
    border: 1px solid #d3d3d3;
    line-height: 42px;
    border-radius: 4px!important;
    background: #fff;
}
.fa, .fas, footer .f_title span {
    line-height: 1;
    font-weight: 900;
}
.formBorderNo {
    border: 1px solid #d3d3d3;
    border-radius: 4px!important;
    background: #fff;
}
.color {
    color: #af2855;
    margin-right: 12px;
}
.text-left {
    text-align: left!important;
}
@font-face {
    font-family: hkgrotesk;
    src: url('/static/css/fonts/hkgrotesk-regular.woff2') format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: hkgrotesk;
    src: url('/static/css/fonts/hkgrotesk-bold.woff2') format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-display: swap;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    src: url('/static/css/fonts/icons/fa-solid-900.eot');
    src: url('/static/css/fonts/icons/fa-solid-900.eot?#iefix') format("embedded-opentype"), url('/static/css/fonts/icons/fa-solid-900.woff2') format("woff2"), url('/static/css/fonts/icons/fa-solid-900.woff') format("woff"), url('/static/css/fonts/icons/fa-solid-900.ttf') format("truetype"), url('/static/css/fonts/icons/fa-solid-900.svg#fontawesome') format("svg");
}
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/static/css/fonts/icons/fa-regular-400.eot');
    src: url('/static/css/fonts/icons/fa-regular-400.eot?#iefix') format("embedded-opentype"), url('/static/css/fonts/icons/fa-regular-400.woff2') format("woff2"), url('/static/css/fonts/icons/fa-regular-400.woff') format("woff"), url('/static/css/fonts/icons/fa-regular-400.ttf') format("truetype"), url('/static/css/fonts/icons/fa-regular-400.svg#fontawesome') format("svg");
}


@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins/Poppins-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}



.fa, .fas {
    display: inline-block;
    text-rendering: auto;
}
[class*=" icon-"], [class^=icon-] {
    font-weight: 900;
    text-transform: none;
    line-height: 1;
}
.closebtn, .f_base_1, .font-weight-700, .mod2 .mod2_title1, .phone_top_bar a, .txt-bold, a {
    font-weight: 700;
}
.fa-info-circle:before {
    content: "\f05a"}
.fa-bars:before, .fa-navicon:before {
    content: "\f0c9"}
@-webkit-keyframes fa-spin {
    0% {
    transform: rotate(0);
}
100% {
    transform: rotate(359deg);
}
}.fa-spin {
    -webkit-animation: 2s linear infinite fa-spin;
    animation: 2s linear infinite fa-spin;
}
.fa-spinner:before {
    content: "\f110"}
.icon-tags-solid:before {
    content: "\f02c"}
.icon-award-solid:before {
    content: "\f559"}
.icon-truck-solid:before {
    content: "\f0d1"}
.fa-times:before {
    content: "\f00d"}
#header_hero, .b_home_input, .bg-white, .btnScn {
    background-color: #fff;
}
#flexible, #moving_date {
    background: 0 0;
    line-height: 44px;
    font-weight: 800;
    letter-spacing: 1px;
    outline: 0;
}
.container, .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.container-fluid:after, .container-fluid:before, .container:after, .container:before, .row:after, .row:before {
    content: " "}
p {
    margin-top: 0;
}
.phone_top_bar {
    float: right;
    line-height: 77px;
}
/*.phone_top_bar a {
    color: #fff!important;
    margin-bottom: 0;
    border: 1px solid transparent;
    white-space: nowrap;
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 20px;
}
.phone_top_bar a .icon-phone {
    transform: rotate(90deg);
    margin-right: 7px;
    font-size: 16px;
}*/
.bg_image, .menu_responsive {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%}
.bg_primary, .mod2_button a:hover {
    background-color: var(--colorgraylight);
    color: #000;
}
.bg_image .bg_image_color {
    background-color: var(--secondaryColor);
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .9;
}
.bg_image .bg_image_child {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
}
.menu_responsive {
    display: none;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 40px;
    background-color: rgba(11, 0, 77, .82);
    z-index: 1000;
}
.menu_responsive ul:not(.sub-menu) li a {
    color: #fff;
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.menu_responsive ul:not(.sub-menu) li a span {
    margin-right: 13px;
}
#header_hero .hero_title {
    font-weight: 700;
    font-style: normal;
    font-size: 35px;
    line-height: 40px;
}
#header header {
    position: relative;
    z-index: 9999;
}
#header header nav {
    z-index: 1;
    line-height: 1.33;
    color: #403e3d;
}
.menu_mobile {
    float: right;
    margin-left: 10px;
    cursor: pointer;
    display: none;
}
.menu_mobile a, .menu_mobile span {
    font-size: 20px;
    position: relative;
    top: 30px;
}
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.noselect {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}
.label_for {
    line-height: 33px;
}
.paddingzero {
    padding: 0;
}
.equipedem {
    margin: 0 0 0 1px;
    top: 20px;
    position: absolute;
}
.f_base_1 {
    font-size: 14px;
    margin-left: 1px;
}
.btnCalc, .btnFa {
    margin-left: 0!important;
    margin-right: 0!important;
}
.current-menu-item>a {
    color: var(--colorFavoride)!important;
}
.border_dem_left {
    border-left: 1px solid #dadada;
}
.border_dem_bottom {
    border-bottom: 1px solid #dadada;
    border-top: 1px solid #dadada;
}
.size-full, img {
    max-width: 100%;
    height: auto;
}
.form-control, input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {
    border: 1px solid;
    outline: 0;
    box-shadow: none;
    text-align: left;
    line-height: 1.42857;
    padding: 8px 12px;
    font-size: .85rem;
    vertical-align: middle;
    height: 48px;
}
#moving_date, .jflex {
    color: #000;
    padding-left: 2px;
}
.fs-16, input, select, textarea {
    font-size: 16px;
}
.jflex {
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 0!important;
}
.comparateurSteps__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
.comparateurSteps__progress-btn {
    position: relative;
    padding-top: 20px;
    border: none;
    background-color: transparent;
    outline: 0!important;
}
.btnSubmitForm, .btnSubmitFormHome, .comparateurSteps__progress-btn.js-active:before {
    background-color: var(--couleurBleu);
}
.comparateurSteps__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 2px solid #c6c6c6;
    border-radius: 50%;
    background-color: #c6c6c6;
    box-sizing: border-box;
    z-index: 3;
}
.comparateurSteps__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    display: block;
    width: 100%;
    height: 1px;
    content: '';
    background-color: #c6c6c6;
    z-index: 1;
}
.comparateurSteps__progress-btn:first-child:after, .hide, .topnav #myLinks {
    display: none;
}
.comparateurSteps__progress-btn.js-active:before {
    border-color: var(--primaryColor);
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
}
.div-plus-moins.groupe-input>.groupe-input-btn {
    width: 1%}
.div-plus-moins.groupe-input {
    display: table;
}
.comparateur_element .btn-number {
    height: 3rem!important;
}
.groupe-input .groupe-input-btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    display: table-cell;
}
.groupe-input-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
    vertical-align: middle;
}
.divins {
    height: 3rem;
    width: 100%;
    border: 1px solid #d3d3d3!important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: none!important;
    border-left: none!important;
}
.groupe-input-btn:not(:first-child)>.btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
button, input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.btnCalc, button {
    line-height: 24px!important;
}
.txt_mobile_newx {
    background: var(--primaryColor);
}
.closebtn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bFontWeight, .buttonInfoTxt, .font-weight-600, .mod2_button a, footer .f_title {
    font-weight: 600;
}
.demenager36 {
    display: block!important;
    background: #fff!important;
    color: #000!important;
}
.btnScn, .btnScn:hover {
    color: #373a3c;
}
#flexible {
    width: 24%;
    padding-left: 0;
    border: none;
    font-size: 14px;
    color: #000;
    margin-left: 18px;
}
#moving_date, .jours {
    text-align: left;
    display: inline-block;
}
.b_home_input {
    border-radius: 4px;
    height: 3rem;
    border: 1px solid #d3d3d3;
    border-top-right-radius: 0!important;
    border-bottom-right-radius: 0!important;
    border-right: none;
}
.b_home_input_container .b_home_date_txt {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 52px;
}
.b_home_input_container .b_home_date_input .icon-calendar-solid {
    color: var(--primaryColor);
    cursor: pointer;
    font-size: 21px;
    display: block;
    float: left;
    border-right: 3px solid #fff;
    margin-right: 20px;
    padding: 12px 4px 12px 9px;
    position: absolute;
}
#moving_date, .moving_date {
    height: 2.9rem;
    border: none!important;
    font-size: 13px;
    width: 85%;
    position: relative;
    cursor: pointer;
}
.noBorderInput {
    border: none!important;
    width: 100%!important;
}
.images_banner {
    min-height: auto;
}
.btnCalc {
    font-size: 13px!important;
}
.divinsjours {
    border-left: 1px solid #d3d3d3!important;
    border-bottom-left-radius: 0!important;
    border-top-left-radius: 0!important;
}
.btnScn, .btnScn.focus, .btnScn:focus, .btnScn:hover {
    border-color: #2aabd2;
}
.jours {
    width: 75%;
    margin-left: 5px;
}
button {
    font-size: 14px;
    font-weight: 600!important;
    font-family: 'HK Grotesk', sans-serif!important;
    border: none;
    height: 47px;
}
.font-weight-300, .mod3 p, footer {
    font-weight: 300;
}
hr {
    margin-bottom: 20px;
    border: .1px solid #d3d3d3;
}
.btnScn:hover {
    background-color: #e7e7e7;
}
.btnScn.active, .btnScn.disabled:hover, .btnScn.focus, .btnScn:active, .btnScn:disabled:hover, .btnScn:focus {
    color: #fff;
    background-color: #e7e7e7;
}
.btnScn.active, .btnScn:active {
    background-image: none;
}
.btnScn.active.focus, .btnScn.active:focus, .btnScn.active:hover, .btnScn:active.focus, .btnScn:active:focus, .btnScn:active:hover {
    color: #fff;
    background-color: #e7e7e7;
}
.btnScn.disabled.focus, .btnScn.disabled:focus, .btnScn:disabled.focus, .btnScn:disabled:focus {
    color: #fff;
    background-color: #e7e7e7;
}
.helpbtn:active, .helpbtn:disabled:hover {
    color: #8baac1;
    border: 2px solid #dce3e6;
    line-height: 1.18;
}
.helpbtn:focus, .helpbtn:hover {
    border-color: #22a4d7;
    color: #22a4d7;
    background-color: #fff;
}
.btnInfoo.active, .btnInfoo:active {
    color: #fff;
    background-color: #31b0d5;
    background-image: none;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none!important;
}
.btnInfoo {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 50px;
    color: #6ea8d8;
    background: #fff;
    border-color: #d3d3d3;
    margin: 0 auto;
    padding: 0;
    outline: 0!important;
}
.bg_sec, .btnSubmitForm, .btnSubmitForm:focus, .btnSubmitFormHome, .btnSubmitFormHome:focus {
    background-color: var(--colorFavoride);
}
.btn {
    border-radius: .25rem;
}
.borderLeft {
    border: 1px solid #6ea8d8;
}
.btnSubmitForm:focus {
    color: #fff;
    cursor: not-allowed;
}
.btnSubmitForm {
    width: 100%;
    color: #fff;
    font-size: 21px;
    cursor: pointer;
}
.btnSubmitFormHome {
    width: 100%;
    color: #fff;
    font-weight: 100!important;
    cursor: pointer;
}
.btnSubmitForm:not(:focus):hover, .btnSubmitFormHome:not(:focus):hover {
    background-color: var(--colorOrangeRed);
    color: #fff;
    border-color: #fff;
}
#moving_date::placeholder {
    font-weight: 100!important;
    color: #000!important;
    font-size: 14px;
    letter-spacing: 0!important;
}
.buttonInfoTxt {
    margin-left: 10px;
    text-align: center;
    font-size: 20px;
}
.link-block-2 {
    color: #fff!important;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    padding: 12px 30px;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--secondaryColor);
}
.div1 {
    height: 25px;
    margin-bottom: 4px;
}
.div2 {
    height: 28px;
}
.div3 {
    height: 35px;
    margin-top: 28px;
}
.txtOptx {
    border: none!important;
    text-align: center;
    font-weight: 700;
    height: 2.9rem!important;
}
@-webkit-keyframes fpFadeInDown {
    from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
}
to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
}@keyframes fpFadeInDown {
    from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
}
to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
}.input-daterange input:first-child {
    border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
    border-radius: 0 3px 3px 0;
}
.input-daterange .input-group-addon {
    width: auto;
    min-width: 16px;
    padding: 4px 5px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eee;
    border: solid #ccc;
    border-width: 1px 0;
    margin-left: -5px;
    margin-right: -5px;
}
.hrFront {
    border-top: 4px solid var(--primaryColor);
}
#send_to_form {
    padding: 7px;
}
input[type=number] {
    -moz-appearance: textfield;
}
.txt_mobile_menu {
    text-decoration: none!important;
    padding: 12px;
}
.col, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}
.col, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    float: left;
}
.col-xs-11 {
    width: 91.66666667%}
.col-xs-10 {
    width: 83.33333333%}
.col-xs-9 {
    width: 75%}
.col-xs-8 {
    width: 66.66666667%}
.col-xs-7 {
    width: 58.33333333%}
.col-xs-5 {
    width: 41.66666667%}
.col-xs-4 {
    width: 33.33333333%}
.col-xs-2 {
    width: 16.66666667%}
.col-xs-1 {
    width: 8.33333333%}
.clearfix, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .row:after, .row:before {
    content: " ";
    display: table;
}
.col-smx-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%}
@media (min-width:768px) {
    .rowx.equal-height {
    display: flex;
    flex-wrap: wrap;
}
.rowx.equal-height>[class*=col-] {
    display: flex;
    flex-direction: column;
}
.rowx.equal-height>[class*=col-]>#imageinfo {
    flex-grow: 1;
    padding-bottom: 20px;
}
.h1_ {
    font-size: 22px!important;
    line-height: 26px!important;
}
.container {
    width: 750px;
}
.col, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
    float: left;
}
.col-sm-12 {
    width: 100%}
.col-sm-11 {
    width: 91.66666667%}
.col-sm-10 {
    width: 83.33333333%}
.col-sm-9 {
    width: 75%}
.col-sm-8 {
    width: 66.66666667%}
.col-sm-7 {
    width: 58.33333333%}
.col-sm-6 {
    width: 50%}
.col-sm-5 {
    width: 41.66666667%}
.col-sm-4 {
    width: 33.33333333%}
.col-sm-3 {
    width: 25%}
.col-sm-2 {
    width: 16.66666667%}
.col-sm-1 {
    width: 8.33333333%}
}@media (min-width:992px) {
    .section2: before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #fff;
    left: 50%;
    transform: translateX(-50%);
}
.h1_ {
    font-size: 22px!important;
    line-height: 26px!important;
}
.container {
    width: 970px;
}
.col, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
    float: left;
}
.col-md-12 {
    width: 100%}
.col-md-11 {
    width: 91.66666667%}
.col-md-10 {
    width: 83.33333333%}
.col-md-9 {
    width: 75%}
.col-md-8 {
    width: 66.66666667%}
.col-md-7 {
    width: 58.33333333%}
.col-md-6 {
    width: 50%}
.col-md-5 {
    width: 41.66666667%}
.col-md-4 {
    width: 33.33333333%}
.col-md-3 {
    width: 25%}
.col-md-2 {
    width: 16.66666667%}
.col-md-1 {
    width: 8.33333333%}
}@media (min-width:1200px) {
    .topnav #myLinks {
    display: none!important;
}
.section2:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #fff;
    left: 50%}
.container {
    width: 1170px;
}
.col, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
    float: left;
}
.col-lg-12 {
    width: 100%}
.col-lg-11 {
    width: 91.66666667%}
.col-lg-10 {
    width: 83.33333333%}
.col-lg-9 {
    width: 75%}
.col-lg-8 {
    width: 66.66666667%}
.col-lg-7 {
    width: 58.33333333%}
.col-lg-6 {
    width: 50%}
.col-lg-5 {
    width: 41.66666667%}
.col-lg-4 {
    width: 33.33333333%}
.col-lg-3 {
    width: 25%}
.col-lg-2 {
    width: 16.66666667%}
.col-lg-1 {
    width: 8.33333333%}
}.clearfix:after, .container-fluid:after, .container:after, .row:after {
    clear: both;
}
.logo_container a {
    width: 100%;
    display: block;
    position: relative;
    text-transform: uppercase;
}
.logo-app {
    height: 100%;
    width: 100%;
    max-width: 470px;
    max-height: 65px;
}
.topnav {
    overflow: hidden;
    position: relative;
}
.menu {
    list-style: none;
    padding-left: 4px;
    margin-bottom: 0;
}
.topnav a.icon {
    background: #000;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}
.topnav a:hover {
    background-color: #ddd;
    color: #000;
}
.no_margin {
    margin-bottom: 5px!important;
}
.txt_mobile_newx {
    text-decoration: none!important;
    text-transform: uppercase;
    padding: 12px;
    background: var(--primaryColor);
}
.closebtn {
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
}
.sidebar, ul.menu_top li ul.sub-menu {
    display: none;
    position: absolute;
    background: #fff;
}
.has-danger:before, .has-dangerHome:before {
    content: "\2715";
    display: inline-block;
    right: 6px;
    color: red;
}
.sidebar {
    min-height: calc(100vh - 60px);
    font-family: Nunito, sans-serif;
    font-weight: 500;
    padding: 0;
    width: 235px;
    z-index: 11;
    transition: width .25s, background .25s;
    -webkit-transition: width .25s, background .25s;
    -moz-transition: width .25s, background .25s;
    -ms-transition: width .25s, background .25s;
    border-left: 1px solid #d3d3d3;
    right: 0;
}
.app_comparateur {
    padding-top: 98px;
}
.has-danger:before {
    font-weight: 700;
    margin-top: 5px;
    position: absolute;
}
.has-dangerHome:before {
    font-weight: 700;
    position: absolute;
    top: 30%}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
ul.menu_top {
    padding: 0;
    margin: 0;
    float: left;
}
ul.menu_top li:hover ul.sub-menu {
    display: block;
    visibility: visible;
    z-index: 250;
}
ul.menu_top li ul.sub-menu {
    margin: 0;
    padding: 0;
    border-top: 2px solid var(--secondaryColor);
    box-shadow: 0 14px 36px 0 rgba(0, 0, 0, .1);
    width: 280px;
}
ul.menu_top li ul.sub-menu li {
    line-height: 40px;
    width: 100%;
    height: 100%}
ul.menu_top li ul.sub-menu li a {
    position: relative;
    width: 100%;
    height: 40px;
    display: block;
    line-height: 40px;
    white-space: nowrap;
    color: #777;
    border-bottom: 1px solid #f3f3f3;
}
ul.menu_top li ul.sub-menu li a:hover {
    background-color: #ececec;
}
ul.menu_top li a {
    color: #444;
    padding-left: 10px;
    line-height: 78px;
    font-size: 16px;
    font-weight: 700;
}
.mod2_button a {
    background: #fff;
    font-size: 1.2em;
    padding: 15px 40px;
    border-radius: 35px;
    border: 2px solid;
}
.mod2 .mod2_title1 span {
    padding-left: 5px;
    padding-right: 5px;
}
.mod2 .mod2_title2 {
    font-size: 17px;
    color: var(--primaryColor);
}
.fs-35, .mod1 .h1_, .title_1 {
    font-size: 35px;
}
.fs-40 {
    font-size: 40px;
}
.mod_testimonial .mod2_testimonial_one_item {
    padding: 10px;
    background-color: #fff;
}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_image_container {
    max-height: 60px;
    position: relative;

}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_image_container img {
    width: 100px;
    height: 50px;
    object-fit: contain;
}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_title {
    font-weight: 700;
    font-size: 21px;
    line-height: 24px;
    color: #212529;
    font-family: Poppins, sans-serif;
    margin-bottom: 10px;
}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_date {
    min-height: 40px;
}
.m-b-15, .mod_testimonial .mod2_testimonial_one_item .mod2_t_rating_ {
    margin-bottom: 15px;
}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_rating_ .mod2_t_star_container {
    position: relative;
    letter-spacing: 3px;
}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_rating_ .mod2_t_star_container .mod2_t_star_inner {
    position: absolute;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    letter-spacing: inherit;
}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_rating_ .mod2_t_star_container .mod2_t_star_inner::before {
    font-weight: 900;
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 5 Free"!important;
    color: #f4ac00;
}
.mod_testimonial .mod2_testimonial_one_item .mod2_t_rating_ .mod2_t_star_container::before {
    font-weight: 900;
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 5 Free"!important;
    color: #ccc;
}
.mod1 .h1_ {
    font-style: normal;
    font-weight: 800;
    line-height: 62px;
}
.mod1 .mod1_ {
    padding-top: 25px;
    padding-bottom: 15px;
}
.mod1 .mod1_ .m1_icon {
    font-size: 50px;
    justify-content: center;
    display: flex;
}
.h4, .mod1 .mod1_ .mod1_txt {
    font-weight: 700;
    font-size: 17px;
}
.separator_type_1 {
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--primaryColor)), to(transparent));
    background-image: linear-gradient(to right, transparent, var(--primaryColor), transparent);
    border: 0;
    height: 1px;
    text-align: center;
    position: relative;
    clear: both;
}
.separator_type_1 .icon-truck-solid {
    color: var(--primaryColor);
    font-size: 22px;
    position: relative;
    top: -12px;
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
}
footer {
    padding-top: 50px;
    padding-bottom: 50px;
}
.f_menu1 {
    margin: 0;
    padding: 0;
}
.f_menu1 li a {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    border-bottom: 1px solid #42474f;
}
.f_menu1 li a::before {
    content: "\e907";
    font-family: "Font Awesome 5 Free"!important;
    margin-right: 8px;
    position: relative;
    top: -1px;
    font-size: 10px;
}
footer .f_title {
    font-size: 16px;
    margin-bottom: 30px;
    color: #fff;
}
footer .f_title span:first-child {
    font-size: 26px;
    font-weight: 300;
}
footer .f_col2_icon {
    color: var(--primaryColor);
    margin-right: 10px;
    font-size: 16px;
    position: relative;
    top: 2px;
}
#full_width_banner .p_nous_joindre {
    margin-top: 26%}
.img_hors_shadow {
    position: relative;
    overflow: hidden;
}
.img_hors_shadow img {
    width: 100%;
    position: relative;
    bottom: -10px;
}
.mod3 .mod3_title_ {
    position: relative;
    margin-top: 10px;
    color: var(--secondaryColor);
    margin-bottom: 20px;
}
.mod3 .mod3_container_col6, .p-20 {
    padding: 20px;
}
.mod3 .mod3_icon_img {
    float: left;
    margin-right: 20px;
}
.mod3 p {
    font-size: 16px;
    text-align: justify;
}
#last_blog .last_blog_comparer {
    background: #fff;
    position: relative;
    padding-top: 20px;
}
#last_blog .last_blog_comparer a {
    text-align: center;
    font-weight: 900;
    color: var(--primaryColor);
    padding-bottom: 5px;
    position: relative;
    padding-top: 6px;
    border: 2px solid;
    margin: 0 auto;
    border-radius: 35px;
    display: block;
    text-decoration: none;
}
#last_blog .last_blog_comparer a:hover {
    color: #fff;
    background-color: var(--primaryColor);
}
#last_blog article {
    padding: 10px 20px 20px;
    margin-bottom: 30px;
}
#last_blog article h4 {
    min-height: 48px;
    margin-bottom: 10px;
}
#comparez-demenageur .mod3_container_col6 {
    min-height: 712px;
}
#media .mod2_t_title {
    min-height: 48px!important;
}
.overflow-hidden {
    overflow: hidden!important;
}
.z-index999 {
    z-index: 999!important;
}
.ff-prim, .ff-sec {
    font-family: Poppins, sans-serif!important;
}
.bg_prim {
    background-color: var(--secondaryColor);
}
.bg_gradient1 {
    background-image: linear-gradient(120deg, #fff 0, rgba(255, 255, 255, .2) 100%);
}
.text-center, .txt-center {
    text-align: center!important;
}
.margin-center {
    margin: 0 auto;
}
.vertical-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.highlight_yellow {
    background-color: #ff0;
}
.bro-15 {
    overflow: hidden;
    border-radius: 15px;
}
.nopa-l, .p-l-0 {
    padding-left: 0;
}
.nopama {
    padding: 0;
    margin: 0;
}
.box-shadow1 {
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .05);
}
.box-shadow2 {
    box-shadow: 9px 14px 36px 0 rgba(0, 0, 0, .07);
}
.border-radius-bottom-right {
    border-radius: 0 0 140px 25px;
}
.border-radius-bottom-left {
    border-radius: 0 0 25px 140px;
}
.border-radius-top-right {
    border-radius: 25px 140px 0 0;
}
.border-radius-top-left {
    border-radius: 140px 250px 0 0;
}
.m-t-50p {
    margin-top: 50%}
.p-l-5 {
    padding-left: 5px;
}
.p-r-5 {
    padding-right: 5px;
}
.p-t-5 {
    padding-top: 5px;
}
.p-b-5 {
    padding-bottom: 5px;
}
.p-5 {
    padding: 5px;
}
.p-l-10 {
    padding-left: 10px;
}
.p-t-10 {
    padding-top: 10px;
}
.p-b-10 {
    padding-bottom: 10px;
}
.p-10 {
    padding: 10px!important;
}
.p-l-15 {
    padding-left: 15px;
}
.p-r-15 {
    padding-right: 15px;
}
.p-t-15 {
    padding-top: 15px;
}
.p-b-15 {
    padding-bottom: 15px;
}
.p-15 {
    padding: 15px;
}
.p-l-20 {
    padding-left: 20px;
}
.p-r-20 {
    padding-right: 20px;
}
.p-t-20 {
    padding-top: 20px;
}
.p-b-20 {
    padding-bottom: 20px;
}
.p-l-25 {
    padding-left: 25px;
}
.p-r-25 {
    padding-right: 25px;
}
.p-t-25 {
    padding-top: 25px;
}
.p-b-25 {
    padding-bottom: 25px;
}
.p-25 {
    padding: 25px;
}
.p-l-30 {
    padding-left: 30px;
}
.p-r-30 {
    padding-right: 30px;
}
.p-t-30 {
    padding-top: 30px;
}
.p-b-30 {
    padding-bottom: 30px;
}
.p-30 {
    padding: 30px;
}
.p-l-35 {
    padding-left: 35px;
}
.p-r-35 {
    padding-right: 35px;
}
.p-t-35 {
    padding-top: 35px;
}
.p-b-35 {
    padding-bottom: 35px;
}
.p-35 {
    padding: 35px;
}
.p-l-40 {
    padding-left: 40px;
}
.p-r-40 {
    padding-right: 40px;
}
.p-t-40 {
    padding-top: 40px;
}
.p-b-40 {
    padding-bottom: 40px;
}
.p-40 {
    padding: 40px;
}
.p-l-45 {
    padding-left: 45px;
}
.p-r-45 {
    padding-right: 45px;
}
.p-t-45 {
    padding-top: 45px;
}
.p-b-45 {
    padding-bottom: 45px;
}
.p-45 {
    padding: 45px;
}
.p-l-50 {
    padding-left: 50px;
}
.p-r-50 {
    padding-right: 50px;
}
.p-t-50 {
    padding-top: 50px;
}
.p-b-50 {
    padding-bottom: 50px;
}
.p-50 {
    padding: 50px;
}
.p-l-55 {
    padding-left: 55px;
}
.p-r-55 {
    padding-right: 55px;
}
.p-t-55 {
    padding-top: 55px;
}
.p-b-55 {
    padding-bottom: 55px;
}
.p-55 {
    padding: 55px;
}
.p-l-60 {
    padding-left: 60px;
}
.p-r-60 {
    padding-right: 60px;
}
.p-t-60 {
    padding-top: 60px;
}
.p-b-60 {
    padding-bottom: 60px;
}
.p-60 {
    padding: 60px;
}
.p-l-65 {
    padding-left: 65px;
}
.p-r-65 {
    padding-right: 65px;
}
.p-t-65 {
    padding-top: 65px;
}
.p-b-65 {
    padding-bottom: 65px;
}
.p-65 {
    padding: 65px;
}
.p-l-70 {
    padding-left: 70px;
}
.p-r-70 {
    padding-right: 70px;
}
.p-t-70 {
    padding-top: 70px;
}
.p-b-70 {
    padding-bottom: 70px;
}
.p-70 {
    padding: 70px;
}
.p-l-75 {
    padding-left: 75px;
}
.p-r-75 {
    padding-right: 75px;
}
.p-t-75 {
    padding-top: 75px;
}
.p-b-75 {
    padding-bottom: 75px;
}
.p-75 {
    padding: 75px;
}
.p-l-80 {
    padding-left: 80px;
}
.p-r-80 {
    padding-right: 80px;
}
.p-t-80 {
    padding-top: 80px;
}
.p-b-80 {
    padding-bottom: 80px;
}
.p-80 {
    padding: 80px;
}
.p-l-85 {
    padding-left: 85px;
}
.p-r-85 {
    padding-right: 85px;
}
.p-t-85 {
    padding-top: 85px;
}
.p-b-85 {
    padding-bottom: 85px;
}
.p-85 {
    padding: 85px;
}
.p-l-90 {
    padding-left: 90px;
}
.p-r-90 {
    padding-right: 90px;
}
.p-t-90 {
    padding-top: 90px;
}
.p-b-90 {
    padding-bottom: 90px;
}
.p-90 {
    padding: 90px;
}
.p-l-95 {
    padding-left: 95px;
}
.p-r-95 {
    padding-right: 95px;
}
.p-t-95 {
    padding-top: 95px;
}
.p-b-95 {
    padding-bottom: 95px;
}
.p-95 {
    padding: 95px;
}
.p-l-100 {
    padding-left: 100px;
}
.p-r-100 {
    padding-right: 100px;
}
.p-t-100 {
    padding-top: 100px;
}
.p-b-100 {
    padding-bottom: 100px;
}
.p-100 {
    padding: 100px;
}
.p-l-105 {
    padding-left: 105px;
}
.p-r-105 {
    padding-right: 105px;
}
.p-t-105 {
    padding-top: 105px;
}
.p-b-105 {
    padding-bottom: 105px;
}
.p-105 {
    padding: 105px;
}
.p-l-110 {
    padding-left: 110px;
}
.p-r-110 {
    padding-right: 110px;
}
.p-t-110 {
    padding-top: 110px;
}
.p-b-110 {
    padding-bottom: 110px;
}
.p-110 {
    padding: 110px;
}
.m-l-5 {
    margin-left: 5px;
}
.m-r-5 {
    margin-right: 5px;
}
.m-t-5 {
    margin-top: 5px;
}
.m-b-5 {
    margin-bottom: 5px;
}
.m-5 {
    margin: 5px;
}
.m-l-10 {
    margin-left: 10px;
}
.m-r-10 {
    margin-right: 10px;
}
.m-10 {
    margin: 10px;
}
.m-l-15 {
    margin-left: 15px;
}
.m-r-15 {
    margin-right: 15px;
}
.m-t-15 {
    margin-top: 15px;
}
.m-15 {
    margin: 15px;
}
.m-l-20 {
    margin-left: 20px;
}
.m-r-20 {
    margin-right: 20px;
}
.m-t-20 {
    margin-top: 20px;
}
.m-b-20 {
    margin-bottom: 20px;
}
.m-20 {
    margin: 20px;
}
.m-l-25 {
    margin-left: 25px;
}
.m-r-25 {
    margin-right: 25px;
}
.m-t-25 {
    margin-top: 25px;
}
.m-b-25 {
    margin-bottom: 25px;
}
.m-25 {
    margin: 25px;
}
.m-l-30 {
    margin-left: 30px;
}
.m-r-30 {
    margin-right: 30px;
}
.m-t-30 {
    margin-top: 30px;
}
.m-b-30 {
    margin-bottom: 30px;
}
.m-30 {
    margin: 30px;
}
.m-l-35 {
    margin-left: 35px;
}
.m-r-35 {
    margin-right: 35px;
}
.m-t-35 {
    margin-top: 35px;
}
.m-b-35 {
    margin-bottom: 35px;
}
.m-35 {
    margin: 35px;
}
.m-l-40 {
    margin-left: 40px;
}
.m-r-40 {
    margin-right: 40px;
}
.m-t-40 {
    margin-top: 40px;
}
.m-b-40 {
    margin-bottom: 40px;
}
.m-40 {
    margin: 40px;
}
.m-l-45 {
    margin-left: 45px;
}
.m-r-45 {
    margin-right: 45px;
}
.m-t-45 {
    margin-top: 45px;
}
.m-b-45 {
    margin-bottom: 45px;
}
.m-45 {
    margin: 45px;
}
.m-l-50 {
    margin-left: 50px;
}
.m-r-50 {
    margin-right: 50px;
}
.m-t-50 {
    margin-top: 50px;
}
.m-b-50 {
    margin-bottom: 50px;
}
.m-50 {
    margin: 50px;
}
.m-l-55 {
    margin-left: 55px;
}
.m-r-55 {
    margin-right: 55px;
}
.m-t-55 {
    margin-top: 55px;
}
.m-b-55 {
    margin-bottom: 55px;
}
.m-55 {
    margin: 55px;
}
.m-l-60 {
    margin-left: 60px;
}
.m-r-60 {
    margin-right: 60px;
}
.m-t-60 {
    margin-top: 60px;
}
.m-b-60 {
    margin-bottom: 60px;
}
.m-60 {
    margin: 60px;
}
.m-l-65 {
    margin-left: 65px;
}
.m-r-65 {
    margin-right: 65px;
}
.m-t-65 {
    margin-top: 65px;
}
.m-b-65 {
    margin-bottom: 65px;
}
.m-65 {
    margin: 65px;
}
.m-l-70 {
    margin-left: 70px;
}
.m-r-70 {
    margin-right: 70px;
}
.m-t-70 {
    margin-top: 70px;
}
.m-b-70 {
    margin-bottom: 70px;
}
.m-70 {
    margin: 70px;
}
.m-l-75 {
    margin-left: 75px;
}
.m-r-75 {
    margin-right: 75px;
}
.m-t-75 {
    margin-top: 75px;
}
.m-b-75 {
    margin-bottom: 75px;
}
.m-75 {
    margin: 75px;
}
.m-l-80 {
    margin-left: 80px;
}
.m-r-80 {
    margin-right: 80px;
}
.m-t-80 {
    margin-top: 80px;
}
.m-b-80 {
    margin-bottom: 80px;
}
.m-80 {
    margin: 80px;
}
.m-l-85 {
    margin-left: 85px;
}
.m-r-85 {
    margin-right: 85px;
}
.m-t-85 {
    margin-top: 85px;
}
.m-b-85 {
    margin-bottom: 85px;
}
.m-85 {
    margin: 85px;
}
.m-l-90 {
    margin-left: 90px;
}
.m-r-90 {
    margin-right: 90px;
}
.m-t-90 {
    margin-top: 90px;
}
.m-b-90 {
    margin-bottom: 90px;
}
.m-90 {
    margin: 90px;
}
.m-l-95 {
    margin-left: 95px;
}
.m-r-95 {
    margin-right: 95px;
}
.m-t-95 {
    margin-top: 95px;
}
.m-b-95 {
    margin-bottom: 95px;
}
.m-95 {
    margin: 95px;
}
.m-l-100 {
    margin-left: 100px;
}
.m-r-100 {
    margin-right: 100px;
}
.m-t-100 {
    margin-top: 100px;
}
.m-b-100 {
    margin-bottom: 100px;
}
.m-100 {
    margin: 100px;
}
.m-l-105 {
    margin-left: 105px;
}
.m-r-105 {
    margin-right: 105px;
}
.m-t-105 {
    margin-top: 105px;
}
.m-b-105 {
    margin-bottom: 105px;
}
.m-105 {
    margin: 105px;
}
.m-l-110 {
    margin-left: 110px;
}
.m-r-110 {
    margin-right: 110px;
}
.m-t-110 {
    margin-top: 110px;
}
.m-b-110 {
    margin-bottom: 110px;
}
.m-110 {
    margin: 110px;
}
.fs-11 {
    font-size: 11px;
}
.fs-13 {
    font-size: 13px;
}
.fs-14 {
    font-size: 14px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-19 {
    font-size: 19px;
}
.fs-21 {
    font-size: 21px;
}
.fs-22 {
    font-size: 22px;
}
.fs-23 {
    font-size: 23px;
}
.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-27 {
    font-size: 27px;
}
.fs-28 {
    font-size: 28px;
}
.fs-29 {
    font-size: 29px;
}
.fs-32 {
    font-size: 32px;
}
.fs-33 {
    font-size: 33px;
}
.fs-34 {
    font-size: 34px;
}
.fs-36 {
    font-size: 36px;
}
.fs-37 {
    font-size: 37px;
}
.fs-38 {
    font-size: 38px;
}
.fs-39 {
    font-size: 39px;
}
.font-weight-100 {
    font-weight: 100;
}
.font-weight-200 {
    font-weight: 200;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-800 {
    font-weight: 800;
}
.font-weight-900 {
    font-weight: 900;
}
.with_head_size_10 {
    height: 10px;
    width: 100%}
.with_head_size_20 {
    height: 20px;
    width: 100%}
.with_head_size_30 {
    height: 30px;
    width: 100%}
.with_head_size_40 {
    height: 40px;
    width: 100%}
.with_head_size_50 {
    height: 50px;
    width: 100%}
.with_head_size_60 {
    height: 60px;
    width: 100%}
.with_head_size_70 {
    height: 70px;
    width: 100%}
.with_head_size_80 {
    height: 80px;
    width: 100%}
.with_head_size_90 {
    height: 90px!important;
    width: 100%}
.breadcrumbs_ {
    margin-top: 20px;
    margin-bottom: 20px;
}
.rating_demenageur.logo_demenageur {
    width: 100%;
    height: 105px;
    padding: 1rem .875rem;
}
.rating_demenageur {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
}
.rating_demenageur img {
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%}
.width-100 {
    width: 100%!important;
}
.width-90 {
    width: 90%!important;
}
.width-84 {
    width: 84%!important;
}
@media (min-width:1281px) {
    .listServicesLeft {
    border-right: 1px solid #d3d3d3;
}
.fs109 {
    font-size: 12px!important;
    font-weight: 100;
}
.image_home_main {
    display: block;
}
.margin-slide-top {
    margin-top: 40px!important;
}
.paddingzeroDesktop {
    padding: 0!important;
}
}@media (min-width:1025px) and (max-width:1280px) {
    .listServicesLeft {
    border-right: 1px solid #d3d3d3;
}
.fs109 {
    font-size: 9px!important;
}
.image_home_main {
    display: block;
}
.paddingzeroDesktop {
    padding: 0!important;
}
.margin-slide-top {
    margin-top: 40px!important;
}
}@media (min-width:768px) and (max-width:1024px) {
    .fs109 {
    font-size: 10px!important;
}
.image_home_main {
    display: none;
}
.custom-flex-container {
    display: initial!important;
    text-align: center;
}
.margin-slide-top {
    margin-top: 0!important;
}
.nopaddinginmobile {
    padding: 0!important;
    margin: 0!important;
}
.servicemobile {
    margin-right: 5px!important;
    margin-left: 5px!important;
}
}@media (min-width:768px) and (max-width:1024px) and (orientation:landscape) {
    .fs109 {
    font-size: 10px!important;
}
.image_home_main {
    display: none;
}
.custom-flex-container {
    display: initial!important;
    text-align: center;
}
.paddingzeroismobile {
    padding: 0;
}
.margin-slide-top {
    margin-top: 0!important;
}
.nopaddinginmobile {
    padding: 0!important;
    margin: 0!important;
}
.servicemobile {
    margin-right: 5px!important;
    margin-left: 5px!important;
}
}
@media (min-width:481px) and (max-width:767px) {
    .fs109 {
    font-size: 10px!important;
}
.image_home_main {
    display: none;
}
.custom-flex-container {
    display: initial!important;
    text-align: center;
}
.margin-slide-top {
    margin-top: 0!important;
}
.paddingzeroismobile {
    padding: 0;
}
.nopaddinginmobile {
    padding: 0!important;
    margin: 0!important;
}
.servicemobile {
    margin-right: 5px!important;
    margin-left: 5px!important;
}
}

@media (min-width:320px) and (max-width:480px) {
    .labelSize {
    font-size: 12px!important;
}
.fs109 {
    font-size: 10px!important;
}
.paddingzeroismobile {
    padding: 0;
}
.custom-flex-container {
    display: initial!important;
    text-align: center;
}
.image_home_main {
    display: none;
}
.margin-slide-top {
    margin-top: 0!important;
}
.nopaddinginmobile {
    padding: 0!important;
    margin: 0!important;
}
.servicemobile {
    margin-right: 5px!important;
    margin-left: 5px!important;
}
}
@media(max-width:320px) {
    .fs109 {
    font-size: 10px!important;
}
.paddingzeroismobile {
    padding: 0;
}
.custom-flex-container {
    display: initial!important;
    text-align: center;
}
.image_home_main {
    display: none;
}
.margin-slide-top {
    margin-top: 0!important;
}
.nopaddinginmobile {
    padding: 0!important;
    margin: 0!important;
}
.servicemobile {
    margin-right: 5px!important;
    margin-left: 5px!important;
}
}
/*
mobile css
 */
.fontsizer{
    font-size:  49px;
    justify-content:  normal;
    font-weight:  900
}
@media (max-width:768px) {
    .fontsizer{
        font-size: 29px;
    }
    .image-container{
        height: auto !important;
    }
    .demenageurs-container {
            flex-direction: column;
            align-items: center;
        }
        .demenageur-card {
            width: 100%;
        }
        .dem-card {
            width: 100%;
        }

    .btnSubmitFormHomeDiv2{
        width: 50% !important;
    }
    .containerEtapes{
        width: 100% !important; ;
          padding-right: 15px !important;
        padding-left: 15px !important;

    }
    .border_transparent{
            border-right: 0px solid transparent !important;
    }

    .containerCenter{
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    #imageinfo img, .ifleche {
    position: relative;
}
.headerMobile {
    padding-top: 10px;
    padding-bottom: 10px;
}
.background_slide {
    padding: 20px 5px 15px;
    border-radius: 10px;
    background: var(--couleurVertPastel);
}
.image_demenageur {
    height: 100%;
    width: 72%;
    object-fit: cover;
}
.flechbutton {
    justify-content: end;
    height: 40px;
}
.imagedemenageur {
    top: 5px!important;
}
.ifleche {
    color: #fff;
    font-size: 20px!important;
    top: 3px!important;
    left: 0!important;
}
.bhome {
    font-size: 40px!important;
    margin-bottom: 0!important;
    color: #000!important;
    letter-spacing: 1px;
    line-height: 33px!important;
}
.accopagnement {
    font-weight: 100!important;
    margin-top: 0!important;
    margin-bottom: 5px!important;
}
.part2, .toc li {
    margin-bottom: 0;
}
.btnSubmitFormHomeDiv {
    margin-top: 10px!important;
}
.btnSubmitFormHome {
    height: 57px;
}
.app_comparateur {
    padding-top: 40px!important;
}
#header_hero {
    height: 68px;
}
.contentSlider {
    display: flex;
    flex-direction: column;
}

.footer_border, .margingTrnaspodem {
    margin-bottom: 20px;
}
.step:before {
    transform-origin: 50% -24%!important;
}
.height-center, .img-responsive {
    height: 100%}
.footer_border {
    border-left: none;
    border-right: none;
    margin-top: 20px;
    border-top: .1px solid #a9a9a9;
    border-bottom: .1px solid #a9a9a9;
}
.img-transpodem {
    position: inherit;
    top: 0!important;
}
.confianceB {
    font-size: 25px;
}
.flexFrance5 {
    display: block;
    align-items: center;
}
.securityImage {
    width: 32%;
    position: absolute;
    top: -270px;
    right: -4%}
.imageDemenageurAdresse {
    position: absolute;
    top: -37px;
    width: 100%;
    left: 0;
}
.rounded-button {
    margin-right: 2px;
}
.containerSlide {
    padding-left: 5px!important;
    padding-right: 5px!important;
}
#flexible {
    text-align: center!important;
    width: 48px!important;
    height: 48px!important;
    padding: 0;
    border: none;
    font-size: 14px;
    color: #000;
    margin-left: 0;
}
.toc-desktop {
    display: none;
}
.toc-mobile-placeholder {
    display: block;
}
.toc-mobile {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    padding-bottom: 10px;
}
.quick_replies {
    display: inline-block;
    padding: 10px;
    border: 1px solid #d3d3d3!important;
    border-radius: 5px;
    margin: 4px 4px 2px;
    background: #fff!important;
    margin-left: 2px!important;
    color: #0b004c;
    font-size: 12px;
    font-weight: 400;
}
.toc ul {
    display: flex;
    justify-content: space-around;
}
.toc li {
    flex-grow: 1;
    text-align: center;
}
}@media (max-width:767px) {
    .logo_container {
    text-align: center;
}
.hidden-xs {
    display: none!important;
}
}@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
    display: none!important;
}
}@media (min-width:768px) {
    .rowx.equal-height {
    display: flex;
    flex-wrap: wrap;
}
.rowx.equal-height>[class*=col-] {
    display: flex;
    flex-direction: column;
}
.rowx.equal-height>[class*=col-]>#imageinfo {
    flex-grow: 1;
    padding-bottom: 20px;
}
.h1_ {
    font-size: 22px!important;
    line-height: 26px!important;
}
.container {
    width: 750px;
}
}@media (min-width:992px) {
    .section2: before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #fff;
    left: 50%;
    transform: translateX(-50%);
}
.h1_ {
    font-size: 22px!important;
    line-height: 26px!important;
}
.container {
    width: 970px;
}
}@media (min-width:1200px) {
    .topnav #myLinks {
    display: none!important;
}
.section2:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #fff;
    left: 50%}
.container {
    width: 1170px;
}
}@media only screen and (max-width:600px) {
    .titre_post {
    display: none;
}
.fontBolder {
    font-size: 14px!important;
}
.mod3_title_ {
    font-size: 25px!important;
}
.h2_, .h2_ span:first-child {
    font-size: 35px;
}
#header_hero .hero_title {
    font-size: 27px;
}
.h2_ {
    line-height: 37px;
}
.b_home_big_title {
    font-size: 16px!important;
    letter-spacing: 1px;
    margin-top: 0;
}
}@media only screen and (max-width:767px) {
    .titre_post {
    display: none;
}
.logo_container {
    text-align: center;
}
ul.social-mobile-icone {
    display: block!important;
}
.custom-svg-style-1 {
    max-height: 502px;
    left: 55%}
}@media only screen and (max-width:991px) {
    .custom-svg-style-1 {
    max-height: 704px;
    left: 56%}
footer .f_title {
    margin-top: 30px;
}
.menu_mobile {
    display: block!important;
}
.h1_ {
    font-size: 22px!important;
    line-height: 26px!important;
}
.mod3 .mod3_container_col6 {
    min-height: auto!important;
}
#full_width_banner .p_nous_joindre {
    margin-top: 0!important;
}
}@media screen and (max-width:1199px) and (min-width:992px) {
    .custom-svg-style-1 {
    max-height: 568px;
}
.logo_container {
    text-align: center;
}
.f_title span {
    font-size: 27px!important;
}
#full_width_banner .p_nous_joindre {
    margin-top: 50%}
}@media only screen and (max-width:1199px) {
    .mod1 .mod1_ .m1_icon {
    justify-content: center;
    display: flex;
}
.mod1 .mod1_ .mod1_txt {
    display: block;
    width: 90%;
    float: left;
}
}@media screen and (max-width:991px) {
    .sidebar-offcanvas.active {
    right: 0;
    z-index: 99999;
}
.sidebar-offcanvas {
    position: fixed;
    max-height: calc(100vh - 60px);
    top: 67px;
    bottom: 0;
    overflow: auto;
    -webkit-transition: .25s ease-out;
    -o-transition: .25s ease-out;
    transition: .25s ease-out;
}
}