body {
    background-color: #f1f1f1;
    font-family: 'Roboto', sans-serif;
}

header {
    z-index: 3;
    width: 100%;
    position: fixed;
    top: 0;
    height: 80px;
    background-color: white;
    display: flex;
    border-bottom: 1px solid #dadada;
}

.header-wrap {
    display: flex;
     
    width: 100%;
    align-items: center;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 1184px;
}

.logo img {
    height: 60px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    margin-left: 10px;
    text-decoration: none;
    color: #646464 !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.header-navbar {
    display: flex;
    flex: 1;
    align-items: center;
    margin-left: 60px;
    text-transform: uppercase;
    list-style: none;
    justify-content: flex-end;
    color: #0a0a0a;
}


.header-navbar ul {
    display: none;
    position: absolute;
    background-color: #fff; /* Couleur de fond du menu déroulant */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Ombre du menu déroulant */
}

.header-navbar li:hover ul {
    display: block;
}

.header-navbar ul li {
    display: block;
}

.header-navbar li {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-align: center;
    margin-right: 6px;
    list-style: none;
}

.drop-menu{
    height: 50px;
    width: 180px;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.header-navbar li a {
    color: #646464;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.2px;
    text-align: center;
    list-style-type: none;
    padding: 14px 20px;
    text-transform: uppercase;
}

.header-navbar li a.active {
    /*text-decoration: underline;*/
    color: #f65654;
}

.menu-contact a {
    color: white !important;
    padding: 14px 20px;
    background-color: #f65654;
    border-radius: 4px;
}

.section1 {
    position: relative;
    box-sizing: border-box;
    padding-top: 80px;
}

.section1-wrap h1 {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.encart h2 {
    padding-top: 30px;
    font-size: 25px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    color: #fff;
    margin-bottom: 10px;
}

.encart h3 {
    font-size: 15px;
    color: #fff;
    margin-top: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    margin-bottom:15px;
    line-height: 1.2;
    font-weight: 300;
    padding-left: 20px;
    padding-right: 20px;
    font-style: normal;
    font-stretch: normal;
}







/*-----------------------------------------------------------*/

@media screen and (max-width: 768px) {
    .header-wrap {
        padding: 0 20px;
    }
    .header-navbar {
        display: none;
    }
    .logo-text {
        font-size: 1.5rem;
    }
    .section1 {
        padding-top: 40px;
    }
    .section1-wrap h1 {
        font-size: 25px;
    }
    .section1-wrap h2 {
        font-size: 25px;
    }
    .encart:first-child {
        margin-bottom: 40px;
    }
    .encart h2 {
        font-size: 25px;
    }
    .encart h3 {
        font-size: 20px;
    }
    .section2-wrap {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }
}