html {
    width: 100%;
    height: 100%;
    position:relative;
    overflow: hidden;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    background: url('./assets/bg.jpg');
    background-size: cover;
    background-position-y: center;
}
.container {
    height: -webkit-fill-available;
    display: flex;
    align-items: center;
    padding:1.5rem;
    position: relative;
    justify-content: center;
    height: 100%;
}
.img_cta, .img_cta_mobile{
    max-width: 100%;
}

h2.title.title_2 {
    font-size: 45px;
    margin: 0;
    font-weight: 700;
    padding: 25px 0;
}
.text_lp {
    font-family: 'Montserrat', sans-serif;
    padding: 1rem;
    max-width: 1100px;
}
a.cta:hover {
    background: #1EBA91;
    color: #000;
    font-weight: 600;
}
.title {
    color: #000000;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
}
.percent_lp {
    font-size: 6rem;
    line-height: 75px;
    color: #1EBA91;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 800;
}
.p_ {
    font-size: 3rem;
    position: absolute;
    color: #FFE235;
    font-weight: bold;
}
.cta_container {
    display: flex;
    justify-content: center;
}
a.cta {
    color: #1EBA91;
    text-decoration: none;
    font-family: Montserrat;
    font-size: 1.3rem;
    padding: 1rem 3rem;
    border: 2px solid #1EBA91;
    background: #ffff;
    border-radius: 41px;
    font-weight: 700;
    margin: 0;
    position: relative;
    float: left;
    transition-duration: 0.2s;
}
.avis img {
    max-width: 300px;
}
.avis {
    position: absolute;
    bottom: 25px;
}
.img_cta_mobile {
    display: none;
}
@media (max-width: 1025px) {
    .img_cta {
        display: none;
    }
    .img_cta_mobile {
        display: block;
    }
    body {
        background-position: center;
    }

    .title {
        font-size: 1rem;
        text-align: center;
    }
    .title_2 {
        font-size: 1.85rem !important;
    }
    .text_lp {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .avis {
        position: relative;
        margin: 15px auto;
        bottom: unset;
    }
    .percent_lp {
        font-size: 4rem;
        line-height: 17px;
    }
}


@media (max-width: 428px ) {
    body {
        background: url("./assets/bg_mobile.jpg");
        background-size: cover;
    }
}

