header {
    width: 100%;
    height: fit-content;
    border-bottom: 1px solid lightgray;
    padding: 20px 40px 20px 40px;
    background-color: var(--color-header);
    /*Partie haute*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*Element de contact*/
}
header .contact .set {
    display: flex;
    justify-content: space-between;
    width: 250px;
    height: 20px;
}
header .contact .set img {
    color: #a6ce39;
    width: 20px;
    height: 20px;
}
header .custom-logo {
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center;
    text-decoration: none;
}
header .custom-logo div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header .custom-logo div h3 {
    font-family: Roboto-Light;
    font-size: 32px;
}
header .custom-logo div span {
    font-family: Roboto-Thin;
    font-size: 20px;
}
header .custom-logo img {
    width: 98px;
}
.hide {
    display: none !important;
}
.mobile-only {
    display: none !important;
}
.header-ctrl {
    display: none;
}
/*Lien du menu*/
.menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    background-color: var(--color-header);
    width: 100%;
    border-bottom: 1px solid lightgray;
}
.menu .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 40px;
    font-family: Roboto-Bold;
    text-align: center;
    cursor: pointer;
}
.menu .item:hover {
    background: var(--color-main);
    color: white;
}
.menu img {
    width: 40px;
    height: 40px;
}
@media (max-width: 767px) {
    /* Styles spécifiques aux téléphones */
    .header-ctrl {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: var(--color-header);
        border-bottom: 1px solid lightgray;
    }
    .header-ctrl img {
        padding: 5px;
        width: 40px;
        height: 40px;
        object-fit: contain;
        cursor: pointer;
    }
    .mobile-only {
        display: flex !important;
    }
    .no-mobile {
        display: none;
    }
    header {
        background-color: var(--color-header);
        gap: 30px;
        flex-direction: column;
    }
    .menu {
        flex-direction: column;
        align-items: center;
    }
    .menu > * {
        width: 100%;
    }
}
