@import url('https://fonts.googleapis.com/css2?family=Poppins: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');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{

    /* Couleur */
    --color-default:#000000;
    --color-01:#02022D;
    --color-02:#292958;
    --color-03:#8D8DA4;
    --color-04:#BABAC8;
    --color-05:#5A4A0D;
    --color-rouge:#FE0000;
    --color-07:#D1AE29;
    --color-08:#818181;
    --color-09:#515151;
    --color-10:#E8E8FF;
    --color-11:#000038;
    --color-12:#C8E6C9;
    --color-13:#282857;
    --color-14:#2D2D54;
    --color-15:#020202;
    --color-16:#878787;
    --color-17:#707070;
    --color-body:#02022D;

    /* font familly */
    --font-family-01:Roboto,arial, sans-serif;
    --font-family-02:Poppins,arial, sans-serif;
    --font-family-03:Arial narrow, sans-serif;

    /* transition */
    --transition-01: ease all .3s;
    --transition-02: ease all .4s;
    --transition-03: ease all .5s;
    --transition-04: ease all .6s;
    --transition-05: ease all .8s;

    /* shadow */
    --box-shadow-01: 0 0 10px rgba(0, 0, 0, 0.02);
    --box-shadow-02: 0 10px 10px hsla(0, 0%, 0%, 0.20);
    --box-shadow-03: 0 0 30px rgba(0, 0, 0, 0.466);
}

/* 
----------------
    Général
----------------
 */
 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto',Arial, sans-serif;
    text-decoration: none;
    list-style: none;
}


html{
    scroll-behavior: smooth;
}


a{
    text-decoration: none;
    color: var(--color-default);
}


header{
    width: 100%;
    height: 100vh;
}

body::-webkit-scrollbar{ 
    width: 0 !important 
}


body{
    background-color: var(--color-11);
}


input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

a:focus {
    outline: none;
}


/* back to top */

#myBtn {
    opacity: 0;
    position: fixed; 
    bottom: 30px; 
    right: 50px; 
    z-index: 50; 
    border: none; 
    outline: none; 
    cursor: pointer; 
    padding: 10px;
    transition: ease all .3s;
}


#myBtn .cls-1 {
    fill: #504d4d;
}


#myBtn:hover .cls-1 {
    fill: var( --color-07);
}


/* 
---------------------------
Navigation
---------------------------
*/

nav{
    position: fixed;
    width: 100%;
    background-color: none;
    z-index: 10;
    padding: 5px 0;
    transition: var(--transition-01);
    margin-top: 20px;
}


nav.sticky{
    position: fixed;
    z-index: 100;
    background-color: var(--color-11);
    width: 100%;
    padding: 5px 0;
    margin-top: 0;
    box-shadow: var(--box-shadow-02);
}


.menu-navigation{
    width: 85%;
    margin:0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Toggle */

.toggle{
    display: none;
    position: relative;
    z-index: 15;
}



/* logo */

.logo{
    width: 10%;
}

.logo a img{
    width:100%;
}


/* menu navigation */


.menu{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navbar-menu ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    position: relative;
    left: 650px;
}


.navbar-menu li{
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px;
    transition: var(--transition-02);
}


.navbar-menu li:hover{
    background-color: var(--color-07);
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 15px;
    color: var(--color-11);
}


.navbar-menu li.active{
    background-color: var(--color-07);
    padding: 5px 15px;
    color: var(--color-11);
}


.navbar-menu li.active a{
    font-weight: 600;
    font-size: 17px;
    color: var(--color-11);
}


.navbar-menu li:hover a{
    font-weight: 600;
    font-size: 17px;
    color: var(--color-11);
}

.navbar-menu li a{
    color: var(--color-10);
    font-weight: 400;
    font-size: 16px;
}


/* Se connecter */

#se-connecter{
    width: 15%;
    padding: 8px 10px;
    align-content: center;
    text-align: center;
    cursor: pointer;
    background-color: var(--color-rouge);
    border-radius: 5px;
    cursor: pointer;
}

#se-connecter a{
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}


/* header index */

