@charset "UTF-8";
/*///////////////////////////////////////*/
/* ///// STYLE GLOBAL ///////////////// */
/*/////////////////////////////////////*/
/* Collection de variables */
:root {
    --Text-Title-font: Ubuntu;
    --Text-Text-font: Open Sans;
    --Text-Deco-font: Ubuntu;
    --Colors-Color-1: #131C38FF;
    --Colors-Color-1-Light: #1C284DFF;
    --Colors-Color-1-Dark: #0C132AFF;
    --Colors-Color-1-30: #1B3A6B4D;
    --Colors-Color-1-50: #1B3A6B80;
    --Colors-Color-1-70: #1B3A6BB2;
    --Colors-Color-2: #4DD9C0FF;
    --Colors-Color-2-Light: #5AF0D5FF;
    --Colors-Color-2-Dark: #42CEB5FF;
    --Colors-Color-2-30: #4DD9C04D;
    --Colors-Color-2-50: #4DD9C080;
    --Colors-Color-2-70: #4DD9C0B2;
    --Colors-Color-3: #E67E22FF;
    --Colors-Color-3-Light: #FE973DFF;
    --Colors-Color-3-Dark: #DA6D0DFF;
    --Colors-Color-3-30: #E67E224D;
    --Colors-Color-3-50: #E67E2280;
    --Colors-Color-3-70: #E67E22B2;
    --Colors-White: #FFFFFFFF;
    --Colors-White-70: #FFFFFFB2;
    --Colors-Light-Grey: #F2F2F2FF;
    --Colors-Grey: #D9D9D9FF;
    --Colors-Medium-Grey: #979797FF;
    --Colors-Dark-Grey: #636363FF;
    --Colors-Dark: #151515FF;
    --Colors-Dark-10: #1515151A;
    --Colors-Dark-30: #1515154D;
    --Colors-Dark-50: #15151580;
    --Colors-Dark-70: #151515B2;
    --Buttons-Radius: 5px;
    --Cards-Radius: 10px;
    --Big-Radius: 50px;
    --Tags-Radius: 20px;
}

/*
font-family: 'Open Sans', sans-serif;
font-family: "Ubuntu", sans-serif;
*/
html {
    box-sizing: border-box;
}
html * {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
}

body p {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
}

body strong {
    font-weight: 700;
}

body em {
    font-style: italic;
}

main {
    clear: both;
}

.not-frontpage main {
    padding-top: 80px;
}

.container-large {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 0 auto;
}

.container-medium {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
}

.container-small {
    width: calc(100% - 60px);
    max-width: 1200px;
    margin: 0 auto;
}

.flex-center {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.dynamic-padding-left,
.dynamic-padding-right {
    opacity: 0;
    transition: 200ms ease-in-out;
}

.default-btn,
.form-submit {
    display: inline-flex;
    padding: 10px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Buttons-Radius, 5px);
    text-align: center;
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
}

.default-btn.green,
.form-submit {
    color: #fff;
    border: solid 1px var(--Colors-Color-2, #4DD9C0);
    background: var(--Colors-Color-2, #4DD9C0);
}
.default-btn.green:hover,
.form-submit:hover {
    border: solid 1px var(--Colors-Color-2-Light, #5AF0D5);
    background: var(--Colors-Color-2-Light, #5AF0D5);
}

.default-btn.blue {
    color: #fff;
    border: 1px solid var(--Colors-White, #FFF);
    background: var(--Colors-Color-1, #131C38);
}
.default-btn.blue:hover {
    background: var(--Colors-Color-1-Light, #1C284D);
}

.default-btn.white {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    border-radius: var(--Buttons-Radius, 5px);
    border: 1px solid var(--Colors-Color-1, #131C38);
}
.default-btn.white:hover {
    background: var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3));
}

.default-btn.transparent {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    border-radius: var(--Buttons-Radius, 5px);
    border: 1px solid var(--Colors-Color-1, #131C38);
}
.default-btn.transparent:hover {
    background: var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3));
}

/*///////////////////////////////////////*/
/* ///// HEADER /////////////////////// */
/*/////////////////////////////////////*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
    transition: all 250ms ease-in-out;
    background: var(--Dgrad-sombre, linear-gradient(90deg, var(--Colors-Color-1, #131C38) 0%, var(--Colors-Color-1-Light, #1C284D) 45.19%, var(--Colors-Color-1-Dark, #0C132A) 100%));
}

.frontpage header:not(.sticky-desktop) {
    background: transparent;
}

header .region-header {
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 32px;
}

/*Logo*/
.block-logoheader {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.block-logoheader .mobile {
    display: none;
}

.frontpage header:not(.sticky-desktop) .block-logoheader {
    display: none;
}

/*Navigation principale*/
.navigation-principale {
    display: flex;
    gap: 10px;
}

header .block-superfish {
    position: relative;
    width: auto;
}

#superfish-main {
    display: flex;
    gap: 10px;
}

ul.sf-menu:after {
    display: none;
}

#superfish-main > li {
    position: static;
    display: inline-block;
    float: none;
}
#superfish-main > li:hover > a {
    background: rgba(255, 255, 255, 0.2);
}
#superfish-main > li > ul {
    padding: 30px !important;
    top: 60px !important;
    background: #fff !important;
    width: 100% !important;
    border-radius: 0 0 13px 13px;
    box-shadow: 1px 1px 5px 0 var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3)) !important;
}
#superfish-main > li > ul .liste-formules {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
#superfish-main > li > ul .liste-formules .formule {
    text-decoration: none;
    width: calc(50% - 10px);
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: flex;
    padding: 40px 25px 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex: 1 0 0;
    border-radius: 13px;
    background: #FFF;
    border: solid 1px rgba(0, 0, 0, 0.1);
}
#superfish-main > li > ul .liste-formules .formule:hover {
    box-shadow: 1px 1px 5px 0 var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3)) !important;
}
#superfish-main > li > ul .liste-formules .formule .la-plus-choisie {
    position: absolute;
    z-index: -1;
    top: 12px;
    left: 0;
    display: flex;
    padding: 2px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--Colors-Color-3, #E67E22);
    color: var(--Colors-White, #FFF);
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
#superfish-main > li > ul .liste-formules .formule .la-plus-choisie:after {
    content: "";
    position: absolute;
    top: 0;
    right: -9px;
    width: 9px;
    height: 22px;
    background: url("../images/svg/button-end.svg") no-repeat center/contain;
}
#superfish-main > li > ul .liste-formules .formule .header-formule {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    justify-content: space-between;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .left {
    display: flex;
    align-items: center;
    gap: 15px;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .left .radio {
    width: 16px;
    height: 16px;
    background: url("../images/svg/formule-unchecked.svg") no-repeat center/contain;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .left .block-titre {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .left .block-titre .pre-titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .left .block-titre .titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .right {
    padding-left: 15px;
    border-left: solid 1px #D9D9D9;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .right .prix {
    color: var(--Colors-Color-3, #E67E22);
    text-align: center;
    font-family: Ubuntu;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
#superfish-main > li > ul .liste-formules .formule .header-formule .right .prix sup {
    font-size: 20px;
}
#superfish-main > li > ul .liste-formules .formule .description {
    color: var(--Colors-Medium-Grey, #979797);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
#superfish-main > li > ul .liste-formules .formule.active {
    outline: 3px solid var(--Colors-Color-1, #131C38);
    outline-offset: -3px;
}
#superfish-main > li > ul .liste-formules .formule.active .header-formule .left .radio {
    background: url("../images/svg/formule-checked.svg") no-repeat center/contain;
}

#superfish-main > li:not(.sfHover) ul {
    display: none;
}

#superfish-main > li > a {
    display: flex;
    padding: 10px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Buttons-Radius, 5px);
    text-align: center;
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 1px solid var(--Colors-White, #FFF);
    background: var(--Colors-Color-1, #131C38);
}
#superfish-main > li > a.menuparent {
    padding-right: 40px;
}
#superfish-main > li > a .sf-sub-indicator {
    top: 19px;
    right: 18px;
    opacity: 1;
    background: url("../images/svg/arrow-submenu.svg") no-repeat center;
}
#superfish-main > li > a .sf-sub-indicator:after {
    display: none;
}

