@import 'css/main.css';

/* -------------------------------------- */
/* Filters */
/* -------------------------------------- */

.filterDiv {
    float: left;
    /* pour les images */
    overflow: hidden;
    display: block;
    /* show by default */
}

.hide {
    display: none;
}

#myBtnContainer {
    display: flex;
    align-items: center;
    /* haut droite bas gauche */
    margin: 50px 0 20px 0;
    height: 25px;
}

.btn,
#btn4,
#btn5,
#btn6 {
    border: none;
    outline: none;
    padding: 0;
    padding-bottom: 3px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 0;
    margin-right: 20px;
    background-color: transparent;
    font-size: 1rem;
    font-weight: 740;
    transition: all 0.3s ease;
}

#myBtnContainerMob {
    display: none;
}

/* ----------------------------------- */
/* Images */
/* ----------------------------------- */

.work-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ----------------------------------- */
/* Texte d'intro */
/* ----------------------------------- */

#introIndex {
    line-height: 20px;
}

/* ----------------------------------- */
/* M E D I A   Q U E R I E S */
/* ----------------------------------- */

@media (max-width: 768px) {

    #myBtnContainer {
        display: none;
    }

    #myBtnContainerMob {
        display: flex;
        align-items: center;
        margin: 30px 0;
        height: 25px;
    }
}

@media (min-width: 1920px) {

    #introIndex {
        line-height: 23px;
    }
}