@import url(styles.css);
@import url(styles-aux-header.css);



.text-content {
    margin: auto;
    height: 50%;

}


.text-content h2 {
    font-family: "Poppins-Light";
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.text-content p,
li {
    text-align: left;
    font-family: "Poppins-Light";
    /*font-size: calc(1.5vw + 1.5vh);*/
    font-size: 16px;
    margin: 0 auto;
    text-align: justify;
}

/* -------------------------------- ref list -------------------------------- */
.ref-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    margin: auto;
    margin-bottom: -5.33vw;
    width: 96vw;
    padding: 0;
}

.ref-list li {
    width: 20vw;
    height: fit-content;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ref-list li:not(:last-child) {
    margin-bottom: 2vw;
}

.ref-list img {
    display: flex;
    flex: 1;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ---------------------------- Selectorr buttons --------------------------- */
.selectors_container {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    margin-top: calc(var(--CONTENT-WIDTH) / 16);
    margin-bottom: calc(var(--CONTENT-WIDTH) / 16);

}

.selectors_container {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;

}

.selectors_container .empty {
    font-family: "Poppins-Light";
    font-size: 20px;
    padding: 10px 40px 10px;
    outline: 0;
    border: 2px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    width: 200px;
    margin: 0 0.5vw;
    color: black
}

.empty.focused {
    background-color: var(--pastel-green);

}

#LogOuTertiaire {
    margin-top: calc(var(--CONTENT-WIDTH) / 32);
    margin-bottom: calc(var(--CONTENT-WIDTH) / 64);
}

#NeufOuReno {
    margin-bottom: calc(var(--CONTENT-WIDTH) / 16);
}

@media (max-width: 768px) {

    .ref-list li {
        width: 30vw;
    }
}

@media (max-width: 480px) {

    /* Image grid --> */

    .ref-list li {
        width: 45vw;
    }

    .ref-list li:not(:last-child) {
        margin-bottom: 6vw;
    }

}