.header-index{
    width: 100%;
    height: 100vh;
    padding-top: 200px;
    background-image: url('../picto/bg-picto.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 21%;
}


.contenu-header-index{
    width: 80%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


.info-header-index{
    width: 50%;
    position: relative;
    top: -50px;
}

.titre-header-index{
    color: var(--color-16);
    font-size: 90px;
    padding-bottom: 5px;
    line-height: 1;
    font-weight: 800;
}

.titre-header-index span{
    color: var(--color-07);
    font-size: 90px;
    font-weight: 800;
}

.paragraphe-header-index{
    color: var(--color-10);
    padding: 10px 0;
    font-size:17px;
    font-weight: 300;
    line-height: 1.5;
}


.image-header-index{
    width: 50%;
}

.image-header-index img{
    width: 125%;
}


.btn-telecharger-l-application{
    width: 45%;
    background-color: var(--color-rouge);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

.btn-telecharger-l-application a{
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
}

/* 
================================
main
================================
*/

main{
    width: 100%;
}


/*
======================
Opportunitées
======================
*/

#opportunites-index{
    width: 80%;
    margin: 10% auto;
}

.contenu-opportunites-index{
    width: 100%;
    position: relative;
}

.titre-opportunites-index{
    font-size: 100px;
    color: var(--color-10);
    line-height: 1;
    padding-bottom: 20px;
    font-weight: 900;
}

.liseret{
    width: 60%;
    background-color: #f2f2f255;
    height: 2px;
    margin-bottom: 50px;
}


.block-illustration-opportunites-index{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.image-illustration-opportunites-index{
    width: 55%;
}

.image-illustration-opportunites-index img{
    width: 100%;
}

.info-opportunites-index{
    width: 65%;
    background-color: var(--color-14);
    padding: 60px;
    position: absolute;
    bottom: -50px;
    left: 35%;
    height: 600px;
    box-shadow: var(--box-shadow-03);
    border-radius: 5px;
}


.titre-info-opportunites-index{
    font-size: 60px;
    color: var(--color-07);
    padding-bottom: 30px;
    font-weight: 600;
}


.paragrape-info-opportunites-index{
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 300;
    -webkit-line-clamp: 14;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-lire-plus{
    width: 30%;
    border: 1px solid var(--color-08);
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    transition: var(--transition-01);
    cursor: pointer;
    border-radius: 5px;
}

.btn-lire-plus a{
    color: var(--color-10);
    font-size: 18px;
    transition: var(--transition-01);
    font-weight: 400;
    text-transform: uppercase;
}

.btn-lire-plus:hover{
    background-color: var(--color-rouge);
    border: 1px solid var(--color-rouge);
}

.btn-lire-plus:hover a{
    font-weight: 600;
}


/*
===================
Forfaits
===================
*/

#decouvrez-les-forfaits{
    width: 100%;
    padding: 100px 0;
}


.contenu-decouvrez-les-forfaits{
    width: 100%;
    position: relative;
}


.titre-decouvrez-les-forfaits{
    width: 90%;
    margin: 0 auto;
    padding-bottom: 250px;
}

.titre-decouvrez-les-forfaits h1{
    font-size: 200px;
    color: transparent;
    line-height: 1;
    font-weight: 900;
    -webkit-text-stroke: 2px var(--color-10);
    opacity: .3;
}


.block-illustration-decouvrez-les-forfaits{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    padding-top: 10px;
}

.image-illustration-decouvrez-les-forfaits{
    width: 55%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.image-illustration-decouvrez-les-forfaits img{
    width: 100%;
}

.info-decouvrez-les-forfaits{
    width: 60%;
    background-color: var(--color-14);
    padding: 80px 60px;
    position: relative;
    bottom: -50px;
    left: 0;
    height: 600px;
    box-shadow: var(--box-shadow-03);
    border-radius: 5px;
    z-index: 5;
}


.titre-info-decouvrez-les-forfaits{
    font-size: 60px;
    color: var(--color-07);
    padding-bottom: 10px;
    font-weight: 600;
    line-height: 1;
}


.paragrape-info-decouvrez-les-forfaits{
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 300;
    -webkit-line-clamp: 14;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*
======================
Temoignage
======================
*/

#temoignage{
    width: 100%;
    padding: 50px 0;
}

.contenu-temoignage{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
}


.titre-temoignage{
    font-size: 100px;
    color: var(--color-07);
    text-transform: uppercase;
}

 
.block-illustration-temoignage{
    width: 65%;
    margin: 10% auto;
}


.contenu-illustration-temoignage{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    align-items: center;

}


.temoignage{
    width: 31%;
    padding: 20px;
    background-color: var(--color-13) ;
    box-shadow: var(--box-shadow-01);
    border-radius: 5px;
    background-image: url('../images/CV.jpg');
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */

}


.info-temoigneur{
    color: var(--color-10);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    padding: 10px 0;
}

.temoignage img{
    padding: 50px 20px 20px;
    transition: var(--transition-01);
    
}

.temoignage:hover img{
   transform: scale(1.1);
}


.nom-temoigneur{
    font-size: 21px;
    color: var(--color-10);
    font-weight: 600;
}

.fonction-temoigneur{
    color: var(--color-10);
    font-size: 17px;
    padding: 5px 0;
}


/* caroussel */


.teams {
    width: 70%;
    margin: 10% auto;
    padding-top: 20px;
}

.teams .carousel .card{
    width: 98%;
    border-radius: 5px;
    padding: 50px 30px;
    text-align: center;
    transition: all .5s ease;
    background-color: var(--color-13);
    box-shadow: var(--box-shadow-01);
}

.teams .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin:15px 0 10px 0px;
    color: var(--color-10);
}


.teams .carousel .card img{
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: all .5s ease;
}

.teams .carousel .card .box{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}


.owl-dots{
    margin-top: 20px;
    text-align: center;

}

.owl-dot{
    height: 15px;
    width: 15px;
    margin: 0 5px;
    outline: none !important;
    border-radius: 50%;
    border: 1px solid var(--color-08) !important;
    transition: all .5s ease;
}

.owl-dot.active{
    width: 40px;
    border-radius: 15px;
}

.owl-dot.active, .owl-dot:hover{
    background-color: var(--color-05) !important;
    border: 1px solid var(--color-05) !important;
}


/* 
=============================
Illustration
=============================
*/


#illustration{
    width: 100%;
    background-image: url(../images/ROYSPACE.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 21%;
    padding-top: 100px;
}


.contenu-illustration{
    width: 50%;
    margin: 0 auto;
}


/* image illustration */

.image-illustration{
    width: 70%;
    margin: 0 auto;
}

.image-illustration img{
    width: 100%;
}


/* accordion */

.information-illustration{
    width: 90%;
    margin: 0 auto;
}

.titre-accordion{
    width: 60%;
    margin: 100px 0;
    font-size: 100px;
    font-weight: 800;
    color: var(--color-10);
    text-transform: uppercase;
    text-align: center;
}

.accordion-illustration{
    width: 100%;
}


.accordion {
    background-color: transparent;
    color: var(--color-10);
    cursor: pointer;
    padding: 15px 0;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border: none; 
    border-bottom: 1px solid var(--color-03);
    margin: 10px 0;
}
  
.active-accordion, .accordion:hover {
    background-color: none;
}
  
.panel {
    padding: 0 20px;
    background-color: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p{
    padding: 20px;
    color: var(--color-10);
    font-size: 15px;
    line-height: 1.5;

}

.accordion:after {
    content: '\02795';
    font-size: 13px;
    color: var(--color-10);
    float: right;
    margin-left: 5px;
}
  
.active-accordion:after {
    content: "\2796";
}



/* 
===============================
Contact
===============================
*/

#contact-index{
    width: 100%;
    padding: 100px 0;
    position: relative;
    margin-bottom: 900px;
}

.contenu-contact-index{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between ;
    position:absolute;
    right: 0;
}


.formulaire-contact{
    width: 60%;
    background-color: var(--color-04);
    padding: 70px;
    box-shadow: var(--box-shadow-03);
    height: 840px;
    position: relative;
    top: -60px;
    z-index: 20;
    left: -100px;
}


.titre-formulaire{
    width: 100%;
}

.titre-formulaire h1{
    font-size: 55px;
    padding: 0 0 20px 0;
    color: var(--color-01);
}

.titre-formulaire p{
    font-size: 18px;
    padding: 10px 0;
    color: var(--color-01);
}


input[type=text]{
    width: 100%;
    padding: 20px 25px;
    margin: 10px 0;
    background-color: hsla(0, 0%, 100%, 0.20);
    border:none;
}

input[type=email]{
    width: 100%;
    padding: 20px 25px;
    margin: 10px 0;
    background-color: hsla(0, 0%, 100%, 0.20);
    border:none;
    color: var(--color-01);
}

textarea{
    width: 100%;
    padding: 15px 25px;
    margin: 10px 0;
    background-color: hsla(0, 0%, 100%, 0.20);
    border:none;
    color: var(--color-11);
}


button[type="submit"]{
    width: 35%;
    padding: 20px 25px;
    margin: 10px 0;
    background-color: #fe0000ad;
    border:none;
    cursor: pointer;
    color: #ffffff;
    font-size: 21px;
    border-radius: 3px;
    transition: var(--transition-02);
    cursor: pointer;
}


button[type="submit"]:hover{
    background-color: var(--color-rouge);
}

.image-illustration-contact-index{
    width: 60%;
    position: absolute;
    right: 0;
}

.image-illustration-contact-index img{
    width: 100%;
}


/* 
=============================
Footer
=============================
*/

#footer{
    width: 100%;
    padding: 100px 0;
    background-color: #02022D;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.contenu-footer{
    width: 85%;
    margin: 0 auto;
    padding-top: 30px;
}

.info-footer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-royspace-footer{
    width: 25%;
}

.contact-footer{
    width: 20%;
}

.navigation-footer{
    width: 15%;
}

.newsleter-footer{
    width: 30%;
}

/* Commun */

.titre-info-footer{
    font-size: 25px;
    font-weight: 600;
    color: var(--color-04);
    padding-bottom: 25px;
}

.titre-info-footer a{
    color: var(--color-04);
}

.contenu-footer span, p, a{
    color: var(--color-04);
}

.contenu-footer span, p{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}


/* royspace footer */

.social-media{
    width: 50%;
    padding: 30px 0;
}

.social-media img{
    width: 35px;
}

/* contact */

.numero-royspace{
    display: flex;
    justify-content: space-between;
}

.mail-royspace{
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}
.localisation-royspace{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.img-contact{
    width: 6%;
}

.img-contact img{
    width: 100%;
}

.span-contact-footer{
    width: 90%;
    padding-left: 5px;
}

/* Navigation */

.navigation-footer ul li{
    font-size: 15px;
    font-weight: 300;
    padding: 2px 0;
}

.navigation-footer ul li a{
   transition: var(--transition-01);
   font-weight: 300;
}

.navigation-footer ul li:hover a{
    color: var(--color-07);
}

/* newsletter */

.newsleter-footer input[type=email]{
    width: 100%;
    padding: 20px 25px;
    margin: 10px 0;
    background-color: hsla(0, 0%, 100%, 0.20);
    border:none;
    color: var(--color-10);
    border-radius: 3px;
}

.newsleter-footer button[type="submit"]{
    width: 50%;
    padding: 18px 25px;
    margin: 8px 0;
    background-color: #fe0000ad;
    border:none;
    cursor: pointer;
    color: #ffffff;
    font-size: 16px;
    border-radius: 3px;
    transition: var(--transition-02);
}

.newsleter-footer button[type="submit"]:hover{
    background-color: var(--color-rouge);
}


/* Mention légale */

.mention-legale{
    width: 100%;
    padding-top: 60px;
}

.liseret-footer{
    width: 100%;
    height: 1px;
    background-color: var(--color-04);
    margin-bottom: 10px;
    opacity: .5;
}

.block-mention-legale{
    display: flex;
    justify-content: space-between;
}

.copyrigth{
    color: var(--color-04);
    font-size: 15px;
    font-weight: 300;
}

.confidentialite{
    width: 22%;
    display: flex;
    justify-content: space-between;
}

.confidentialite a{
    color: var(--color-04);
    font-size: 15px;
    font-weight: 300;
    padding-right: 10px;
    transition: var(--transition-01);
}

.confidentialite a:first-child{
    border-right: 1px solid var(--color-04);
}

.confidentialite a:hover{
    color: var(--color-07);
}


/* 
========================
About
========================
*/


/* header equipe*/


.header-about{
    width: 100%;
    height: 100vh;
    padding-top: 50px;
    background-image: url('../picto/bg-picto.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 21%;
    
}


.contenu-header-about{
    width: 80%;
    margin:0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


.info-header-about{
    width: 50%;
    position: relative;
    top: -50px;
}

.info-header-about .p{
    color: var(--color-07);
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 10px;
}

.titre-header-about{
    color: var(--color-04);
    font-size: 90px;
    padding-bottom: 5px;
    line-height: 1;
    font-weight: 800;
}

.titre-header-about span{
    color: var(--color-16);
    font-size: 90px;
    font-weight: 800;
}

.paragraphe-header-about{
    color: var(--color-10);
    padding: 10px 0;
    font-size:17px;
    font-weight: 300;
    line-height: 1.5;
}


.image-header-about{
    width: 45%;
    padding-top: 50px;
}

.image-header-about img{
    width: 100%;
}


.devise-royspace{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    top: 50px;
}

.age{
    width: 30%;
    text-align: center;
    margin: 0 auto;
}

.titre-age{
    width: 70px;
    padding: 20px;
    border-radius: 500px;
    background-color: var(--color-05);
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    margin: 0 auto;
    color: #ffffff;
}

.age p{
    font-size: 18px;
    color: var(--color-04);
    padding-top: 10px;
    font-weight: 700;
}

.employes{
    width: 30%;
    text-align: center;
    margin: 0 auto;
}

.titre-employes{
    width: 70px;
    padding: 20px 30px 20px 17px;
    border-radius: 200px;
    background-color: var(--color-05);
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    margin: 0 auto;
    color: #ffffff;
}


.employes p{
    font-size: 18px;
    color: var(--color-04);
    padding-top: 10px;
    font-weight: 700;
}


.membres{
    width: 30%;
    text-align: center;
    margin: 0 auto;
}

.titre-membres{
    width: 70px;
    padding: 20px 30px 20px 13px;
    border-radius: 200px;
    background-color: var(--color-05);
    text-align: center;
    font-size: 25px;
    font-weight: 900;
    margin: 0 auto;
    color: #ffffff;
}

.membres p{
    font-size: 18px;
    color: var(--color-04);
    padding-top: 10px;
    font-weight: 700;
}


/* equipe */

#equipe{
    width: 100%;
    padding: 50px 0;
}

#mission{
    width: 100%;
    position: relative;
    margin-top: 100px;
}

.contenu-equipe{
    width: 70%;
    margin: 5% auto;
    text-align: center;
}

.titre-equipe{
    color: var(--color-10);
    font-size: 100px;
    padding-bottom: 20px;
}


.description-equipe{
    font-size: 21px;
    width: 80%;
    padding: 50px 0;
    margin: 0 auto;
    color: var(--color-10);
    line-height: 1.5;
}



.block-illustration-equipe{
    width: 80%;
    margin: 5% auto;
}

.contenu-illustration-equipe{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.equipe{
    width: 32%;
    padding: 30px;
    background-color: var(--color-13);
    border-radius: 5px;
}


.equipe .image-temoin{
    width: 50%;
    margin: 0 auto;
}

.equipe .image-temoin img{
    width: 100%;
} 

.nom-temoigneur{
    padding-bottom: 5px;
}

.fonction-temoigneur{
    padding-bottom: 10px;
}


.rx-temoigneur{
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}

.rx-temoigneur img{
    width: 35px;
}


.dot-equipe{
    width: 11%;
    margin: 0 auto;
    padding-top: 50px;
}

.dot-equipe ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dot-equipe ul li{
    width: 20px ;
    height: 20px;
    border-radius: 200px;
    border: 1px solid var(--color-09);
}

.dot-equipe ul .active-dot{
    width: 45px ;
    height: 20px;
    border-radius: 20px;
    background-color: var(--color-05);
}


/* contact about */

#contact-about{
    padding-bottom: 100px;
}

.formulaire-about{
    width: 60%;
    margin: 0 auto;
    background-color: var(--color-04);
    padding: 50px;
    box-shadow: var(--box-shadow-03);
    height: 800px;
}

/* 
=========================
connexion
=========================
*/


#connexion{
    background-color: var(--color-body);
    width: 100%;
    height: 100vh;
    padding: 150px 50px 50px;
}

.connexion{
    width: 50%;
    margin: 0 auto;
    background-color: var(--color-11);
    display: flex;
    justify-content: space-between;
}


/* illustration */

.illustration-connexion{
    width: 40%;
    padding: 40px;
    background-image: url('../picto/bg-picto.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    box-shadow: rgba(0, 0, 0, 0.125) 2.5px 2.4px 3.2px;
    z-index: 10;
    text-align: center;

}

.illustration-connexion .logo{
    width: 80%;
    margin: 5% auto;
}

.illustration-connexion .logo img{
    width: 100%;
}

.illustration-connexion .picto{
    width: 40%;
    margin: 10% auto;
}

.illustration-connexion .picto img{
    width: 100%;
}

.info-illustration-connexion{
    padding: 20px 0;
    color: var(--color-08);
}

.info-illustration-connexion h3{
    padding: 10px 0;
    font-size: 21px;
}

.info-illustration-connexion p{
    font-size: 15px;
    line-height: 1.7;
    padding-bottom: 5px;
}


/* formulaire */

.formulaire-connexion{
    width: 60%;
    padding: 50px;
    background-color: #ffffff05;
}

#mot-passe-oublier{
    width: 60%;
    padding: 100px 50px 50px 50px;
}

.titre-form-inscription{
    color: var(--color-08);
    font-size: 25px;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 20px;
}

.para-titre-form-inscription{
    color: var(--color-08);
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 1.5;
}



#form-inscrition input[type=email]{
    width: 100%;
    padding: 15px 20px;
    margin: 8px 0;
    background-color: hsla(0, 0%, 100%, 0.20);
    border:none;
    font-size: 14px;
    font-weight: 500;
}

#form-inscrition input[type=password]{
    width: 100%;
    padding: 15px 20px;
    margin: 8px 0;
    background-color: hsla(0, 0%, 100%, 0.20);
    border:none;
    color: var(--color-01);
    font-size: 14px;
    font-weight: 500;
}