/*///////////////////////////////////////*/
/* ///// COMMANDE ANALYSE FORM //////// */
/*/////////////////////////////////////*/
.container-small-form {
    width: calc(100% - 60px);
    max-width: 920px;
    margin: 50px auto 120px;
}

.commande-analyse-form {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.commande-analyse-form > fielset {
    margin-bottom: 0;
}
.commande-analyse-form h2 {
    width: 100%;
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    margin-bottom: 15px;
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.commande-analyse-form blockquote {
    width: 100%;
    margin-bottom: 40px;
    padding: 10px 20px;
    border-radius: 4px;
    border: solid 1px #4DD9C0;
    color: #131C38;
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    font-style: italic;
}
.commande-analyse-form blockquote a {
    color: #131C38;
}
.commande-analyse-form #edit-formule--wrapper {
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
}
.commande-analyse-form .intro-champs {
    width: 100%;
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}
.commande-analyse-form .mis-form-actions {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.commande-analyse-form .mis-form-actions a, .commande-analyse-form .mis-form-actions .form-submit {
    margin: 0;
}
.commande-analyse-form .liste-formules {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.commande-analyse-form .liste-formules .formule {
    cursor: pointer;
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 400px;
    padding: 40px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 13px;
    background: #FFF;
    box-shadow: 1px 1px 5px 0 var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3));
}
.commande-analyse-form .liste-formules .formule .la-plus-choisie {
    position: absolute;
    z-index: -1;
    top: 12px;
    left: 0;
    display: flex;
    padding: 2px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--Colors-Color-3, #E67E22);
    color: var(--Colors-White, #FFF);
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.commande-analyse-form .liste-formules .formule .la-plus-choisie:after {
    content: "";
    position: absolute;
    top: 0;
    right: -9px;
    width: 9px;
    height: 22px;
    background: url("../images/svg/button-end.svg") no-repeat center/contain;
}
.commande-analyse-form .liste-formules .formule .header-formule {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    justify-content: space-between;
}
.commande-analyse-form .liste-formules .formule .header-formule .left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.commande-analyse-form .liste-formules .formule .header-formule .left .radio {
    width: 16px;
    height: 16px;
    background: url("../images/svg/formule-unchecked.svg") no-repeat center/contain;
}
.commande-analyse-form .liste-formules .formule .header-formule .left .block-titre {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.commande-analyse-form .liste-formules .formule .header-formule .left .block-titre .pre-titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.commande-analyse-form .liste-formules .formule .header-formule .left .block-titre .titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.commande-analyse-form .liste-formules .formule .header-formule .right {
    padding-left: 15px;
    border-left: solid 1px #D9D9D9;
}
.commande-analyse-form .liste-formules .formule .header-formule .right .prix {
    color: var(--Colors-Color-3, #E67E22);
    text-align: center;
    font-family: Ubuntu;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.commande-analyse-form .liste-formules .formule .header-formule .right .prix sup {
    font-size: 20px;
}
.commande-analyse-form .liste-formules .formule .description {
    padding-left: 31px;
    color: var(--Colors-Medium-Grey, #979797);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.commande-analyse-form .liste-formules .formule.active {
    outline: 3px solid var(--Colors-Color-1, #131C38);
    outline-offset: -3px;
}
.commande-analyse-form .liste-formules .formule.active .header-formule .left .radio {
    background: url("../images/svg/formule-checked.svg") no-repeat center/contain;
}
.commande-analyse-form .form-item {
    width: calc(33.333333% - 12px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 20px;
    margin-top: 0;
}
.commande-analyse-form .form-item > legend {
    width: 100%;
}
.commande-analyse-form .form-item .form-textarea-wrapper, .commande-analyse-form .form-item.form-type-textarea, .commande-analyse-form .form-item.form-item-lien, .commande-analyse-form .form-item.form-item-budget, .commande-analyse-form .form-item#edit-objectif-achat--wrapper, .commande-analyse-form .form-item#edit-mode-financement--wrapper, .commande-analyse-form .form-item#edit-visite--wrapper, .commande-analyse-form .form-item#edit-stade-projet--wrapper, .commande-analyse-form .form-item#edit-documents--wrapper, .commande-analyse-form .form-item#edit-options--wrapper, .commande-analyse-form .form-item.form-item-cgv, .commande-analyse-form .form-item.form-item-donness-personnelles, .commande-analyse-form .form-item.form-item-newsletter, .commande-analyse-form .form-item.form-item-partenaires {
    width: 100%;
}
.commande-analyse-form .form-item .form-textarea-wrapper > legend, .commande-analyse-form .form-item.form-type-textarea > legend, .commande-analyse-form .form-item.form-item-lien > legend, .commande-analyse-form .form-item.form-item-budget > legend, .commande-analyse-form .form-item#edit-objectif-achat--wrapper > legend, .commande-analyse-form .form-item#edit-mode-financement--wrapper > legend, .commande-analyse-form .form-item#edit-visite--wrapper > legend, .commande-analyse-form .form-item#edit-stade-projet--wrapper > legend, .commande-analyse-form .form-item#edit-documents--wrapper > legend, .commande-analyse-form .form-item#edit-options--wrapper > legend, .commande-analyse-form .form-item.form-item-cgv > legend, .commande-analyse-form .form-item.form-item-donness-personnelles > legend, .commande-analyse-form .form-item.form-item-newsletter > legend, .commande-analyse-form .form-item.form-item-partenaires > legend {
    width: 100%;
}
.commande-analyse-form .form-item .form-textarea-wrapper > legend > .fieldset-legend, .commande-analyse-form .form-item.form-type-textarea > legend > .fieldset-legend, .commande-analyse-form .form-item.form-item-lien > legend > .fieldset-legend, .commande-analyse-form .form-item.form-item-budget > legend > .fieldset-legend, .commande-analyse-form .form-item#edit-objectif-achat--wrapper > legend > .fieldset-legend, .commande-analyse-form .form-item#edit-mode-financement--wrapper > legend > .fieldset-legend, .commande-analyse-form .form-item#edit-visite--wrapper > legend > .fieldset-legend, .commande-analyse-form .form-item#edit-stade-projet--wrapper > legend > .fieldset-legend, .commande-analyse-form .form-item#edit-documents--wrapper > legend > .fieldset-legend, .commande-analyse-form .form-item#edit-options--wrapper > legend > .fieldset-legend, .commande-analyse-form .form-item.form-item-cgv > legend > .fieldset-legend, .commande-analyse-form .form-item.form-item-donness-personnelles > legend > .fieldset-legend, .commande-analyse-form .form-item.form-item-newsletter > legend > .fieldset-legend, .commande-analyse-form .form-item.form-item-partenaires > legend > .fieldset-legend {
    font-size: 15px;
}
.commande-analyse-form .form-item.form-item-adresse {
    width: calc(66.666666% - 6px);
}
.commande-analyse-form .form-item.form-item-surface, .commande-analyse-form .form-item.form-item-nb-pieces, .commande-analyse-form .form-item.form-item-prix, .commande-analyse-form .form-item.form-item-annee {
    width: calc(25% - 13.5px);
}
.commande-analyse-form .form-item > label {
    min-width: max-content;
    color: var(--Colors-Dark, #151515);
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.commande-analyse-form .form-item .description {
    color: var(--Neutral-neutral-500, #717680);
    font-family: "Open Sans";
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 14px;
}
.commande-analyse-form .form-item .fieldset-wrapper {
    width: 100%;
}
.commande-analyse-form .form-item .form-radios, .commande-analyse-form .form-item .form-checkboxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
}
.commande-analyse-form .form-item .form-radios .form-type-radio, .commande-analyse-form .form-item .form-radios .form-type-checkbox, .commande-analyse-form .form-item .form-checkboxes .form-type-radio, .commande-analyse-form .form-item .form-checkboxes .form-type-checkbox {
    width: calc(33.33333% - 8px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.commande-analyse-form .form-item .form-radios .form-type-radio label, .commande-analyse-form .form-item .form-radios .form-type-checkbox label, .commande-analyse-form .form-item .form-checkboxes .form-type-radio label, .commande-analyse-form .form-item .form-checkboxes .form-type-checkbox label {
    min-width: 0;
    cursor: pointer;
    color: var(--Colors-Dark, #151515);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes {
    flex-direction: column;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-radio, .commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-checkbox {
    width: 100%;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-radio label .header-label, .commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-checkbox label .header-label {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-radio label .header-label:after, .commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-checkbox label .header-label:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 8px;
    left: 0;
    right: 0;
    border-top: 1px dashed #979797;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-radio label .header-label .titre, .commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-checkbox label .header-label .titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    padding-right: 8px;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-radio label .header-label .prix, .commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-checkbox label .header-label .prix {
    color: var(--Colors-Color-3, #E67E22);
    text-align: center;
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    padding-left: 8px;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-radio label .header-label .prix sup, .commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-checkbox label .header-label .prix sup {
    font-size: 16px;
}
.commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-radio label .description-option p, .commande-analyse-form .form-item#edit-options--wrapper .form-checkboxes .form-type-checkbox label .description-option p {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    padding-right: 100px;
}
.commande-analyse-form .form-item.form-item-cgv, .commande-analyse-form .form-item.form-item-donness-personnelles, .commande-analyse-form .form-item.form-item-newsletter, .commande-analyse-form .form-item.form-item-partenaires {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
}
.commande-analyse-form .form-item.form-item-cgv label, .commande-analyse-form .form-item.form-item-donness-personnelles label, .commande-analyse-form .form-item.form-item-newsletter label, .commande-analyse-form .form-item.form-item-partenaires label {
    cursor: pointer;
    min-width: 0;
    font-weight: 400;
    line-height: 24px;
}
.commande-analyse-form .form-item.form-item-cgv label a, .commande-analyse-form .form-item.form-item-donness-personnelles label a, .commande-analyse-form .form-item.form-item-newsletter label a, .commande-analyse-form .form-item.form-item-partenaires label a {
    color: var(--Colors-Color-2-Dark, #42CEB5);
}
.commande-analyse-form .form-item.form-item-cgv label .small, .commande-analyse-form .form-item.form-item-donness-personnelles label .small, .commande-analyse-form .form-item.form-item-newsletter label .small, .commande-analyse-form .form-item.form-item-partenaires label .small {
    color: var(--Colors-Dark, #151515);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
}
.commande-analyse-form .flex-center {
    margin-top: 40px;
}
.commande-analyse-form .block-total {
    width: 100%;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.commande-analyse-form .block-total .ligne-panier {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.commande-analyse-form .block-total .ligne-panier:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 8px;
    left: 0;
    right: 0;
    border-top: 1px dashed #979797;
}
.commande-analyse-form .block-total .ligne-panier.total {
    padding-top: 10px;
    border-top: solid 1px #D9D9D9;
}
.commande-analyse-form .block-total .ligne-panier .block-titre {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding-right: 8px;
}
.commande-analyse-form .block-total .ligne-panier .block-titre .titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.commande-analyse-form .block-total .ligne-panier .block-titre .pre-titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.commande-analyse-form .block-total .ligne-panier .prix {
    color: var(--Colors-Color-3, #E67E22);
    text-align: center;
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    padding-left: 8px;
}
.commande-analyse-form .block-total .ligne-panier .prix sup {
    font-size: 16px;
}

input[type=text],
input[type=number],
input[type=tel],
input[type=email],
input[type=date],
select {
    width: 100%;
    display: flex;
    height: 42px;
    padding: 12px 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid var(--Colors-Grey, #D9D9D9);
    background: var(--Colors-White, #FFF);
}
input[type=text]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=date]:focus,
select:focus {
    outline: none;
}

textarea {
    width: 100%;
    display: flex;
    padding: 12px 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid var(--Colors-Grey, #D9D9D9);
    background: var(--Colors-White, #FFF);
}
textarea:focus {
    outline: none;
}

/*///////////////////////////////////////*/
/* ///// FICHE FORMULE //////////////// */
/*/////////////////////////////////////*/
.container-formule {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.container-formule .container-content {
    width: 100%;
}
.container-formule .container-content .para-item {
    width: 100%;
}
.container-formule .container-content .block-cta {
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    height: 116.048px;
    padding: 0 50px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 15px;
    background: linear-gradient(90deg, var(--Colors-Color-1, #131C38) 0%, var(--Colors-Color-1-Light, #1C284D) 45.19%, var(--Colors-Color-1-Dark, #0C132A) 100%);
}
.container-formule .container-content .block-cta .block-titre .titre-cta {
    color: #FFF;
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container-formule .container-content .block-cta .block-titre .texte-cta {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.container-formule .container-content .bloc-options {
    margin-top: 50px;
}
.container-formule .container-content .bloc-options h2 {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.container-formule .container-content .bloc-options .liste-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.container-formule .container-content .bloc-options .liste-options .bloc-option .header-label {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container-formule .container-content .bloc-options .liste-options .bloc-option .header-label:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 8px;
    left: 0;
    right: 0;
    border-top: 1px dashed #979797;
}
.container-formule .container-content .bloc-options .liste-options .bloc-option .header-label .titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    padding-right: 8px;
}
.container-formule .container-content .bloc-options .liste-options .bloc-option .header-label .prix {
    color: var(--Colors-Color-3, #E67E22);
    text-align: center;
    font-family: Ubuntu;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: #fff;
    padding-left: 8px;
}
.container-formule .container-content .bloc-options .liste-options .bloc-option .header-label .prix sup {
    font-size: 16px;
}
.container-formule .container-content .bloc-options .liste-options .bloc-option .description-option p {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    padding-right: 100px;
}
.container-formule .container-column {
    margin-top: -60px;
    width: 100%;
    max-width: 410px;
    position: sticky;
    top: 100px;
}
.container-formule .container-column .block-formule {
    position: relative;
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    border-radius: 13px;
    background: linear-gradient(132deg, var(--Colors-Color-1, #131C38) -0.01%, var(--Colors-Color-1-Light, #1C284D) 45.18%, var(--Colors-Color-1-Dark, #0C132A) 99.99%);
    box-shadow: 1px 1px 5px 0 var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3));
}
.container-formule .container-column .block-formule .la-plus-choisie {
    position: absolute;
    top: 15px;
    left: 0;
    display: flex;
    padding: 2px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--Colors-Color-3, #E67E22);
    color: var(--Colors-White, #FFF);
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.container-formule .container-column .block-formule .la-plus-choisie:after {
    content: "";
    position: absolute;
    top: 0;
    right: -9px;
    width: 9px;
    height: 22px;
    background: url("../images/svg/button-end.svg") no-repeat center/contain;
}
.container-formule .container-column .block-formule .header-formule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 5px;
}
.container-formule .container-column .block-formule .header-formule .block-titre {
    width: 100%;
}
.container-formule .container-column .block-formule .header-formule .block-titre .formule {
    color: #fff;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.container-formule .container-column .block-formule .header-formule .block-titre .titre-formule {
    color: #fff;
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.container-formule .container-column .block-formule .header-formule .prix {
    padding-left: 15px;
    border-left: solid 1px #D9D9D9;
    color: var(--Colors-Color-3, #E67E22);
    text-align: center;
    font-family: Ubuntu;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.container-formule .container-column .block-formule .header-formule .prix sup {
    font-size: 32px;
}
.container-formule .container-column .block-formule .slogan {
    color: #7E97B9;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}
.container-formule .container-column .block-paiement {
    display: flex;
    padding: 30px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 13px;
    background: #F3F7FF;
}
.container-formule .container-column .block-paiement .titre {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    text-align: center;
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; /* 190.909% */
}
.container-formule .container-column .block-paiement .picto-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.container-formule .container-column .block-paiement .info-paiement {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// FORM TIME LINE /////////////// */
/*/////////////////////////////////////*/
.form-timeline {
    margin: 20px 0 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-timeline span.number {
    display: flex;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border: 1px solid var(--Base-Grey, #D9D9D9);
    background: var(--Base-White, #FFF);
    color: var(--Base-Medium-Grey, #979797);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 50%;
}
.form-timeline span.line {
    text-indent: -1000px;
    overflow: hidden;
    width: 100%;
    height: 1px;
    background: #D9D9D9;
}
.form-timeline.form-step-1 span.number[data-step="1"] {
    color: #FFF;
    border: 1px solid var(--Colors-Color-2-Dark, #42CEB5);
    background: var(--Colors-Color-2-Dark, #42CEB5);
}
.form-timeline.form-step-2 span.number[data-step="1"], .form-timeline.form-step-2 span.number[data-step="2"] {
    color: #FFF;
    border: 1px solid var(--Colors-Color-2-Dark, #42CEB5);
    background: var(--Colors-Color-2-Dark, #42CEB5);
}
.form-timeline.form-step-2 span.line[data-step="2"] {
    background: #42CEB5;
}
.form-timeline.form-step-3 span.number[data-step="1"], .form-timeline.form-step-3 span.number[data-step="2"], .form-timeline.form-step-3 span.number[data-step="3"] {
    color: #FFF;
    border: 1px solid var(--Colors-Color-2-Dark, #42CEB5);
    background: var(--Colors-Color-2-Dark, #42CEB5);
}
.form-timeline.form-step-3 span.line[data-step="2"], .form-timeline.form-step-3 span.line[data-step="3"] {
    background: #42CEB5;
}
.form-timeline.form-step-4 span.number[data-step="1"], .form-timeline.form-step-4 span.number[data-step="2"], .form-timeline.form-step-4 span.number[data-step="3"], .form-timeline.form-step-4 span.number[data-step="4"] {
    color: #FFF;
    border: 1px solid var(--Colors-Color-2-Dark, #42CEB5);
    background: var(--Colors-Color-2-Dark, #42CEB5);
}
.form-timeline.form-step-4 span.line[data-step="2"], .form-timeline.form-step-4 span.line[data-step="3"], .form-timeline.form-step-4 span.line[data-step="4"] {
    background: #42CEB5;
}
.form-timeline.form-step-5 span.number[data-step="1"], .form-timeline.form-step-5 span.number[data-step="2"], .form-timeline.form-step-5 span.number[data-step="3"], .form-timeline.form-step-5 span.number[data-step="4"], .form-timeline.form-step-5 span.number[data-step="5"] {
    color: #FFF;
    border: 1px solid var(--Colors-Color-2-Dark, #42CEB5);
    background: var(--Colors-Color-2-Dark, #42CEB5);
}
.form-timeline.form-step-5 span.line[data-step="2"], .form-timeline.form-step-5 span.line[data-step="3"], .form-timeline.form-step-5 span.line[data-step="4"], .form-timeline.form-step-5 span.line[data-step="5"] {
    background: #42CEB5;
}
.form-timeline.form-step-6 span.number[data-step="1"], .form-timeline.form-step-6 span.number[data-step="2"], .form-timeline.form-step-6 span.number[data-step="3"], .form-timeline.form-step-6 span.number[data-step="4"], .form-timeline.form-step-6 span.number[data-step="5"], .form-timeline.form-step-6 span.number[data-step="6"] {
    color: #FFF;
    border: 1px solid var(--Colors-Color-2-Dark, #42CEB5);
    background: var(--Colors-Color-2-Dark, #42CEB5);
}
.form-timeline.form-step-6 span.line[data-step="2"], .form-timeline.form-step-6 span.line[data-step="3"], .form-timeline.form-step-6 span.line[data-step="4"], .form-timeline.form-step-6 span.line[data-step="5"], .form-timeline.form-step-6 span.line[data-step="6"] {
    background: #42CEB5;
}
.form-timeline.form-step-7 span.number[data-step="1"], .form-timeline.form-step-7 span.number[data-step="2"], .form-timeline.form-step-7 span.number[data-step="3"], .form-timeline.form-step-7 span.number[data-step="4"], .form-timeline.form-step-7 span.number[data-step="5"], .form-timeline.form-step-7 span.number[data-step="6"], .form-timeline.form-step-7 span.number[data-step="7"] {
    color: #FFF;
    border: 1px solid var(--Colors-Color-2-Dark, #42CEB5);
    background: var(--Colors-Color-2-Dark, #42CEB5);
}
.form-timeline.form-step-7 span.line[data-step="2"], .form-timeline.form-step-7 span.line[data-step="3"], .form-timeline.form-step-7 span.line[data-step="4"], .form-timeline.form-step-7 span.line[data-step="5"], .form-timeline.form-step-7 span.line[data-step="6"], .form-timeline.form-step-7 span.line[data-step="7"] {
    background: #42CEB5;
}
.form-timeline.no-option span.number[data-step="6"],
.form-timeline.no-option span.line[data-step="6"] {
    display: none !important;
}

.success-page-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 100px 0 150px;
}
.success-page-wrapper .logo {
    width: 100%;
    max-width: 400px;
    padding: 0 50px;
}
.success-page-wrapper .contenu {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
.success-page-wrapper .contenu h2 {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// TITRE DE PAGE //////////////// */
/*/////////////////////////////////////*/
.region-page-title {
    padding: 20px 0 50px;
    background: var(--Dgrad-sombre, linear-gradient(90deg, var(--Colors-Color-1, #131C38) 0%, var(--Colors-Color-1-Light, #1C284D) 45.19%, var(--Colors-Color-1-Dark, #0C132A) 100%));
}

.block-page-title-block {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto 7px;
}

.block-page-title-block h1 {
    color: var(--White, #FFF);
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// BREADCRUMBS ////////////////// */
/*/////////////////////////////////////*/
.block-system-breadcrumb-block {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto;
}

.block-system-breadcrumb-block li,
.block-system-breadcrumb-block li a {
    color: var(--White, #FFF);
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.block-system-breadcrumb-block li a:hover {
    text-decoration: underline;
}

.block-system-breadcrumb-block li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 8px;
    background: url("../images/svg/arrow-breadcrumbs.svg") no-repeat center;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL MISE EN AVANT //////// */
/*/////////////////////////////////////*/
.accueil-mise-en-avant {
    padding-top: 120px;
    padding-right: 5%;
    background: var(--Dgrad-sombre, linear-gradient(90deg, var(--Colors-Color-1, #131C38) 0%, var(--Colors-Color-1-Light, #1C284D) 45.19%, var(--Colors-Color-1-Dark, #0C132A) 100%));
}
.accueil-mise-en-avant .container-flex {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.accueil-mise-en-avant .container-flex .content-part {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
    max-width: 750px;
    padding: 40px 0 5% 0;
}
.accueil-mise-en-avant .container-flex .content-part h1 {
    color: #FFF;
    font-family: Ubuntu;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.accueil-mise-en-avant .container-flex .content-part .accroche {
    color: var(--Colors-White, #FFF);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.accueil-mise-en-avant .container-flex .content-part .btns {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}
.accueil-mise-en-avant .container-flex .visuel-part {
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 700px;
}
/*///////////////////////////////////////*/
/* ///// ACCUEIL ANALYSE ////////////// */
/*/////////////////////////////////////*/
.accueil-analyse {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 100px 0;
}
.accueil-analyse .content-part {
    width: 100%;
    max-width: 715px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.accueil-analyse .content-part h2 {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.accueil-analyse .content-part h2 span {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.accueil-analyse .content-part .btns {
    display: flex;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}
.accueil-analyse .content-part .direction-rapport {
    width: 100%;
    padding-top: 50px;
    display: flex;
    justify-content: flex-end;
    padding-right: 115px;
    color: #000;
    text-align: right;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    background: url("../images/svg/arrow-orange-right.svg") no-repeat bottom 10px right;
}
.accueil-analyse .cartouche-part {
    border-radius: 24px;
    background: linear-gradient(131deg, var(--Colors-Color-1, #131C38) 0%, var(--Colors-Color-1-Light, #1C284D) 45.19%, var(--Colors-Color-1-Dark, #0C132A) 100%);
    width: 100%;
    max-width: 506px;
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.accueil-analyse .cartouche-part .note-infos {
    display: flex;
    align-items: center;
    gap: 20px;
}
.accueil-analyse .cartouche-part .note-infos .note {
    display: flex;
    flex-direction: column;
}
.accueil-analyse .cartouche-part .note-infos .note .valeur {
    color: var(--Colors-Color-2, #4DD9C0);
    text-align: center;
    font-family: Ubuntu;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.accueil-analyse .cartouche-part .note-infos .note .line {
    height: 1px;
    background: #fff;
}
.accueil-analyse .cartouche-part .note-infos .note .cent {
    color: var(--Colors-White, #FFF);
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    font-family: Ubuntu;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.accueil-analyse .cartouche-part .note-infos .block-infos .titre {
    color: var(--Colors-Color-2, #4DD9C0);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.accueil-analyse .cartouche-part .note-infos .block-infos .infos {
    color: #7E97B9;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.accueil-analyse .cartouche-part .scores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.accueil-analyse .cartouche-part .scores .score {
    display: flex;
    align-items: center;
    gap: 10px;
}
.accueil-analyse .cartouche-part .scores .score .titre {
    color: #7E97B9;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    min-width: 115px;
}
.accueil-analyse .cartouche-part .scores .score .range {
    overflow: hidden;
    width: 100%;
    height: 5px;
    border-radius: 10px;
}
.accueil-analyse .cartouche-part .scores .score .range .range-value {
    display: block;
    height: 5px;
    border-radius: 10px;
}
.accueil-analyse .cartouche-part .scores .score.un .range {
    background: rgba(51, 248, 255, 0.2);
}
.accueil-analyse .cartouche-part .scores .score.un .range .range-value {
    width: 85%;
    background: #33F8FF;
}
.accueil-analyse .cartouche-part .scores .score.deux .range {
    background: rgba(255, 170, 51, 0.2);
}
.accueil-analyse .cartouche-part .scores .score.deux .range .range-value {
    width: 65%;
    background: #FA3;
}
.accueil-analyse .cartouche-part .scores .score.trois .range {
    background: rgba(0, 213, 121, 0.2);
}
.accueil-analyse .cartouche-part .scores .score.trois .range .range-value {
    width: 90%;
    background: #00D579;
}
.accueil-analyse .cartouche-part .scores .score.quatre .range {
    background: rgba(136, 51, 255, 0.2);
}
.accueil-analyse .cartouche-part .scores .score.quatre .range .range-value {
    width: 75%;
    background: #83F;
}
.accueil-analyse .cartouche-part .resultat {
    margin-top: 20px;
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 30px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid var(--Colors-Color-2, #4DD9C0);
    background: rgba(77, 217, 192, 0.2);
}
.accueil-analyse .cartouche-part .resultat .contenu .pretitle {
    color: var(--Colors-Color-2, #4DD9C0);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.accueil-analyse .cartouche-part .resultat .contenu .negociation {
    color: var(--Colors-Color-2, #4DD9C0);
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL CHIFFRES CLES //////// */
/*/////////////////////////////////////*/
.accueil-chiffres-cles {
    padding: 75px 0;
    background: url("../images/interface/bg-grey.jpg") lightgray 50%/cover no-repeat;
}
.accueil-chiffres-cles .liste-chiffres-cles {
    display: flex;
    gap: 40px;
}
.accueil-chiffres-cles .liste-chiffres-cles .chiffre-cle .valeur {
    color: var(--Color-2-Color-2, var(--Colors-Color-2, #4DD9C0));
    text-align: center;
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}
.accueil-chiffres-cles .liste-chiffres-cles .chiffre-cle .titre {
    color: var(--Colors-Color-1, #131C38);
    text-align: center;
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin: 10px 0 20px;
}
.accueil-chiffres-cles .liste-chiffres-cles .chiffre-cle .texte {
    overflow: hidden;
    color: var(--Base-Dark-Grey, var(--Colors-Dark-Grey, #636363));
    text-align: center;
    text-overflow: ellipsis;
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/*///////////////////////////////////////*/
/* ///// BLOCK PRICING //////////////// */
/*/////////////////////////////////////*/
.block-pricing {
    padding: 100px 0;
    background: url("../images/interface/bg-grey.jpg") lightgray 50%/cover no-repeat;
}
.block-pricing h2 {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    text-align: center;
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 50px;
}
.block-pricing .flex-center {
    margin-top: 30px;
}
.block-pricing .formules-classiques .formule-classique {
    position: relative;
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 13px;
    background: #FFF;
    box-shadow: 1px 1px 5px 0 var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3));
}
.block-pricing .formules-classiques .formule-classique .la-plus-choisie {
    position: absolute;
    top: 15px;
    left: 0;
    display: flex;
    padding: 2px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--Colors-Color-3, #E67E22);
    color: var(--Colors-White, #FFF);
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.block-pricing .formules-classiques .formule-classique .la-plus-choisie:after {
    content: "";
    position: absolute;
    top: 0;
    right: -9px;
    width: 9px;
    height: 22px;
    background: url("../images/svg/button-end.svg") no-repeat center/contain;
}
.block-pricing .formules-classiques .formule-classique .header-formule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.block-pricing .formules-classiques .formule-classique .header-formule .block-titre {
    width: 100%;
}
.block-pricing .formules-classiques .formule-classique .header-formule .block-titre .formule {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.block-pricing .formules-classiques .formule-classique .header-formule .block-titre .titre-formule {
    color: var(--Colors-Color-1, #131C38);
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.block-pricing .formules-classiques .formule-classique .header-formule .prix {
    padding-left: 15px;
    border-left: solid 1px #D9D9D9;
    color: var(--Colors-Color-3, #E67E22);
    text-align: center;
    font-family: Ubuntu;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.block-pricing .formules-classiques .formule-classique .header-formule .prix sup {
    font-size: 32px;
}
.block-pricing .formules-classiques .formule-classique .slogan {
    color: var(--Colors-Medium-Grey, #979797);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.block-pricing .formules-classiques .formule-classique .prestations {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}
.block-pricing .formules-classiques .formule-classique .prestations b {
    font-weight: 700;
}
.block-pricing .formules-classiques .formule-classique .prestations .prestation {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.block-pricing .formules-classiques .formule-classique .default-btn {
    padding: 5px 15px;
}
.block-pricing .formules-classiques .formule-classique.plus-choisie {
    padding-top: 70px;
    background: linear-gradient(132deg, var(--Colors-Color-1, #131C38) -0.01%, var(--Colors-Color-1-Light, #1C284D) 45.18%, var(--Colors-Color-1-Dark, #0C132A) 99.99%);
}
.block-pricing .formules-classiques .formule-classique.plus-choisie .header-formule .block-titre .formule, .block-pricing .formules-classiques .formule-classique.plus-choisie .header-formule .block-titre .titre-formule {
    color: #fff;
}
.block-pricing .formules-classiques .formule-classique.plus-choisie .slogan {
    color: #7E97B9;
}
.block-pricing .formules-classiques .formule-classique.plus-choisie .prestations .prestation {
    color: #fff;
}
.block-pricing .formule-flash {
    display: flex;
    padding: 30px 40px;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    border-radius: 13px;
    border: 3px solid var(--Colors-Color-1, #131C38);
    background: #E7EAEF;
    box-shadow: 1px 1px 5px 0 var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3));
}
.block-pricing .formule-flash .header-formule {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}
.block-pricing .formule-flash .header-formule .left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.block-pricing .formule-flash .header-formule .left .prix {
    padding: 2px 10px 0;
    align-self: stretch;
    border-radius: 10px;
    background: var(--Colors-Color-3, #E67E22);
    color: var(--Colors-White, #FFF);
    text-align: center;
    font-family: Ubuntu;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    display: flex;
    align-items: center;
}
.block-pricing .formule-flash .header-formule .left .prix sup {
    font-size: 32px;
}
.block-pricing .formule-flash .header-formule .left .block-titre .titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: Ubuntu;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.block-pricing .formule-flash .header-formule .left .block-titre .slogan {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}
.block-pricing .formule-flash .header-formule .right .default-btn {
    padding: 5px 15px;
}
.block-pricing .formule-flash .prestations {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.block-pricing .formule-flash .prestations .prestation {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}
.block-pricing .formule-flash .prestations .prestation b {
    font-weight: 700;
}
.block-pricing .formule-flash .prestations .prestation .titre {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.path-node-69 .block-pricing {
    padding: 50px 0;
    background: none;
}
.path-node-69 .block-pricing h2 {
    display: none;
}
.path-node-69 .block-pricing .flex-center {
    display: none;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL PRESENTATION ///////// */
/*/////////////////////////////////////*/
.accueil-presentation {
    padding-top: 125px;
    padding-bottom: 125px;
    background: var(--Dgrad-sombre, linear-gradient(90deg, var(--Colors-Color-1, #131C38) 0%, var(--Colors-Color-1-Light, #1C284D) 45.19%, var(--Colors-Color-1-Dark, #0C132A) 100%));
}
.accueil-presentation .inner {
    padding-top: 75px;
    border-radius: 0 55px 55px 0;
    background: #F8F8FA;
    overflow: hidden;
}
.accueil-presentation .inner .block-titre {
    width: calc(100% - 60px);
    margin: 0 auto;
}
.accueil-presentation .inner .block-titre h2 {
    color: var(--Primary, #1B3A6B);
    text-align: center;
    font-family: Ubuntu;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
}
.accueil-presentation .inner .block-titre h2 .large {
    font-size: 48px;
    font-weight: 700;
}
.accueil-presentation .inner .block-titre h2 .underline {
    position: relative;
}
.accueil-presentation .inner .block-titre h2 .underline:after {
    content: "";
    position: absolute;
    left: 0;
    right: 8px;
    bottom: -10px;
    height: 10px;
    background: url("../images/svg/underline-green.svg") left;
}
.accueil-presentation .inner .flex-block {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.accueil-presentation .inner .flex-block .content {
    padding: 20px 100px 5% 50px;
}
.accueil-presentation .inner .flex-block .content .intro-pres {
    color: var(--Primary, #1B3A6B);
    font-family: "Open Sans";
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 125.025%;
    margin-bottom: 20px;
}
.accueil-presentation .inner .flex-block .content .intro-pres span {
    color: var(--Colors-Color-2, #4DD9C0);
    font-weight: 700;
}
.accueil-presentation .inner .flex-block .content p {
    color: #1B3A6B;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.accueil-presentation .inner .flex-block .content ul li {
    color: #1B3A6B;
}
.accueil-presentation .inner .flex-block .content ul li:before {
    width: 4px;
    height: 4px;
    background: #1B3A6B;
}
.accueil-presentation .inner .flex-block .content .slogan {
    color: #1B3A6B;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 20px 0;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL ETAPES PROJET //////// */
/*/////////////////////////////////////*/
.accueil-etapes-projet {
    margin-top: -55px;
    margin-bottom: 50px;
}
.accueil-etapes-projet .block-texte {
    margin-top: 50px;
}
.accueil-etapes-projet .block-texte .myimmoscore {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    font-family: var(--Text-Deco-font, Ubuntu);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.accueil-etapes-projet .block-texte h2 {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    margin: 5px 0 30px;
}
.accueil-etapes-projet .block-texte ul li {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    padding-left: 22px;
}
.accueil-etapes-projet .block-texte ul li:before {
    top: 13px;
    width: 14px;
    height: 3px;
    border-radius: 0;
    background: #131C38;
}
.accueil-etapes-projet .block-texte p {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.accueil-etapes-projet .block-texte .btns {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.accueil-etapes-projet .block-texte .btns .blue {
    border: solid 1px var(--Colors-Color-1, #131C38);
}

.header-etapes {
    display: flex;
    align-items: flex-end;
    gap: 40px;
}
.header-etapes .visuel {
    display: flex;
    width: 100%;
    max-width: 376px;
}
.header-etapes .contenu {
    padding-bottom: 30px;
}
.header-etapes .contenu h2 {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.header-etapes .contenu .texte {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.header-etapes .contenu .default-btn {
    margin-top: 30px;
}

.liste-etapes {
    color: #fff;
    display: flex;
    height: 116px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 15px;
    background: linear-gradient(90deg, var(--Colors-Color-1, #131C38) 0%, var(--Colors-Color-1-Light, #1C284D) 45.19%, var(--Colors-Color-1-Dark, #0C132A) 100%);
}
.liste-etapes .etape {
    display: flex;
    padding: 20px 0 20px 10px;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
}
.liste-etapes .etape .numero {
    color: var(--Colors-Color-2, #4DD9C0);
    text-align: center;
    font-family: Ubuntu;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.liste-etapes .etape .texte {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    line-height: normal;
}

/*///////////////////////////////////////*/
/* /// COMMANDER VOTRE ANALYSE //////// */
/*/////////////////////////////////////*/
.commander-votre-analyse {
    margin-top: -55px;
    padding-bottom: 100px;
}
.commander-votre-analyse .garanties-paiement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}
.commander-votre-analyse .garanties-paiement .garanties {
    width: 100%;
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1 0 0;
}
.commander-votre-analyse .garanties-paiement .garanties h2 {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}
.commander-votre-analyse .garanties-paiement .garanties .liste-garanties {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
}
.commander-votre-analyse .garanties-paiement .garanties .liste-garanties .garantie {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}
.commander-votre-analyse .garanties-paiement .garanties .liste-garanties .garantie .picto {
    width: 100%;
    max-width: 20px;
}
.commander-votre-analyse .garanties-paiement .paiement {
    width: 100%;
    display: flex;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 13px;
    background: #F3F7FF;
}
.commander-votre-analyse .garanties-paiement .paiement .header-paiement {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.commander-votre-analyse .garanties-paiement .paiement .header-paiement h2 {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}
.commander-votre-analyse .garanties-paiement .paiement .header-paiement .picto-cards {
    display: flex;
    align-items: center;
    gap: 10px;
}
.commander-votre-analyse .garanties-paiement .paiement .texte-securite {
    color: var(--Colors-Color-1, #131C38);
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 10px 0;
}

/*///////////////////////////////////////*/
/* ///// ACCUEIL AVIS GOOGLE ////////// */
/*/////////////////////////////////////*/
.accueil-avis-google {
    padding: 65px 0 160px;
    background: url("../images/interface/bg-avis-google.jpg") no-repeat left bottom/100% auto;
}
.accueil-avis-google h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    text-align: center;
    font-family: var(--Text-Deco-font, Ubuntu);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.accueil-avis-google h2 span {
    color: var(--Color-2-Color-2-Dark, var(--Colors-Color-2-Dark, #42CEB5));
    text-align: center;
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}
.accueil-avis-google .liste-avis {
    margin: 35px 0 20px;
    display: flex;
    /*align-items: center;*/
    gap: 30px;
    align-self: stretch;
}
.accueil-avis-google .liste-avis .avis {
    display: flex;
    padding: 30px 20px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: var(--Cards-Radius, 10px);
    background: #FFF;
    box-shadow: 1px 1px 5px 0 var(--Colors-Color-1-30, rgba(27, 58, 107, 0.3));
}
.accueil-avis-google .liste-avis .avis .header-avis {
    width: 100%;
    display: flex;
    padding-bottom: 15px;
    justify-content: space-between;
    align-items: flex-start;
}
.accueil-avis-google .liste-avis .avis .header-avis .logo-note {
    display: flex;
    align-items: center;
    gap: 4px;
}
.accueil-avis-google .liste-avis .avis .header-avis .logo-note .stars {
    display: flex;
    align-items: center;
}
.accueil-avis-google .liste-avis .avis .header-avis .date {
    color: var(--Base-Medium-Grey, var(--Colors-Medium-Grey, #979797));
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.accueil-avis-google .liste-avis .avis .commentaire {
    overflow: hidden;
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    text-overflow: ellipsis;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.accueil-avis-google .liste-avis .avis .nom {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-top: 10px;
}

/*///////////////////////////////////////*/
/* ///// PAGE 404 ///////////////////// */
/*/////////////////////////////////////*/
#block-404 {
    width: calc(100% - 60px);
    max-width: 1088px;
    margin: 0 auto;
    padding: 120px 0;
}

#block-404 h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Ubuntu", sans-serif;
}

#block-404 .sous-titre {
    color: #333;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
}

/*///////////////////////////////////////*/
/* ///// CONTACT FORM ///////////////// */
/*/////////////////////////////////////*/
.contact-form {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 40px auto 0;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form form .field--type-list-string,
.contact-form form .field--type-string,
.contact-form form .field--type-email {
    width: 32%;
}

.contact-form form .field--type-list-string .form-radios {
    display: flex;
    flex-wrap: wrap;
}

.contact-form form .field--type-list-string .form-radios .form-type-radio:not(:last-of-type) {
    margin-right: 40px;
}

.contact-form form .form-item {
    margin-bottom: 0;
}

.contact-form form label {
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    color: #242424;
}

.contact-form form .field--type-string-long {
    width: 100%;
}

.contact-form form input[type=text],
.contact-form form input[type=email],
.contact-form form select {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form textarea {
    color: #4B4B4D;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    padding: 15px;
    border-radius: 5px;
    border: solid 1px #C8C8C8;
}

.contact-form form .form-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/*CHECKBOX*/
input[type=checkbox]:checked,
input[type=checkbox]:disabled:checked,
input[type=radio]:checked,
input[type=radio]:disabled:checked {
    background-color: #F39517;
}

input[type=checkbox]:hover,
input[type=checkbox]:focus,
input[type=radio]:hover,
input[type=radio]:focus {
    border: 2px solid #C2C2C2;
}

input[type=checkbox],
input[type=radio] {
    margin: 0 10px 0 0;
}

input[type=checkbox]:before,
input[type=radio]:before {
    font-family: "Font Awesome 5 Free";
    content: "";
    display: block;
    width: 22px;
    height: 16px;
    margin-top: -2px;
    font-weight: 700;
    border-radius: 0;
    padding-left: 0;
    padding-top: 2px;
    text-align: center;
    font-size: 11px;
    cursor: pointer;
    margin-left: -4px;
}

input[type=radio]:before {
    background: url("../images/svg/formule-unchecked.svg") no-repeat center/contain;
}

input[type=radio]:checked:before {
    background: url("../images/svg/formule-checked.svg") no-repeat center/contain;
}

input[type=checkbox]:before {
    background: url("../images/svg/checkbox-unchecked.svg") no-repeat center/contain;
}

input[type=checkbox]:checked:before {
    background: url("../images/svg/checkbox-checked.svg") no-repeat center/contain;
}

/*///////////////////////////////////////*/
/* ///// LISTE ACTUALITES ///////////// */
/*/////////////////////////////////////*/
.view-actualites {
    width: calc(100% - 60px);
    max-width: 1640px;
    margin: 120px auto;
}

.view-actualites .view-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.view-actualites .view-content .views-row {
    width: 100%;
    max-width: 352px;
    margin: 15px 5px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.view-actualites .view-content .views-row:hover {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
}

.view-actualites .view-content .views-row .image {
    height: 178px;
}

.view-actualites .view-content .views-row .contenu {
    padding: 0 25px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-actualites .view-content .views-row .contenu .date {
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 25px;
    background: #242424;
    letter-spacing: 1px;
    font-family: "Ubuntu", sans-serif;
}

.view-actualites .view-content .views-row .contenu .titre {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Ubuntu", sans-serif;
}

.view-actualites .view-content .views-row .contenu .resume {
    font-size: 16px;
    line-height: 30px;
    color: #242424;
}

.view-actualites .view-content .views-row .contenu .lire-la-suite {
    font-size: 16px;
    color: #F39517;
    margin-top: 20px;
    text-decoration: underline;
}

.view-actualites.view-display-id-accueil .h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: #393939;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    font-family: "Ubuntu", sans-serif;
}

.view-actualites.view-display-id-accueil .flex-center {
    margin-top: 70px;
}

/*///////////////////////////////////////*/
/* ///// PAGE ACTUALITE /////////////// */
/*/////////////////////////////////////*/
.node--type-actualite {
    width: 90%;
    max-width: 1088px;
    margin: 0 auto;
    padding-top: 25px;
}

.node--type-actualite .date {
    font-size: 14px;
    line-height: 25px;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    position: relative;
    padding: 0 30px;
    border-radius: 30px;
    margin-top: -10px;
    margin-bottom: 35px;
    background: #242424;
    letter-spacing: 1px;
    font-family: "Ubuntu", sans-serif;
}

.node--type-actualite h1 {
    font-size: 29px;
    line-height: 36px;
    font-weight: 700;
    color: #242424;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
}

.node--type-actualite .breadcrumb ol {
    text-align: center;
    margin-top: 10px;
}

.node--type-actualite .texte {
    margin-bottom: 40px;
}

/*///////////////////////////////////////*/
/* ///// PAGE DE CONTENU ////////////// */
/*/////////////////////////////////////*/
/*///////////////////////////////////////*/
/* ///// MAP FOOTER /////////////////// */
/*/////////////////////////////////////*/
#blockMap {
    min-height: 570px;
    margin-top: 180px;
}

/*///////////////////////////////////////*/
/* ///// FOOTER /////////////////////// */
/*/////////////////////////////////////*/
footer {
    overflow: hidden;
    clear: both;
    color: #fff;
    background: var(--Colors-Color-1, #131C38);
}

/*Footer Contenu*/
.footer-contenu {
    padding: 80px 0 50px;
    display: flex;
    gap: 30px;
}
.footer-contenu .logo-baseline {
    width: 100%;
    max-width: 454px;
}
.footer-contenu .logo-baseline .baseline {
    margin: 20px 0 10px;
    color: var(--Base-White, var(--Colors-White, #FFF));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-contenu .logo-baseline .details {
    color: var(--Base-White, var(--Colors-White, #FFF));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-contenu .menus {
    width: 100%;
}
.footer-contenu .menus .menu-formules .titre {
    color: var(--Base-White, var(--Colors-White, #FFF));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    padding-bottom: 5px;
    margin-bottom: 12px;
    border-bottom: solid 1px #fff;
}
.footer-contenu .menus .menu-formules .liste-formules {
    column-count: 2;
    column-gap: 20px;
}
.footer-contenu .menus .menu-formules .liste-formules a {
    display: block;
    color: var(--Base-White, var(--Colors-White, #FFF));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
}
.footer-contenu .menus .menu-pages {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.footer-contenu .menus .menu-pages .classic {
    color: var(--Base-White, var(--Colors-White, #FFF));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 31px;
    text-decoration: none;
}

/*Copyright*/
footer .gl-copy {
    font-weight: 300;
    padding: 25px 0;
    text-align: center;
    font-size: 16px;
    line-height: normal;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #fff;
}

footer .gl-copy img {
    margin-bottom: -5px;
}

footer .gl-copy a {
    color: #fff;
}

/*///////////////////////////////////////*/
/* ///// MASQUAGE ADMIN MENU ////////// */
/*/////////////////////////////////////*/
#toolbar-administration {
    display: none;
}

body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 0;
}

body,
.adminimal-admin-toolbar.toolbar-fixed.toolbar-vertical {
    padding: 0 !important;
}

/*///////////////////////////////////////*/
/* //// GALERIE PARAGRAPHE //////////// */
/*/////////////////////////////////////*/
.galerie-paragraphe .grid__item,
.galerie-paragraphe .grid__col-sizer {
    width: calc(25% - 24px);
}

.galerie-paragraphe .grid__gutter-sizer {
    width: 24px;
}

.galerie-paragraphe .grid__item {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.galerie-paragraphe .grid__item img {
    width: 100%;
}

/*///////////////////////////////////////*/
/* //////////// WEBFORMS ////////////// */
/*/////////////////////////////////////*/
.webform-submission-form {
    position: relative;
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 40px auto 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.webform-submission-form .form-item {
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.webform-submission-form .form-type-textfield,
.webform-submission-form .form-type-email,
.webform-submission-form .form-type-tel,
.webform-submission-form .form-type-select {
    width: calc(50% - 15px);
    margin-bottom: 20px;
}

.webform-submission-form .form-type-textarea {
    width: 100%;
}

.webform-submission-form .form-textarea-wrapper {
    width: 100%;
}

.webform-submission-form .form-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.webform-submission-form .form-actions .form-submit {
    margin-top: 20px;
}

.webform-submission-form .form-item .fieldset-legend,
.webform-submission-form .form-item label {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Ubuntu", sans-serif;
}

.webform-submission-form .form-type-checkbox {
    margin-top: 40px;
}

.webform-submission-form .form-type-checkbox label {
    padding-left: 35px;
    margin-top: -15px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

/*.webform-submission-form input[type="text"],
.webform-submission-form input[type="email"],
.webform-submission-form input[type="tel"],
.webform-submission-form input[type="number"],
.webform-submission-form select {
    height: 68px;
    line-height: 68px;
    border: solid 1px #333;
    border-radius: 15px;
    padding: 0 30px;
    width: 100%;
}

.webform-submission-form textarea {
    border: solid 1px #333;
    border-radius: 15px;
    padding: 25px 35px;
}*/
.webform-submission-form input[type=text]:focus,
.webform-submission-form input[type=email]:focus,
.webform-submission-form input[type=tel]:focus,
.webform-submission-form input[type=number]:focus,
.webform-submission-form select {
    outline: none;
}

/*///////////////////////////////////////*/
/* // MISE EN PAGE PARAGRAPHES //////// */
/*/////////////////////////////////////*/
.paragraphes .para-item {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto 50px;
    clear: both;
}
.paragraphes .para-item:first-of-type {
    margin-top: 50px;
}
.paragraphes .para-item a:not(.default-btn) {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
}

.intro {
    width: calc(100% - 60px);
    max-width: 1320px;
    margin: 0 auto 50px;
    clear: both;
}

/*Swiper paragraphes*/
.paragraphes .swiper-paragraphe {
    width: 100%;
    margin: 25px auto;
    position: relative;
}

.paragraphes .swiper-paragraphe .swiper-button-prev {
    width: 40px;
    height: 45px;
    left: 1%;
    background: url(../images/svg/arrow-slider-prev-white.svg) no-repeat center;
}

.paragraphes .swiper-paragraphe .swiper-button-next {
    width: 40px;
    height: 45px;
    right: 1%;
    background: url(../images/svg/arrow-slider-next-white.svg) no-repeat center;
}

/*Paragraphe pleine largeur*/
.paragraphes .para-item.full-width {
    width: 100%;
    max-width: none;
    padding: 40px 0;
}

.paragraphes .para-item.full-width .container-para {
    width: calc(100% - 60px);
    max-width: 1360px;
    margin: 0 auto;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para,
.paragraphes .para-item.full-width.pos-photo-4 .container-para {
    width: 100%;
    max-width: none;
    opacity: 0;
    transition: 200ms ease-in-out;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para .para-photo-img a,
.paragraphes .para-item.full-width.pos-photo-4 .container-para .para-photo-img a {
    display: flex;
    overflow: hidden;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para .para-photo-img {
    display: flex;
    overflow: hidden;
}

.paragraphes .para-item.full-width.pos-photo-3 .container-para .para-photo-img a {
    border-radius: 50px 0 0 50px;
}

.paragraphes .para-item.full-width.pos-photo-4 .container-para .para-photo-img a {
    border-radius: 0 50px 50px 0;
}

.paragraphes .para-item.full-width.pos-photo-4 .container-para .para-photo-img {
    display: flex;
    overflow: hidden;
}

.paragraphes h2 {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.paragraphes h3 {
    color: var(--Color-1-Color-1, var(--Colors-Color-1, #131C38));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.paragraphes h4 {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
}

.paragraphes p,
.paragraphes li {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.paragraphes p {
    margin-bottom: 15px;
}

.pos-photo-1 .para-photos,
.pos-photo-2 .para-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.pos-photo-1 .para-photos .para-photo,
.pos-photo-2 .para-photos .para-photo {
    display: flex;
}
.pos-photo-1 .para-photos .para-photo a,
.pos-photo-2 .para-photos .para-photo a {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

.para-photo {
    flex-direction: column;
}

.pos-photo-1 .para-photos .para-photo img,
.pos-photo-2 .para-photos .para-photo img {
    height: 200px;
    width: auto;
}

.para-photo-legende {
    color: #7C7C7C;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.para-photo-legende {
    margin: 5px 0 15px 0;
    text-align: center;
    font-size: 12px;
}

/*photo à droite*/
.pos-photo-3 .container-para {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}

.pos-photo-3 .para-desc {
    margin-right: 5%;
}

/*photo à gauche*/
.pos-photo-4 .container-para {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pos-photo-4 .para-photos {
    margin-right: 5%;
}

img[data-align=center] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img[data-align=right] {
    float: right;
}

img[data-align=left] {
    float: left;
}

.paragraphes table tr td {
    padding: 10px;
    border: 1px solid #eee;
}

.paragraphes table {
    margin-bottom: 30px;
}

.layout-content ul {
    padding-left: 27px;
    margin-bottom: 15px;
}

.layout-content ul li {
    font-size: 16px;
    line-height: 30px;
    list-style-type: none;
    position: relative;
    padding-left: 17px;
}

.layout-content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4DD9C0;
}

/*Début accordéon*/
.para-item-accordeon .elements {
    overflow: hidden;
}

.para-item-accordeon .element {
    border-bottom: 1px solid var(--Colors-Light-Grey, #F2F2F2);
}

.para-item-accordeon .titre-elem {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Title-font, Ubuntu);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    position: relative;
    padding: 10px 30px 10px 0;
}

.para-item-accordeon .titre-elem:after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    width: 20px;
    height: 20px;
    background: url("../images/svg/accordeon-open.svg") no-repeat center;
}

.para-item-accordeon .titre-elem.active:after {
    background: url("../images/svg/accordeon-close.svg") no-repeat center;
}

.para-item-accordeon .texte-elem {
    color: var(--Base-Dark, var(--Colors-Dark, #151515));
    font-family: var(--Text-Text-font, "Open Sans");
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-height: 0;
    overflow: hidden;
    line-height: 24px;
}

.para-item-accordeon .texte-elem.active {
    max-height: 2000px;
    overflow: visible;
    margin-bottom: 20px;
}

/*Fin accordéon*/
/*Documents*/
.paragraphes .documents a {
    display: block;
    width: 100%;
    text-decoration: none;
    padding-left: 55px;
    line-height: 40px;
    color: #707070;
    border-bottom: solid 1px #d8d8d8;
}

.paragraphes .documents a:last-of-type {
    border-bottom: none;
}

.paragraphes .documents a.type-xls {
    background: url("../images/svg/picto-xls.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-doc {
    background: url("../images/svg/picto-doc.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-ppt {
    background: url("../images/svg/picto-ppt.svg") no-repeat 17px center;
}

.paragraphes .documents a.type-pdf {
    background: url("../images/svg/picto-pdf.svg") no-repeat 17px center;
}