body {
    font-family: "Raleway", arial, sans-serif;
    color: #1d3752;
}
.header {
    height: 100px;
    background-color: #fff;
    border: 1px solid #ccc; /* bordure */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ombre en bas */
    font-size: 16px;
    font-weight: 400;
}

.logo, .list-menu li.nav-item {
    display: flex; /* Active le mode flexbox */
    align-items: center; /* Centre verticalement les enfants */
    height: 80px; /* Exemple de hauteur, à adapter selon votre besoin */
}

.logo img {
    max-height: 80%; /* Ajuste la taille du logo si nécessaire */
    max-width: 100%; /* Empêche le débordement horizontal */
}

.list-menu li.nav-item {
    margin-right: 2rem;
}

.list-menu .nav-item:hover {
    cursor: pointer;
    color: #34d5ff;
    border-bottom: 1px solid #34d5ff;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
}

.information-title span {
    font-size: 48px;
    font-weight: bold;
}

.information {
    display: flex;
    height: 100vh;
    margin-left: 3rem;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.information-description span {
    font-size: 20px;
}

.content-right {
    display: flex;
    flex-direction: row-reverse;
}