/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
    width: 1px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px transparent;
    border-radius: 2px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}

html, body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
}

img {
    user-select: none !important;
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* Container principal */
.view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    padding: 0;
    margin: 0 !important;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: white;
}

.view .popin--qrcode {
    position: absolute;
    z-index: 1999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    justify-content: center;
    display: none;
}

.view .popin--qrcode .content--popin {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 999;
    top: 10vh;
    left: 50%;
    width: 500px;
    height: 70vh;
    max-height: 800px;
    min-height: 650px;
    overflow: hidden;
    transform: translateX(-50%);
    background-color: white;
    padding: 5px;
    color: black;
    text-align: center;
    border-radius: 10px;
}

.view .popin--qrcode .content--popin .phone--custom {
    position: relative;
    display: flex;
    width: 50%;
    height: 70%;
    max-height: 500px;
    margin: auto;
    border-radius: 25px;
    border-top: 5px solid #262626;
    border-left: 5px solid #262626;
    border-right: 5px solid #262626;
    border-bottom: 5px solid #262626;
    justify-content: center;
    box-shadow: 0 5px 10px 2px #dedcdc;

}

.custom-element {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    border-radius: 15px;
    background-color: black;
}

.view .popin--qrcode .content--popin .close {
    position: fixed;
    right: 15px;
    top: 15px;
    cursor: pointer;
    color: #1f368b;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
}

.view .popin--qrcode .content--popin .close:hover {
    color: #00bbf2;
}

.view .popin--qrcode .content--popin .title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
    margin: 50px auto 0;
    font-family: 'Montserrat', sans-serif;
    color: #1f368b;
    width: 90%;
}

.view .popin--qrcode .content--popin .title span {
    font-weight: 900;
}

.view .popin--qrcode .content--popin .phone--custom #qrcode-custom {
    width: 200px;
    height: 200px;
    margin:auto;
}
/* Contrôle de la taille du canvas généré par AppsFlyer */
.view .popin--qrcode .content--popin .phone--custom #qrcode-custom canvas {
    width: 100% !important;
    height: 100% !important;
    margin: auto;
    display: block;
}

