reset css html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration: none;
}

/********* fin remise a 0 CSS ********/

:root {
    --black-color:  #343A40;
    --white-color: #FFFFFF;
    --blue-color: #5C7387;
    --blue-light-color: #DCDFE2;
    --orange-color: #FF7500;
  }


body{
    font-family: Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    scroll-behavior: smooth;
}

h1, h2{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: var(--black-color);
}

h1{
    font-size: 2.5rem;
    margin-bottom: 32px;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.6rem;
    width: 85%;
    margin-top: 32px;
    margin-bottom: 24px;
}

p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    margin-bottom: 48px;
    line-height: 1.2;
    color: var(--black-color);
}

.bold{
    font-weight: 600;
    font-size: 1.7rem;
}

button{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    cursor: pointer;
    max-width: 250px;
    background-color: var(--black-color);
    color: var(--white-color);
}


a{color:#FF7500;text-decoration:underline}
a:visited;{color:#FF7500;}
a:hover;{color:#FF7500;}

/********* HEADER *********/

header{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.container-logo{
    width: 90%;
    display: flex;
    align-items: center;
}


.logo{
    max-width: 180px;
}

/* menu */

.burger-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-direction: column;
    position: relative;
}

.burger-icon {
    cursor: pointer;
}

.burger-icon.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.burger-icon.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}

.burger-icon .bar {
    transition: transform 0.2s linear, opacity 0.2s linear;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--black-color);
    margin: 6px 0;
}

.menu-items li {
    margin-bottom: 16px;
}

.menu-items li:nth-child(3){
    margin-bottom: 0;
}

.menu-items a {
    text-decoration: none;
    font-weight: bold;
    padding: 6px;
    color: var(--white-color);
    width: 100%;
    display: block;
}

.menu-items {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 64px;
    right: 16px;
    list-style: none;
    margin: 0;
    padding: 16px 40px;
    transition: visibility 0s, opacity 0.5s;
    color: var(--black-color);
    background-color: var(--black-color);
    display: none;
}

.menu-items.show {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    flex-direction: column;
}



/********* MAIN *********/

section{
    width: 90%;
    margin-bottom: 140px;
    margin-right: auto;
    margin-left: auto;
    height: auto;
}

.hero-banner{
    display: flex;
    gap: 56px;
}

.hero-banner-content-txt{
    width: 55%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-banner-content-img{
    max-width: 100%;
    max-height: 100%;
}

.img-hero-banner{
    object-fit: cover;
    max-width: 100%;
    height: 100%;
}

.container-offer{
    background-image: url(./img/background-p.png);
    object-fit: contain;
    background-position: top;
    width: 100%;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 140px;
    padding-bottom: 300px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.img-offer{
    object-fit: cover;
    max-width: 100%;
    min-width: 350px;
    height: 100%;
}

.offer-banner{
    object-fit: contain;
    max-width: 80%;
    display: none;
}

.offer-desk{
    width: 60%;
    margin-top: 80px;
}





/* HOW */

.how{
    margin-top: -300px;
}


.container-how{
    width: 100%;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.container-card{
    width: 100%;
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.card{
    width: 100%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--blue-color);
    color: var(--white-color);
}

.container-txt-card{
    padding: 8px 16px;
}

.number-card{
    font-size: 3.2rem;
    font-weight: 100;
    margin-bottom: 16px;
}

.title-card{
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.txt-card{
    font-size: 0.9rem;
    font-weight: 200;
    margin-bottom: 16px;
}

.container-img-card{
    width: 100%;
    position: relative;
}

.img-card{
    object-fit: cover;
    max-width: 100%;
    height: 100%;
}

.after {
    position: absolute;
    top: -10px;
    right: 80px;
    width: 10%;
    object-fit: contain;
}



/******** FORM *******/

.container-form{
    position: relative;
    width: 100%;
}

.container-background{
    position: absolute;
    z-index: -1;
    top: 50%;
    width: 100%;
    height: 90%;
    object-fit: cover;
    transform: translateY(-50%);
}

.background-f{
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.container-img-form{
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items:center;
    background-color: var(--orange-color);
    flex-direction: column;
} 


/*** FORM WLC ***/

.wlc-box{
    display: block;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--orange-color);
}

iframe{
    height: 400px !important;
}





/******** FAQ *******/

#questions{
    color:#343a40;
}
.container-faq{
    max-width: 700px;
    margin: 50px auto;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
}

.question {
    font-weight: bold;
    font-size: 1.1rem;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    margin-left: 8px;
    content: url(./img/arrow.svg);
    transition: transform 0.4s ease-out;
}

.rotate{
    transform: rotate(-180deg);
}

.answer {
    display: none;
    padding-top: 10px;
    font-size: 1rem;
}


/******** WHO *******/

.container-who{
    width: 80%;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    align-items: center;
}

.container-who-content-txt{
    background-color: var(--blue-light-color);
    min-width: 200px;
    max-width: 410px;
    width: 100%;
    padding: 64px 32px;
}

.container-who-content-img{
    height: 350px;
    min-width: 200px;
}

.img-who-content{
    object-fit: cover;
    max-width: 100%;
    height: 100%;
}

.title-who{
    margin-bottom: 24px;
}

.txt-who{
    margin: 0;
}



/******** FOOTER *******/

.container-img-footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 24px;
}

.img-footer{
    width: 16%;
    min-width: 90px;
}

.container-txt-footer{
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}




ins.wlc-box{
    overflow-y: hidden!important;
}




/******************* RESPONSIVE ***************/


@media (max-width: 1024px){
    .how{
        margin-top: -380px;
    }
}


@media (max-width: 768px){

    header{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-banner{
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    .hero-banner-content-txt{
        width: 100%;
    }

    button{
        max-width: 100%;
        padding: 18px 40px;
    }

    .container-offer{
        margin-top: 80px;
    }

    .container-who-content-img{
        min-width: 250px;
    }

    .container-offer{
        background-image: none;
        background-color: var(--orange-color);
        flex-direction: column;
        padding-bottom: 32px;
    }
    

    .offer-banner{
        object-fit: contain;
        max-width: 80%;
        display: flex;
    }
    
    .offer-desk{
        width: 60%;
        margin-top: 0;
        display: none;
    }

    .how{
        margin-top: initial;
    }

}

@media (max-width: 590px){

    section{
        margin-bottom: 80px;
    }

    .hero-banner-content-txt{
        min-width: auto;
    }

    .container-card{
        flex-wrap: wrap;
    }

    .container-card:nth-child(2){
        margin-top: 0;
    }

    .container-who{
        width: 100%;
        flex-wrap: wrap;
    }
    
    .img-hero-banner, .img-offer {
        min-width: 100%;
    }

    .img-hero-banner{
        height: auto;
    }
}