#btn-connexion{
    width: 100%;
    padding: 15px 25px;
    margin: 10px 0 20px 0;
    background-color: var(--color-07);
    border:none;
    cursor: pointer;
    color: #ffffff;
    font-size: 21px;
    border-radius: 3px;
    transition: var(--transition-02);
    cursor: pointer;
    color: var(--color-body);
    font-weight: 700;
}

.email{

    padding-top: 10px;
    padding-bottom: 10px;
}

.email label{
    color: var(--color-16);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.password{
    padding-top: 10px;
    padding-bottom: 15px;
}

.password label{
    color: var(--color-16);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.password-forget{
    color: var(--color-16);
    font-weight: 600;
    font-size: 16px;   
}

.password-forget a{
    color: var(--color-07);
    font-weight: 600;
    font-size: 16px;

}


.inscription{
    display: flex;
    padding: 10px 0;
}

.inscription p{
    font-size: 18px;
}

.inscription p a{
    color: var(--color-07);
    font-weight: 700;
    padding-left: 10px;
}


/* 
======================
comment ça marche 
======================
*/


#page-comment-ca-marche{
    width: 100%;
    padding-top: 250px;
    background-image: url('../picto/bg-picto.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20%;
}

.contenu-header-comment-ca-marche{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* left */

.left-comment-ca-marche{
    width: 20%;
    position: relative;
    left: 30px;
}

.left-comment-ca-marche img{
    width: 100%;
}


/* center */

.center-comment-ca-marche{
    width: 55%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 100px;
}

.titre-01{
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    padding-bottom: 20px;
}


.titre-02{
    font-size: 18px;
}

#btn-telecharger-l-application{
    width: 45%;
    border: 1px solid var(--color-04);
    background-color: var(--color-11);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    margin: 5% auto;
    transition: var(--transition-01);
}

#btn-telecharger-l-application:hover{
    background-color: var(--color-rouge);
    border: 1px solid var(--color-rouge);
}


/* rigth */

.rigth-comment-ca-marche{
    width: 20%;
    position: relative;
    top: 150px;
    right: 100px;
}

.rigth-comment-ca-marche img{
    width: 500px;
}


/* main comment ça marche */

.contenu-comment-ca-marche{
    width: 60%;
    margin: 0 auto;
}

.titre-accordion-comment-ca-marche{
    font-size: 80px;
    font-weight: 700;
    text-align: center;
    color: var(--color-04);
    padding-bottom: 100px;
    padding-top: 100px;
}




/* temoignage comment ça marche */

.temoignage-comment-ca-marche{
    width: 100%;
    padding: 50px 0;
    background-color: var(--color-13);
    margin-top: 100px;
}

.d-block, h2{
    color: #33475c;
    font-weight: 700;
    font-size: 2.5rem;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
}
  
#flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 400px;
    height: 110vh;
    max-width: 1000px;
    margin: auto;
    background-color: var(--color-13);
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}
  