/* Header */
.header {
    position: relative;
    display: flex;
    z-index: 100;
    margin: 0 auto;
    width: 100vw;
    min-height: 650px;
    max-height: 750px;
    background-image: url("../images/desktop/new_header_desktop_lcl_lp.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    justify-content: center;
    align-content: center;
}

.header .qrcode_display {
    position: relative;
    margin: 10vh 15vh auto auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 250px;
    height: 350px;
    max-height: fit-content;
    border-radius: 40px 40px 40px 0;
}

.header .qrcode_display_content{
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 35px auto 10px;
    width: 180px;
    height: 180px;

}

.header .qrcode_display_content canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.header .qrcode_display_informations {
    font-family: 'Montserrat', sans-serif;
    color: #1f368b;
    font-size: 14px;
    font-weight: 600;
    margin: 10px auto 35px;
    width: 75%;
    text-align: center;
}


/* section globale */

section {
    position: relative;
    width: 100vw;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

/* section client */

.section__client {
    position: relative;
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    margin: 0 auto 0;
}

/* title */
section .title {
    position: relative;
    width: 100%;
    z-index: 100;
    font-size: 24px;
    line-height: 30px;
    font-weight: 700 !important;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #1f368b;
}

section .title span {
    color: #00bbf2;
}

.section__client .title {
   margin: 30px auto 20px;
}

.section__client .title span sup{
    font-size: 16px !important;
    line-height: 16px!important;
    vertical-align: top;
}

.section__client .inline .column .title {
    font-size: 34px;
    line-height: 38px;
}

.section__client .inline .column .title span {
    font-size: 34px;
    line-height: 38px;
}

.section__client .inline .column .title span sup{
    font-size: 16px;
    line-height: 16px;
}

section .submit {
    position: relative;
    cursor: pointer;
    width: 250px;
    outline: none;
    color: white;
    background-color: #3b51d5;
    border: 2px solid #3b51d5;
    border-radius: 30px;
    height: 60px;
    line-height: 1;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    justify-content: center;
    align-content: center;
    box-sizing: border-box;
    margin: 50px auto 25px;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease;
    -moz-transition: background-color 0.3s ease, color 0.3s ease;
}

section .submit:hover {
    color: #3b51d5;
    background-color: white;
}

.inline {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
}


.section__client .container__offer{
    position: relative;
    flex-direction: column;
    max-width: 1200px;
    margin: 20px auto 0;
    width: 80%;
}

.section__client .container__offer .inline {
    width: 100% !important;
}


.inline svg {
    /* Force la taille exacte du SVG */
    width: 50px ;
    height: 50px;
    /* Empêche le redimensionnement */
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;

    /* Conserve les proportions */
    flex-shrink: 0;

    /* Centrage si besoin */
    margin: auto 10px;

    /* Empêche la déformation */
    object-fit: none;
}

.inline .column {
    display: flex;
    flex-direction: column;
    min-height: fit-content;
    height: 90%;
    margin: 10px auto 0;
    color: #1f368b;
    text-align: center;
    border-radius: 10px;
}

.inline .column__offer {
    background-color: #f5f6ff;
    padding: 10px 60px;
    border-radius: 30px;
}

.inline .column__offer .title {
    font-size: 35px;
    line-height: 35px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #00bbf2;
    margin: 15px auto 0;
}

.inline .column__offer .description {
   margin-top: 0 !important;
}

sup {
    line-height: 0; /* Empêche sup d'affecter la line-height du parent */
    vertical-align: super;
    font-size: 0.8em;
}
.sup--small{
    font-size: 0.5em;
    top:0;
}
.inline .column .description {
    width: 90%;
    max-width: 250px;
    margin: 5px auto 0;
    font-size: 14px;
    line-height: 18px;
    font-family: 'Montserrat', sans-serif;
    color: black;
}

/* section family */

.section__family {
    min-height: 300px;
    margin: 0 auto 75px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.section__family .inline {
    max-width: 1000px;
    margin: 50px auto 0;
}

.section__family .title {
    margin: 0 auto 25px;
}

.inline .content--text {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto auto auto 25px;
}

.inline .content--text ul li {
    color: black;
}

.list {
    list-style: none; /* Supprime les puces par défaut */
    padding-left: 0;
    margin: 20px auto;
}

.list .puce {
    position: relative;
    padding-left: 10px; /* Espace pour la puce personnalisée */
    color: #000; /* Couleur du texte */
    justify-content: center;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 10px auto;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
}

.list .puce #text {
    margin: auto
}

.list .puce {
    display: flex;
    flex-direction: row;
}

.list .puce .picto--list {
    margin-top: 4px;
    color: #1f368b;
}

.list .puce p span {
    color: #1f368b;
    font-weight: 900;
    white-space: nowrap;
}


.section__family .inline .visuel--right {
    width: 35vw;
    max-width: 500px;
    margin: 0 -10vw 0 auto;
}

.inline .content--text--title {
    position: relative;
    width: 100%;
    z-index: 100;
    font-size: 28px;
    line-height: 38px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #1f368b;
    text-align: left;
    margin-left: 15px;
}

.inline .content--text--title span {
    color: #00bbf2;
    font-size: 40px;
    line-height: 38px;
}

.inline .content--text--description {
    position: relative;
    width: 80%;
    z-index: 100;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: black;
    margin: 15px auto 0 15px;
}

.inline .content--text--description span {
    color: #00bbf2;
    font-weight: 900;
}

/* section account */
.section__account {
    min-height: 650px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto ;
}

.section__account .bg-color {
    background-color: #f7fcff;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}


.section__account .title {
    position: relative;
    width: 100%;
    z-index: 100;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: #1f368b;
    margin-top: 10vh;
}

.section__account .title span {
    font-weight: 900;
    color: #1f368b;
}

/* section project */
.section__account {
    min-height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.section__account .surtitle {
    color: #727EFD;
    font-weight: 400;
    margin: 50px auto 15px;
    font-size: 16px;
}

.section__account .title {
    margin: 0 auto 25px;
}

.section__account .inline .visuel--left {
    width: 60vw;
    max-width: 600px;
    margin: auto 75px 0 auto;
}

.section__account .inline .content--informations {
    position: relative;
    width: 40%;
    max-width: 500px;
    margin: 0 auto 0 0;
    color: #1f368b;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.section__account .submit {
    margin: auto auto 0 0;
}

.content--informations--title {
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 18px;
    margin: 20px auto 20px 0;
}

.content--informations--description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: black ;
    margin: 20px auto;
}

.content--informations--description b {
    font-weight: 900;
    color: black;
}

.content--informations--description span {
    color: black !important;
}

.content--informations--description span b {
    color: black !important;
    font-weight: 900;
}

.content--informations--list--steps {
    display: flex;
    flex-direction: column;
}

.content--informations--list--steps .submit {
    margin: 20px auto auto 0;
}

.content--informations--list--steps .step {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px auto 10px 0;
}

.content--informations--list--steps .step .picto--step {
    width: 35px;
    margin: auto 0 auto 0;
}

.content--informations--list--steps .step .details {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 14px;
    margin-left: 15px;
    color:black;
}

.content--informations--detail {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #1f368b;
    margin: 20px auto;
}

.content--informations--detail u {
    font-weight: 900;
}

.inline .column .picto {
    height: 125px;
    object-fit: contain;
    margin: 0 auto 5px;
}

.inline .column .description {
    margin: 10px auto 25px;
}

/* section informations */

.section__informations {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 25px auto 0;
    background-color: #f5f6ff;
}

.section__informations .surtitle {
    color: #727EFD;
    font-weight: 400;
    margin: 50px auto 15px;
    font-size: 16px;
}

.section__informations .title  {
    font-weight: 400;
    margin: 0 auto 20px;
}

.section__informations .title b {
   font-weight: 900;
}

.section__informations .inline {
    display: flex;
    flex-direction: row;
    padding: 50px 25px 0;
    gap: 10px;
    box-sizing: border-box;
    align-items: stretch;
    max-width: 600px;
}

.section__informations .inline .column {
    display: flex;
    max-width: 300px;
}

.section__informations .inline .column__informations {
    min-width: 300px;
    height: 300px;
    justify-content: center;
    background-color: white;
    border-radius: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section__informations .submit {
    margin: 4vh auto 6vh !important;
}

/* section download */

.section__download {
    min-height: 300px;
    margin: 25px auto;
    position: relative;
    justify-content: center;
    background-color: #f7fcff;
    padding: 15px 0 25px;
}

.section__download .inline {
    justify-content: center;
}


.section__download .inline .download--text {
    position: relative;
    width: 50%;
    max-width: 500px;
    z-index: 100;
    font-size: 45px;
    line-height: 50px;
    text-align: center;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #1f368b;
    margin: auto;
}

.section__download .inline .download--text span {
    color: #00bbf2;
}


.section__download .inline .visuel--right {
    position:relative;
    width: 400px;
    margin: auto;
}

.section__download .inline .column {
    flex-direction: row;
    justify-content: center;
}

/* section reward */

.section__reward {
    min-height: auto;
    width: 90%;
    max-width: 1200px;
    padding: 20px 0 40px;
    margin: 5vh auto;
    border-radius: 30px;
    background-color: #f5f6ff;
}

.section__reward .surtitle {
    color: #727EFD;
    font-weight: 400;
    margin: 50px auto 15px;
    font-size: 16px;
}

.section__reward .title{
    font-size: 26px;
    margin: 5px auto 50px;
}

.section__reward .inline {
    max-width: 800px;
    justify-content: space-between;
}

.section__reward .inline .column {

}

.section__reward .inline .column__reward {
    width: 45%;
    background-color: white;
    border-radius: 30px;
    padding: 20px;
    margin: auto;
}

.section__reward .inline .column .picto--reward {
    height: 100px;
    object-fit: contain;
}


.section__reward .inline .column p {
    margin: auto;
    font-weight: 400;
    text-align: left;
    color: black;
}

/* section footer */
.section__footer {
    background-color: #1f368b;
    margin: 0 auto 0;
    position: relative;
    justify-content: left !important;
    text-align: left !important;
    color: white;
    padding: 0 10%;
}

.section__footer .footer--logo {
    position: absolute;
    width: 110px;
    left: 0;
    top: -50px;
}

.section__footer .share--module {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 25px;
    justify-content: space-between;
}

.section__footer .share--module .social img {
    height: 50px;
    margin: auto;
    border-radius: 5px;
    object-fit: contain;
    overflow: hidden;
    cursor: pointer;
}

.section__footer .mentions {
    position: relative;
    font-size: 12px;
    width: 90%;
    max-width: 1000px;
    margin: 100px auto;
   text-align: left;
}

.section__footer .mentions a {
    color: white;
}

@media screen and (min-width: 2060px) and (min-height: 1900px) {
    /* Header */
    .header {
        min-height: 900px;
        max-height: 1000px;
    }

    .section__client .title {
        margin: 140px auto 20px;
    }

    .header .qrcode_display {
        margin: 12vh 15vh auto auto;
        width: 350px;
        height: 450px;
    }

    .header .qrcode_display_content{
        margin: 35px auto 10px;
        width: 290px;
        height: 290px;
    }

    .header .qrcode_display_informations {
        font-size: 16px;
    }
}

@media screen and (max-width: 1600px) {


    /* Header */
    .header {
        min-height: 550px;
        max-height: 650px;
    }

    .header .qrcode_display {
        margin: 5vh 15vh auto auto;
    }

    .bg-asset {
        background-size: cover !important;
    }

    .section__client {
        background-size: cover !important;
    }

    .section__client .container__offer{
        width: 90% !important;
        max-width: 1400px;
    }

    .section__client .title {
        margin: 20px auto 20px;
    }

    .section__informations .inline .column__informations {
        height: 300px;
    }

}


@media screen and (min-width: 750px) and (max-height: 650px) {

    .view .popin--qrcode .content--popin {
        top: 2.5vh;
        left: 50%;
        width: 500px;
        height: 60vh;
        min-height: 550px;
    }

    .view .popin--qrcode .content--popin .phone--custom {
        width: 45%;
        height: 80%;
        margin: 20px auto 0;
        border-radius: 25px;
    }

    .view .popin--qrcode .content--popin .title {
        font-size: 16px;
        line-height: 25px;
        margin: 25px auto 0;
    }

        .view .popin--qrcode .content--popin .phone--custom #qrcode-custom {
            width: 200px;
            height: 200px;
            border: none;
            margin: auto;
        }

        /* Contrôle de la taille du canvas généré par AppsFlyer en responsive */
        .view .popin--qrcode .content--popin .phone--custom #qrcode-custom canvas {
            width: 100% !important;
            height: 100% !important;
            margin: auto;
            display: block;
        }
}

@media screen and (max-width: 1300px) {
    .section__download .inline .download--text {
        font-size: 28px;
        line-height: 35px;
        margin: auto;
    }

    .header {
        min-height: 415px;
        max-height: 515px;
    }

    .header .qrcode_display {
        width: 225px;
        height: 300px;
        margin: 5vh 12vh auto auto;
        border-radius: 30px 30px 30px 0;
    }

    .header .qrcode_display_content{
        margin: 35px auto 10px;
        width: 150px;
        height: 150px;
    }

    .header .qrcode_display_informations {
        font-size: 12px;
        margin: 10px auto 20px;
    }

    .section__footer .footer--logo {
       top: -50px;
    }

    .section__client .title {
        margin: 50px auto 20px;
    }


    .section__client .inline .column__offer .title {
        font-size: 24px;
        line-height: 28px;
    }

    .section__client .inline .column__offer .title span {
        font-size: 24px;
        line-height: 28px;
    }

    .inline .column__offer {
        padding: 10px 40px;
    }

    .section__informations .inline .column__informations {
        min-width: 250px;
        height: 250px;
        background-color: white;
        border-radius: 30px;
    }

    .section__informations .inline .column__informations .picto {
      height: 100px;
    }

    .section__informations .inline .column__informations .description {
        font-size: 11px;
        line-height: 14px;
    }

    .section__account .inline .visuel--left {
        width: 55vw;
        max-width: 550px;
        margin: auto 75px 0 auto;
    }

    .content--informations--list--steps .step {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 10px auto 5px 0;
    }

}

@media screen and (max-width: 1150px) {
    .header .qrcode_display {
        width: 200px;
        height: 275px;
        margin: 3vh 12vh auto auto;
    }

    .header .qrcode_display_content{
        margin: 35px auto 10px;
        width: 135px;
        height: 135px;
    }
}

@media screen and (max-width: 1080px) {
    /* Header */
    .header {
        min-height: 375px;
        max-height: 475px;
    }

    .header .qrcode_display {
        width: 175px;
        height: 250px;
        margin: 4vh 8vh auto auto;
    }

    .header .qrcode_display_content{
        margin: 25px auto 10px;
        width: 135px;
        height: 135px;
    }

    .header .qrcode_display_informations {
        font-size: 12px;
    }

    .section__download .inline .download--text {
        font-size: 20px;
        line-height: 25px;
    }

    .inline .column__offer {
        padding: 10px 20px;
        height: 125px;
        box-sizing: border-box;
    }

    .section__informations .inline .column__informations {
        min-width: 220px;
        background-color: white;
        border-radius: 30px;
        height: 225px;
    }

    .section__informations .inline .column__informations .picto {
        height: 90px;
    }

    .section__informations .inline .column__informations .description {
        font-size: 10px;
        line-height: 14px;
    }

    .section__reward .inline .column p {
        font-size: 12px;
    }

}

@media screen and (max-width: 900px) {

    .header {
        min-height: 275px;
        max-height: 375px;
    }

    .header .qrcode_display {
        width: 150px;
        height: 200px;
        margin: 2vh 6vh auto auto;
    }

    .header .qrcode_display_content{
        width: 120px;
        height: 120px;
    }

    .header .qrcode_display_informations {
        font-size: 10px;
        width: 90%;
        margin: 0 auto 10px;
    }

    .inline .column .description {
        font-size: 12px;
        line-height: 16px;
    }

    .section__client .inline .column .title span {
        font-size: 16px;
        line-height: 18px;
    }

    .section__client .inline .column .title {
        font-size: 16px;
        line-height: 18px;
    }

    .section__informations .inline .column__informations {
        min-width: 180px;
        background-color: white;
        border-radius: 30px;
        max-height: 225px !important;
    }

    .section__informations .inline .column__informations .picto {
        height: 80px;
    }

    .section__informations .inline .column__informations .description {
        font-size: 9px;
        line-height: 14px;
    }

    .section__account .inline .visuel--left {
        width: 55vw;
        max-width: 550px;
        margin: auto 30px 0 auto;
    }

    .section__download .inline .download--text {
        font-size: 20px;
        line-height: 25px;
    }

    .section__reward .inline .column .picto--reward {
        height: 50px;
        margin: auto 15px auto 25px;
    }

    .section__reward .inline .column p {
        font-size: 12px;
    }

    .section__reward .inline .column p {
        font-size: 12px;
    }

    .content--informations--title {
        margin: 10px auto 10px 0;
    }

    .content--informations--list--steps .step .picto--step {
        width: 30px;
        margin: auto 0 auto auto;
    }

}

@media screen and (max-width: 650px) {

    /* Header */
    .header {
        position: relative;
        z-index: 100;
        margin: 0 auto;
        width: 100%;
        min-height: 300px !important;
        background-image: url("../images/mobile/new_header_mobile_lcl_lp.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        cursor: default;
    }

    section .title {
        width: 95%;
        z-index: 100;
        font-size: 20px;
        line-height: 26px;
        margin: 0 auto 20px;
    }

    /* section client */

    .section__client {
        min-height: auto;
        /*background-image: url("../images/mobile/background_client.png");*/
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        margin: 0 auto 25px;
        display:block;
    }

    .section__client .title {
        margin: 40px auto 0;
    }

    .section__client .title sup {
        font-size: 0.8rem !important;
        line-height: 0.8rem !important;
    }

    .section__client .description sup {
        font-size: 0.8rem !important;
        line-height: 0.8rem !important;
    }

    .section__client .container__offer {
        padding: 25px 0 0;
        justify-content: center;
    }

    .section__client .inline {
        width: 90%;
        height: 60%;
        flex-direction: column;
    }

    .section__client .inline .column {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 50%;
        max-height: 200px;
        margin: 0 auto 10px;
        color: #1f368b;
        text-align: center;
        justify-content: center;
        padding: 0;
    }

    . .section__client .inline .column sup {
        font-size: 0.8em !important;
        line-height: 0.8em !important;
    }

    .inline svg {
        margin: 15px auto 25px;
    }

    .section__client .inline .column .title {
        font-size: 24px;
        line-height: 26px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        color: #00bbf2;
        margin-top: 20px;
        width: 100%;
    }

    .section__client .inline .column .title span {
        font-size: 24px;
        line-height: 26px;
    }

    .section__client .inline .column .description {
        width: 80%;
        font-size: 14px;
        line-height: 16px;
    }

    .section__client .submit {
        margin: 50px auto 35px;
    }

    /* section family */

    .section__family {
        min-height: auto;
        margin: 0 auto 0;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .section__family .inline {
        width: 100%;
        height: 60%;
        flex-direction: column;
        margin: 0 auto;
    }

    .section__family .inline .visuel--right {
        width: 110vw;
        margin: 10px auto 10px -5vw;
    }

    .inline .content--text--title {
        position: relative;
        width: 100%;
        font-size: 20px;
        line-height: 20px;
        font-weight: 900;
        font-family: 'Montserrat', sans-serif;
        color: #1f368b;
        text-align: left;
        margin-left: 15px;
    }

    .inline .content--text--title span {
        color: #00bbf2;
        font-size: 20px;
        line-height: 20px;
    }

    .inline .content--text--description {
        position: relative;
        width: 100%;
        z-index: 100;
        font-size: 13px;
        line-height: 16px;
        margin: 15px auto 0 15px;
    }

    .inline .content--text--description span {
        color: #00bbf2;
    }

    ul li {
        font-size: 13px;
        line-height: 16px;
    }


    /* section project */
    .section__account {
        min-height: auto;
    }

    .section__account .title {
        margin: 10px auto 25px;
    }

    .section__account .inline {
        flex-direction: column;
        width: 100%;
    }

    .section__account .inline .visuel--left {
       width: 85%;
       margin: 0 auto 25px;
    }


    .section__account .inline .content--informations {
        position: relative;
        width: 70%;
        margin: 0 auto;
    }

    .content--informations--title {
        font-size: 16px;
        line-height: 16px;
        text-align: center;
        margin: 25px auto;
    }

    .content--informations--list--steps .step {
        margin: 10px auto;
        width: 100%;
    }


    .content--informations--list--steps .step .picto--step {
        width: 30px;
        margin: auto 0 auto auto;
    }

    .content--informations--list--steps .step .details {
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        line-height: 12px;
        width: 70%;
        margin: auto auto auto 0;
        text-align: center;
    }

    .section__informations {
        min-height: auto;
        margin: 0 auto;
    }

    .section__informations .surtitle {
        font-size: 14px;
        margin: 35px auto 5px;
    }

    .section__informations .title {
        width: 80%;
        margin: 0 auto 10px;
        font-size: 20px;
        line-height: 26px;
    }

    .section__informations .inline {
        flex-direction: column;
        padding: 25px 0;
        gap: 15px;
    }

    .section__informations .inline .column {
        width: 100%;
        margin: 0 auto;
    }

    .section__informations .inline .column__informations {
        flex-direction: row;
        padding: 20px 10px;
        min-width: 100%;
        background-color: white;
        border-radius: 30px;
        align-items: center;
        max-height: 225px !important;
    }

    .section__informations .inline .column__informations .picto {
        width: 40px;
        max-height: fit-content;
    }

    .inline .column__offer .title {
        margin: 15px auto 0;
        padding: 0 20px;
    }

    .section__informations .inline .column .description {
        width: 95%;
        text-align: left;
        font-size: 12px;
    }

    .section__informations .inline .column .description span {
        margin-bottom: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #1f368b;

    }

    .section__informations .inline .column .picto {
        height: 50px;
        object-fit: contain;
        margin: auto 20px;
    }

    .section__account .surtitle {
        width: 90%;
        font-size: 14px;
        margin: 35px auto 5px;
    }

    .section__account .title {
        width: 90%;
        font-size: 20px;
        line-height: 26px;
    }

    .section__account .submit {
        margin: 35px auto;
    }

    .section__account .inline .content--informations {
        text-align: center;
    }

    /* section download */

    .section__download {
        min-height: auto;
        margin: 0 auto;
    }

    .section__download .inline {
        flex-direction: column;
        width: 100%;
    }


    .section__download .inline .download--text {
        position: relative;
        width: 90%;
        font-size: 20px;
        line-height: 25px;
        text-align: center;
        font-weight: 900;
        margin: 0 auto 25px;
    }

    .section__download .inline .visuel--right {
        position:relative;
        width: 100vw;
        margin: 0 auto;
    }

    .section__download .inline .visuel--right .background {
        position:relative;
        width: 80%;
        margin: 0 auto;
    }

    .section__download .inline .visuel--right .cta--left {
        position:absolute;
        bottom: 5vh;
        left: 5vh;
        width: 150px;
        max-width: 35vw;
        height: 50px;
        max-height: 12vw;
    }

    .section__download .inline .visuel--right .cta--right {
        position:absolute;
        bottom: 5vh;
        right: 5vh;
        width: 150px;
        max-width: 35vw;
        height: 50px;
        max-height: 12vw;
    }

    /* section reward */

    .section__reward {
        margin: 10px auto 50px !important;
    }

    .section__reward .surtitle {
        margin: 35px auto 5px;
        font-size: 14px;
    }

    .section__reward .title{
       font-size: 20px;
        line-height: 22px;
        margin: 5px auto 25px;
        width: 65%;
    }

    .section__reward .inline {
        max-width: 800px;
        flex-direction: column;
    }

    .section__reward .inline .column {
        margin: 15px auto 0;
    }

    .section__reward .inline .column__reward {
        padding: 20px 10px;
        width: 90%;
    }

    .section__reward .inline .column .picto--reward {
        height: 60px;
        object-fit: contain;
        margin: auto 15px auto 25px;
    }

    .section__reward .inline .column__reward p {
        margin: auto 0 auto auto;
        width: 90%;
        max-width: 130px;
        font-size: 12px;
        text-align: left;
        font-weight: 400;
    }

    .section__reward .footer--content {
        position: relative;
        width: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
        justify-content: center;
        background-color: #8abbe7;
        margin: 50px auto 0;
    }

    .section__footer .footer--logo {
        width: 90px;
    }

    .section__footer .share--module {
        width: 85%;
    }

    .section__footer .share--module .social img {
        height: 35px;
        margin: auto;
        border-radius: 3px;
        cursor: default;
    }

    .section__footer .mentions {
        font-size: 10px;
    }

    .submit {
        cursor: default;
    }

    .desktop {
        display: none !important;
    }

    .mobile {
        display: block;
    }

}


@media screen and (max-width: 400px) {
    .section__informations .surtitle {
        font-size: 12px;
    }

    .section__client .surtitle {
        font-size: 12px;
    }

    .section__account .surtitle {
        font-size: 12px;
    }

    .section__reward .surtitle {
        font-size: 12px;
    }
}

