header {
    background-color: var(--red);
    justify-content: center;
    /* border-bottom: 2px solid var(--blue); */
    display: flex;
    flex-direction: column;
    /* height: 3rem; */
    /* padding: .5rem 5% 1rem 5%; */
    padding: 0.5rem 5% 1rem 5%;

    gap: 1rem;
}

.headerCont {
    /* padding: 0.2rem 0rem; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 1rem;
}

.headerLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.headerLeft h1 {
    display: flex;
    align-items: center;
}

.searchButton {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
}

header .titre2 {
    color: white;
}

.menu_deroulant {
    background-color: var(--white);
    height: 10px;
    width: 10px;
}

/* RIGHT ======== */
.headerRight ul {
    /* width: 300px; */
    display: flex;
    gap: 1rem;
}
.menu_dot {
    height: 8px;
    background-color: var(--salmon);
    width: 8px;
    transform: rotate(45deg);
}
#LogoPUI {
    height: 1.5rem;
    /* width: 2rem; */
    margin-left: 0px;
}
nav ul {
    flex-direction: row;
}

/* LOGO PUI ------------------------------------ */
/* #PUI_icon {
    fill: var(--salmon);
    height: 1.5rem;
    opacity: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 10rem;
} */

/* RESPONSIVE ====================================================== */

/* // Medium devices (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
}

/* // Large devices (desktops) */
@media (min-width: 769px){
    header {
        padding: 0.5rem 0 1rem 0;
    }

    .headerCont {
        margin: 0% 15%;
    }
}
@media screen and (min-width: 1000px) {
    .headerCont {
        margin: 0% 15%;
    }
    #LogoPUI {
        height: 2rem;
        width: 2rem;
        margin-left: 0px;
    }
     header {
        padding: 0.5rem 0 1rem 0;
    }
}
/* // Extra-large desktops */
@media screen and (min-width: 1201px) {
}