#left-zone {
    height: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
  
#left-zone .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
  
.item input {
    display: none;
}
  
label {
    display: block;
    opacity: 0.5;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: relative;
    color: var(--color-10);
}
  
label:hover {
    opacity: 0.75;
    cursor: pointer;
}
  
.content-test {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    height: 50%;
    width: 100%;
    -webkit-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: none;
}
  
.content-test p {
    max-width: 100%;
    text-align: center;
}
  
#right-zone {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    height: 50%;
}
  
input:checked ~ .content-test {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    opacity: 1;
}
  
@media (min-width: 480px) {
    
    #flex-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        min-height: auto;
        height: 40vh;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    #left-zone .list {
        border-right: 2px solid #cccccc;
    }
  
    .content-test {
        width: 50%;
        height: 100%;
        pointer-events: auto;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    
    #left-zone {
        width: 35%;
    }
    
    #right-zone {
        height: 100%;
        width: 65%;
    }
}


@media (max-width: 480px) {

    .content_testimonial-1 .picto {
        padding-top: 100px;
    }
    .content_testimonial-2 .picto {
        padding-top: 100px;
    }
    .content_testimonial-3 .picto {
        padding-top: 100px;
    }
    .content_testimonial-4 .picto {
        padding-top: 100px;
    }
    .item > label {
        font-size: 1.3rem;
    }
}
  

