/**
 * Fichier  : /pages/homepage/section-3/assets/css/style.css
 * Fonction : style de la section 3 de la page d'accueil
 */


/* ==================================================
   SECTION
================================================== */

#technology {
    position: relative;
}

#technology {
    box-sizing: border-box;
    padding: 6em 8em;
}

#technology {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray);
}

#technology {
    display: flex;
    flex-direction: column;
    gap: 2em;
}


/* ==================================================
   GRID
================================================== */

#technology .grid {
    display: grid;
    grid-template-columns: 50% auto;
    align-items: center;
    gap: 3em;

    margin-left: 26em;
}


/* ==================================================
   IMAGE
================================================== */

#technology img.laser {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1em;

    width: auto;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 1024px) {

    #technology {
        padding: 0;

        flex-direction: column-reverse;
        gap: 0;
    }

    #technology .grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3em;

        margin: 4em 2em 0 2em;
    }

    #technology img.laser {
        position: relative;
        left: 2em;

        width: 80%;
        height: auto;
    }

}