* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fdfbf9;
    /*padding: 0 90px 0 90px;*/
}

/* Début Navigation */

header {
    width: 100%;
    height: 82px;
    /*position: fixed;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*outline: red 1px solid;*/
    background-color: #fdfbf9;
}

.banner-navigation {
    width: 1442px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo-podia {
    margin-right: 20px;
    text-decoration: none;
    font-size: 28px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings:
    "slnt" 0;
    color: #4b2aad;
}

.logo-podia:hover {
    color: #372275;
}

.navigation-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

nav {
    width: 500px;
    display: flex;
    flex-direction: row;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

nav > ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

li {
    list-style: none;
    padding: 15px 25px 15px 25px;
    border-radius: 25px;
    cursor: pointer;
}

li:hover {
    background-color: #f5efeb;
}

li > a {
    text-decoration: none;
    color: black;
}

button {
    border: none;
}

.button-connexion {
    padding: 15px 25px 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background-color: #fdfbf9;
}

.button-connexion:hover {
    background-color: #f5efeb;
}

.button-inscription, .button-essai {
    padding: 15px 25px 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    background-color: #4b2aad;
    color: #fdfbf9;
}

.button-inscription:hover, .button-essai:hover {
    background-color: #372275;
}

/* Fin Navigation */

/* --- */

img {
    max-width: 1265px;
    /*display: block;*/
}

.section-home-chart {
    width: 100%;
    display: flex;
    margin-top: 130px;
    flex-direction: column;
    align-content: center;
    /*outline: green 1px solid;*/
}
.test {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    /*outline: rgb(128, 0, 128) 1px solid;*/
}

.test2 {
    /*width: 1265px;*/
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    /*align-content: center;*/
    /*justify-content: center;*/
    /*outline: rgb(128, 0, 128) 1px solid;*/
}

.home-chart {
    display: flex;
    padding: 0 170px 0 170px;
    flex-direction: column;
    align-items: center;
    /*outline: red 1px solid;*/
}

h1 {
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-size: 50px;
    line-height: 66px;
    color: rgb(26, 23, 21);
}

h2 {
    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-size: 36px;
    line-height: 52px;
    color: rgb(26, 23, 21);
}

p {
    font-weight: 400;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 36px;
    color: rgb(92, 88, 86);
}

.button-essai {
    margin-top: 10px;
}

@media screen and (max-width: 1265px) {
    .home-chart {
        justify-content: center;
    }
    img {
        width: 100%;
    }
}