/* ----------------------------------------------------------------------------
  Changement du calcul de la hauteur et la largeur totale d'un élément
---------------------------------------------------------------------------- */
html{
    box-sizing: border-box; /*  Réinitialisation du calcul du modèle de boites/*/
    scroll-behavior: smooth;

}

*, *::after, *::before{
    box-sizing: inherit;
}


/* ----------------------------------------------------------------------------
   Éléments (nommer les éléments (balises), pas de classe ici )
---------------------------------------------------------------------------- */
body{
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: 18px;
    line-height: 1.5;   /*Hauteur de ligne  (line-height / typographie)*/

}

a{
    text-decoration: none;
}


/*----------------------------------------------------------------------------
    Objets (Structure. On précise avec des classes)
----------------------------------------------------------------------------*/
.wrapper{
    max-width: 1200px;     /*Taille du conteneur du site*/
    margin-left: auto;      /* Marge gauche automatique*/
    margin-right: auto;   /* Marge droite automatique*/
}

/*----------------------------------------------------------------------------
    Composants
    Ici, il devrait avoir la majorité des CSS.
    Nous devons être un peu plus précis ici avec les classes.
----------------------------------------------------------------------------*/
nav ul{
    margin: 0;
    list-style: none;
    padding: 0;
    /* flexbox*/
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #1D2229;
}
nav li{
    margin-right: 66px;
    margin-left: 66px;
}
nav a{
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
}
nav a:hover{
    color: #237FC4;
}

header{

   background-color: #237FC4;
    padding-top: 150px;
    padding-bottom: 150px;
}
header h4{

    font-size: 48px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}
header h5{

    font-size: 28px;

    color: #FFFFFF;
    text-align: center;
}





.container {
    margin-top: 100px
}

.section-title {
    margin-bottom: 38px
}

.shadow,
.subscription-wrapper {
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1) !important
}




/* autre parti */
h2 {

    font-size: 38px;
    font-weight: bold;

    text-align: center;
}

/* RECOMMANDATIONS */



#recommandations{
    background: #fff;
    margin-top: 40px;
    margin-bottom: 40px;
}
#recommandations .heading h2{
    color: black;
    text-align: center;
}

.carousel-indicators{
    bottom: 0px;
}
.carousel-indicators li{
    width: 20px;
    height: 20px;

    border: 1px solid #2c82d8;
}
.carousel-indicators li.active{
    background-color: #1D2229;
}
#myCarousel .carousel-item{
    padding: 40px 30px;
}
#myCarousel .carousel-item h3{
    color: #237FC4;
    font-style: italic;
}

/* SERVICE*/
.conteneurService{
   display: flex;
    justify-content: center;
}
article{
    width: 800px;
    margin: 30px;
}
aside{
   margin: 30px;
    width: 400px;
}
.service h2{
    margin-top: 40px;
    margin-bottom: 40px;

}
.service h3{
    color: #237FC4;
    font-size: 24px;;

}
/* CONTACT */
.contact{
    background-color: #3d4d62;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
}
.conteneur_contact{
    display: flex;
}
.contact_article{
    width: 600px;
}
.contact  aside h4{
    font-size: 18px;
}
.contact_article  h4 {
    font-size: 18px;
}
span{
    color: #2c82d8;
}
.logo{
    margin-top: 20px;
    width: 300px;
}
/* FOOTER */
footer{
    background-color: #1D2229;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