.content_testimonial-1 h1 {
    color: #d64541;
}
  

  
.content_testimonial-2 h1 {
    color: #f5d76e;
}
  
  
.content_testimonial-3 h1 {
    color: #00b16a;
}
  

.content_testimonial-4 h1 {
    color: #f27935;
}
  
.content-test h1:first-letter {
    text-transform: uppercase;
}
  
input:checked ~ label {
    opacity: 1;
    -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
  
input:checked ~ label.label_testimonial-1 {
    color: #d64541;
    border-right: solid 4px #d64541;
    font-weight: 600;
}
  
input:checked ~ label.label_testimonial-2 {
    color: #f5d76e;
    border-right: solid 4px #f5d76e;
    font-weight: 600;
}
  
input:checked ~ label.label_testimonial-3 {
    color: #00b16a;
    border-right: solid 4px #00b16a;
    font-weight: 600;
}
  
input:checked ~ label.label_testimonial-4 {
    color: #f27935;
    border-right: solid 4px #f27935;
    font-weight: 600;
}

label.label_testimonial-1:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("../images/temoigneur.png");
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
    border-radius: 50%;
}
  
label.label_testimonial-2:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("../images/temoigneur.png");
    background-position: center;
    background-size: 75% 75%;
    border-radius: 50%;
    background-repeat: no-repeat;
}
  
