/**
 * Fichier  : /pages/homepage/header/assets/css/buttons.css
 * Fonction : style des boutons de l'en-tête - page d'accueil
 */


/* ==================================================
   BUTTONS CONTAINER
================================================== */

#welcome .buttons {
    margin-bottom: .6em;
}

#welcome .buttons {
    display: grid;
    grid-template-columns: auto auto;
    gap: .6em;
}


/* ==================================================
   BUTTONS
================================================== */

#welcome .buttons a {
    cursor: pointer;
}

#welcome .buttons a {
    box-sizing: border-box;
    padding: 10px 0;
}

#welcome .buttons a {
    height: var(--button-height);
}

#welcome .buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

#welcome .buttons a {
    background-color: var(--color__2);
    border: 1px solid var(--color__1);
    border-radius: var(--button-borderRadius);
}

#welcome .buttons a {
    font-family: 'content-font';
    font-size: 14px;
    color: #fff;
}


/* ==================================================
   ICON
================================================== */

#welcome .buttons a div {
    width: auto;
    height: 2.5em;
}

#welcome .buttons a div {
    box-sizing: border-box;
    padding: 8px;
}

#welcome .buttons a div {
    display: flex;
    align-items: center;
    justify-content: center;
}

#welcome .buttons a div {
    background-color: #111;
    border: 3px solid var(--color__1);
    border-radius: 50%;
}

#welcome .buttons a div img {
    width: auto;
    height: 100%;
}

#welcome .buttons a div img {
    filter: invert(1);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 1024px) {

    #welcome .buttons {
        display: flex;
        flex-direction: column;
    }

}