/**
 * Fichier  : /pages/homepage/section-3/assets/css/details.css
 * Fonction : style du contenu texte de la section 3 - page d'accueil
 */


/* ==================================================
   DETAILS
================================================== */

#technology .grid .details {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

#technology .grid .details p {
    font-family: 'content-font';
    font-size: 1em;
    line-height: 1.6em;
    color: var(--color__3);
}


/* ==================================================
   HEADER
================================================== */

#technology .details header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

#technology .details header h3 {
    font-family: 'bold-font';
    font-size: 2em;
    text-align: center;
    letter-spacing: -1px;
    color: var(--color__3);
}

#technology .details header h3 span {
    font-family: 'aesthetic-font';
    letter-spacing: 1px;
    color: var(--color__2);
}

#technology .details header hr {
    width: 6em;
    height: .1em;

    background-color: var(--color__2);
    border: none;
}


/* ==================================================
   CHECKLIST
================================================== */

#technology .grid .details .checklist {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
}

#technology .grid .details .checklist div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
}

#technology .grid .details .checklist div svg {
    width: auto;
    height: 24px;
    color: var(--color__2);
}

#technology .grid .details .checklist div span {
    font-family: 'bold-font';
    font-size: 1em;
    color: var(--color__3);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 1024px) {

    #technology .details header h3 {
        font-size: 1.6em;
    }

}