label.label_testimonial-3:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("../images/temoigneur.png");
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
    border-radius: 50%;
}

label.label_testimonial-4:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: 15px;
    background-image: url("../images/temoigneur.png");
    background-position: center;
    background-size: 75% 75%;
    background-repeat: no-repeat;
    border-radius: 50%;
}
  
label:first-letter {
    text-transform: uppercase;
}
  
.label_testimonial-1:hover {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ffffff),
        to(#d64541a3)
        );
    background-image: -webkit-linear-gradient(left, #ffffff, #d64541a3);
    background-image: -o-linear-gradient(left, #ffffff, #d64541a3);
    background-image: linear-gradient(to right, #ffffff, #d64541a3);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
    font-weight: 600;
}
  
.label_testimonial-2:hover {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ffffff),
        to(#f5d76e59)
    );
    background-image: -webkit-linear-gradient(left, #ffffff, #f5d76e59);
    background-image: -o-linear-gradient(left, #ffffff, #f5d76e59);
    background-image: linear-gradient(to right, #ffffff, #f5d76e59);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
    font-weight: 600;
}
  
.label_testimonial-3:hover {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ffffff),
        to(#00b16aa3)
    );
    background-image: -webkit-linear-gradient(left, #ffffff, #00b16aa3);
    background-image: -o-linear-gradient(left, #ffffff, #00b16aa3);
    background-image: linear-gradient(to right, #ffffff, #00b16aa3);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
    font-weight: 600;
}
  
.label_testimonial-4:hover {
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#ffffff),
        to(#f27935a3)
    );
    background-image: -webkit-linear-gradient(left, #ffffff, #f27935a3);
    background-image: -o-linear-gradient(left, #ffffff, #f27935a3);
    background-image: linear-gradient(to right, #ffffff, #f27935a3);
    font-size: 1.2rem;
    -webkit-transition: font-size 0.5s;
    -o-transition: font-size 0.5s;
    transition: font-size 0.5s;
    font-weight: 600;
}
  
p.testimonialState {
    margin-top: -5px;
    font-size: 16px;
    font-style: italic;
    color: var(--color-10);
}
  
p.testimonialFrom {
    margin-top: 5px;
    font-weight: bold;
    font-size: 18px;
    color: var(--color-12);
}

  
/* 
============================
Page contact
============================
*/


#page-contact{
    width: 100%;
    background-color: var(--color-11);
    background-image: url(../images/contact1366.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 21%;
}



/* 
============================
Page Faq
============================
*/


.faq{
    padding-top: 100px;
    padding-bottom: 100px;
}


/* 
============================
condition d'utilisation
============================
*/


.paragraphe-CU{
    padding-top: 100px;
    color: #E8E8FF;
}


.pageActivites{
    padding: 100px 0;
}




/* 
========================
contact
========================
*/

#contact{
    width: 100vw;
    height: 100vh;
    padding-top: 230px;
    padding-bottom: 600px;
    justify-content: center;
    margin: 0 auto;
}


.contenu-contact{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.information-contact{
    width: 40%;
    position: relative;
    top: -50px;
}


.information-contact .cls-1 {
    fill: var(--color-04);
}


.contenu-formulaire-contact{
    width: 55%;
    height: auto;
}


#form-contact{
    width: 100%;
    position: relative;
    top: -50px;
}


.form-contact{
    width: 60%;
    background-color: var(--color-04);
    padding: 50px;
    box-shadow: var(--box-shadow-03);
    height: auto;
    position: relative;
    z-index: 20;
}


.titre-contact{
    font-size: 25px;
    color: var(--color-04);
}

.souligneur01{
    height: 5px;
    border-radius: 200px;
    background: var(--color-04);
    width: 30%;
}

.souligneur02{
    height: 20px;
    border-radius: 200px;
    background: var(--color-04);
    width: 20px;
    position: relative;
    top: -12px;
}


.commentaire-titre-contact p{
    font-size: 15px;
    padding: 20px 0;

}


.block-telephone{
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.block-telephone p{
    padding-left: 30px;
}

.block-email{
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.block-email p{
    padding-left: 30px;
}

.block-localisation{
    display: flex;
    padding: 10px 0;
    align-items: top;
}

.block-localisation p{
    padding-left: 30px;
}

