@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 200px;
}

a {
    text-decoration: none;
    color: unset;
}

/* HEADER */
/* [SMARTPHONE] */


.header-smartphone {
    display: block;
}

.flex_header-smartphone {
    position: fixed;
    top: 0px;
    left: 0px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    z-index: 99;
    background: #FFF;
    width: 100%;
}

.flexleft_header-smartphone {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.flexleft_header-smartphone img {
    width: 35px;
    height: auto;
}

.flexleft_header-smartphone h1 {
    color: var(--bleu-moyen, #56B8D6);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.flexright_header-smartphone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}


.flexright_header-smartphone i {
    color: var(--bleu-moyen, #56B8D6);
    font-size: 18px;
    transform: translateY(2px);
}


.menu_burger-smartphone {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 75px;
    right: 0px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 0px 0px 20px 20px;
    transform-origin: 100% 0%;
    transform: scale(0);
    z-index: 999;
}


.menu_burger-smartphone a {
    color: var(--bleu-moyen, #56B8D6);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.menu_open {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.menu_close {
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}




/* HEADER */
/* [DESKTOP] */

.header-desktop {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 75px;
    background: rgb(255, 255, 255);
    z-index: 99;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
}

.flexleft_header-desktop{
    display: flex;
    gap: 20px;
    align-items: center;
}

.flex_header-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.flexleft_header-desktop a img {
    width: 35px;
    height: auto;
}

.flexleft_header-desktop nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 20px;
    list-style-type: none;
}

.flexleft_header-desktop nav ul a li {
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px;
}

.button_app-header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 190px;
    height: 40px;
    border-radius: 10px;
    background: var(--bleu-moyen, #56B8D6);
    box-shadow: 4px 4px 0px 0px rgba(86, 184, 214, 0.50);

    /* Ajout de la transition pour supprimer l'ombre portée */
    transition: box-shadow 0.7s ease;
}

/* Au passage de la souris, l'ombre portée sera supprimée */
.button_app-header:hover {
    box-shadow: none;
}

.button_app-header img{
    width: 16px;
    height: auto;
}

.button_app-header p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}








/* -------------------- */


main{
    background: #F5F8FD;
}


/* ACCUEIL */

.section-accueil{
    background: url("./../img/background.webp");
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    margin-top: 75px;
    width: 100%;
    height: calc(100vh - 75px);
    overflow: hidden;
}

.flex-accueil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.illustration-accueil img{
    width: 350px;
    height: auto;
}

.title-accueil{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}


.title_content-accueil h1{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    position: relative;
}

.title_content-accueil h1::before{
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    width: 1px;
    height: 60px;
    background: #004A5A;
}

.title_content-accueil p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.flex_title_button-accueil{
    display: flex;
    justify-content: start;
    width: 100%;
}

.button_app-accueil{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 180px;
    height: 37px;
    border-radius: 9px;
    background: var(--bleu-moyen, #56B8D6);
    box-shadow: 4px 4px 0px 0px rgba(86, 184, 214, 0.50);

    /* Ajout de la transition pour supprimer l'ombre portée */
    transition: box-shadow 0.7s ease;
}

/* Au passage de la souris, l'ombre portée sera supprimée */
.button_app-accueil:hover {
    box-shadow: none;
}

.button_app-accueil img{
    width: 15px;
    height: auto;
}

.button_app-accueil p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.scroll_mouse-accueil{
    display: none;
    position: absolute;
    top: calc(100vh - 60px);
    left: 50px;
    gap: 5px;
    align-items: center;
}

.scroll_mouse-accueil i{
    color: var(--texte, #004A5A);
    font-size: 16px;
    transform: translateY(2px);
}

.scroll_mouse-accueil p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}








/* A PROPOS */

.section-apropos{
    margin: 0 10vw;
}

/* Présentation */

.article_presentation-apropos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title_presentation-apropos h1{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.container_presentation-apropos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.item_presentation-apropos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #FFF;
    padding: 30px;
    gap: 15px;
    max-width: 300px;
    height: 220px;
}

.title_item_presentation-apropos{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.title_item_presentation-apropos.img_right{
    flex-direction: row-reverse;
}

.title_item_presentation-apropos img{
    width: 100px;
    height: auto;
}

.title_item_presentation-apropos h1{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.content_item_presentation-apropos p{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button_presentation-apropos{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 165px;
    height: 35px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--bleu-moyen, #56B8D6);
    box-shadow: 4px 4px 0px 0px rgba(86, 184, 214, 0.50);

    /* Ajout de la transition pour supprimer l'ombre portée */
    transition: box-shadow 0.7s ease;
}

/* Au passage de la souris, l'ombre portée sera supprimée */
.button_presentation-apropos:hover {
    box-shadow: none;
}

.button_presentation-apropos p{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}








/* Fonctionnalités */

.article_feature-apropos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.item_feature-apropos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
}

.item_feature-apropos.img_right{
    flex-direction: row-reverse;
}

.illustration_item_feature-apropos img{
    width: 150px;
    height: auto;
}

.content_item_feature-apropos{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.content_item_feature-apropos.img_right{
    text-align: right;
}

.title_content_item_feature-apropos{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title_content_item_feature-apropos h1{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title_content_item_feature-apropos p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.button_content_item_feature-apropos.img_right{
    display: flex;
    width: 100%;
    justify-content: end;
}

.button_app-apropos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 140px;
    height: 28px;
    border-radius: 9px;
    background: var(--bleu-moyen, #56B8D6);
    box-shadow: 4px 4px 0px 0px rgba(86, 184, 214, 0.50);

    /* Ajout de la transition pour supprimer l'ombre portée */
    transition: box-shadow 0.7s ease;
}

/* Au passage de la souris, l'ombre portée sera supprimée */
.button_app-apropos:hover {
    box-shadow: none;
}

.button_app-apropos img{
    width: 10px;
    height: auto;
}

.button_app-apropos p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


.item_text_subtitle-apropos{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}   

.item_text_subtitle-apropos p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}





/* ------- */

.trait_separation-aproposandaccess{
    width: 30%;
    height: 1px;
    background: #004A5A;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 30px;
}


/* ACCEDER A L'APPLICATION */

.section-access{
    margin: 0 10vw;
}

.title-access{
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.title-access h1{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.title-access p{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.article-access{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Phone */

.article_phone-access{
    display: none;
    background-color: #FFF;
    border-radius: 20px;
    padding: 30px 40px;
}

.article_phone_top-access{
    display: flex;
    flex-direction: raw;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.illustration_phone-access img{
    width: 100px;
    height: auto;
}

.content_phone-access{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content_phone-access p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.article_phone_bottom-access{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article_phone_bottom-access h1{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

.article_phone_bottom-access ul{
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 400px;
}

.article_phone_bottom-access ul li{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


/* Desktop */

.article_desktop-access{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #FFF;
    border-radius: 20px;
    padding: 40px;
}

.article_desktop_top-access{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.illustration_desktop-access img{
    width: 400px;
    height: auto;
}

.content_desktop-access{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content_desktop-access p{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.article_desktop_bottom-access{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article_desktop_bottom-access h1{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

.article_desktop_bottom-access ul{
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 380px;
}

.article_desktop_bottom-access ul li{
    color: var(--texte, #004A5A);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}







/* ------- */

.trait_separation-accessandequipe{
    width: 30%;
    height: 1px;
    background: #004A5A;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 40px;
}



/* NOTRE ÉQUIPE */

.section-equipe{
    margin: 0 10vw;
}

.title-equipe{
    width: 280px;
    margin: 0 auto;
}

.title-equipe h1{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.container_article-equipe{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.item_article-equipe{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #FFF;
    padding: 30px;
    border-radius: 15px;
}

.illustration_item_article-equipe img{
    width: 125px;
    height: 166px;
    object-fit : cover;
    object-position: top;
    border-radius: 20px;
}

.content_item_article-equipe{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.content_item_article-equipe h1{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.content_item_article-equipe h2{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.item_trait_separation-equipe{
    width: 30%;
    height: 1px;
    background: #004A5A;
}

.mail_item_article-equipe{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}




/* ------- */

.trait_separation-equipeandcontact{
    width: 30%;
    height: 1px;
    background: #004A5A;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 50px;
}



/* CONTACT */

.section-contact{
    margin: 0 10vw;
}

.title-contact{
    width: 280px;
    margin: 0 auto;
}

.title-contact h1{
    color: var(--texte, #004A5A);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}



.form-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.container_form-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.flextop_form_content-contact {
    display: flex;
    gap: 10px;
}

.container_form-contact input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: #FFF;
    padding: 0 20px;
    color: rgba(0, 74, 90, 0.50);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.container_form-contact textarea {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: none;
    background-color: #FFF;
    padding: 10px 20px;
    color: rgba(0, 74, 90, 0.50);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    resize: vertical;
}

.container_form_txt-contact {
    width: 100%;
}

.container_form_txt-contact p:nth-child(1) {
    color: #00bd2f;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.container_form_txt-contact p:nth-child(2) {
    color: #ff3a3a;
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}


.container_form_button-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.container_form_button-contact button {
    width: 109px;
    height: 33px;
    border-radius: 20px;
    background: #56b8d6;
    color: #004a5a;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border: none;
    cursor: pointer;
    box-shadow: 4px 4px 0px #5995d170;

    /* Ajout de la transition pour supprimer l'ombre portée */
    transition: box-shadow 0.7s ease;
}

/* Au passage de la souris, l'ombre portée sera supprimée */
.container_form_button-contact button:hover {
    box-shadow: none;
}




/* FOOTER */

footer{
    background: #004A5A;
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.flex_content-footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.flextop_content-footer{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.flextop_content-footer img{
    width: 33px;
    height: auto;
}

.flextop_content-footer p{
    color: var(--bleu-clair, #8ADEFF);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.flexbottom_content-footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flexbottom_content-footer p{
    color: var(--bleu-clair, #8ADEFF);
    font-family: Montserrat;
    font-size: 10px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.flexbottom_content-footer a{
    color: var(--bleu-clair, #8ADEFF);
    font-family: Montserrat;
    font-size: 10px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: underline;
}

.flex_content_link{
    display: flex;
    gap: 10px;
}

.flex_content_link a{
    color: var(--bleu-clair, #8ADEFF);
    font-family: Montserrat;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.flex_content_link a::after{
    content: "|";
    margin-left: 10px;
}
.flex_content_link a:last-child::after{
    content: "";
    margin-left: 0px;
}

