*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Empêche le scroll horizontal indésirable */
    min-height: 100vh;
}

:root {
    --font-family: 'Roboto', sans-serif;
    --color-bg: linear-gradient(90deg, rgb(0, 0, 1) 0%, rgba(26, 26, 26, 1) 50%, rgba(0, 0, 0, 1) 100%);
    --color-secondary-bg: #6f00ff2d;
    --color-card: rgba(255, 255, 255, 0.05);
    --color-border: #dbdfe7;
    --color-text: #dadada;
    --color-text-secondary: #ffffff;
    --color-text-focus: #c300ff;
    --color-primary: rgba(190, 49, 255, 0.781);
    --radius: 8px;
    --width-max: 1500px;
    --width-min: 450px;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    letter-spacing: 1px;
    line-height: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;


}

header,
main,
footer {
    width: 100%;
    max-width: var(--width-max);
    min-width: var(--width-min);
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;

}

main {
    align-items: center;
}

footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    color: var(--color-text-secondary);
    background-color: var(--color-secondary-bg);
}

.expertise,
.services,
.industries,
.contact,
.carousel-presentation {
    width: 100%;
    max-width: var(--width-max);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.contact {
    display: flex;
    flex-direction: Row;
    justify-content: space-around;
}

.expertise-presentation,
.services-presentation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

}



.breadcrumb-section,
.banner-section {
    display: flex;
    justify-content: start;
}


.breadcrumb-nav,
.logo {
    padding: 1rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: end;
    color: var(--color-text-focus);
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    margin: 0 0.25rem;
    content: ">";

}

.banner-section {
    width: 100%;
    background-color: var(--color-secondary-bg);
}


.Banner-left {
    margin: 1rem;
    width: 300px;
    display: flex;
}

.banner-right {
    margin: 1rem;
    display: flex;
    justify-content: end;
    flex: auto;


}

h1 {
    margin-top: 0;
    font-size: 2rem;
    color: var(--color-text-secondary);
    letter-spacing: .5rem;
    line-height: 2.5rem;
    font-weight: 900;
    display: flex;
}

p {
    margin: 0;
    padding: 0;
}

.footer-about,
.footer-nav {
    margin-left: 1rem;
    margin-right: .5rem;
    width: 15rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

menu li {
    list-style-type: none;
    display: inline-block;
    padding-right: 1rem;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    padding-right: 1rem;


}



a {
    color: var(--color-text-secondary);
    text-decoration: none;
}

a:focus {
    color: var(--color-text-focus);
}

a:hover {
    text-decoration: underline;
}


.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.footer-bottom p {
    color: #dbdfe7;
}

.footer-bottom ul li {
    list-style-type: none;
    display: inline-block;
    padding-right: 1rem;
    margin: 0;


}

.footer-legal {
    padding: 0;
    margin: 0;
    color: #dbdfe7 !important;
}

.partners-wrapper {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: space-evenly;
    justify-content: space-evenly;
}

.partners-logo img {
    width: 4.5rem;
    height: fit-content;
    display: flex;

}

#Human-check {
    position: absolute;
    left: -9999px;
}

#label8 {
    width: 20rem;
}

/****************************
*--------bottom blur--------*
*****************************/

.blur-bottom {
    position: fixed;
    /* reste collé à l'écran */
    bottom: 0;
    /* en bas */
    left: 0;
    width: 100%;
    /* prend toute la largeur */
    height: 60px;
    /* hauteur du blur */
    backdrop-filter: blur(10px);
    /* flou du contenu derrière */
    background: #ffffff03;
    /* fond semi-transparent pour voir le blur */
    mask: linear-gradient(#0000 0%, #000 80%);
    pointer-events: none;
    /* permet de cliquer à travers si nécessaire */
    z-index: 999;
    /* au-dessus du contenu */
}