/*
*  html5resetcss
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

nav ul,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-color: rgb(18, 39, 58);
    --secondary-color: rgb(237, 225, 220);
    --shadow-color: rgba(18, 39, 58, .2);
    --highlight-color: rgba(237, 225, 220, .2);
    ;
    --padding: 20px
}

body {
    font-family: poppins, sans-serif;
    color: var(--secondary-color);
    background-color: var(--main-color);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

aside {
    color: var(--main-color);
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: var(--padding) 0;
    min-width: 325px;
    border-bottom: 2px solid white;
}

aside li {
    padding: .3em;
    display: flex;
    align-items: center;
}

aside li a {
    color: var(--main-color);
}

.printed {
    display: none;
}

.hover-style:hover {
    transform: translate(2px);
    border-radius: 3px;
    border: 1px solid var(--main-color);
    transition: all 0.1s linear;
}

footer {
    display: none;
}

/* 
.hover-style:hover>a {
    color: var(--secondary-color);
    transition: all 0.1s linear;
} */

img {
    display: block;
    border: 2px solid var(--main-color);
    border-radius: 2px;
}

.icon {
    fill: var(--main-color);
}

aside div.formation {
    display: none;
}

aside h2:first-of-type {
    display: none;
}

aside .intro {
    display: none;
}

.intro {
    padding: var(--padding) 0;
}


.intro>h1 {
    font-size: 2em;
    text-align: center;
}

.intro h1>em {
    display: block;
    font-size: 53%;
    padding: .5em;
}

.intro p {
    margin-top: 1em;
    font-style: italic;
    text-align: center;
}

content {
    padding: var(--padding);
}

h2 {
    font-size: 1.75em;
    margin-top: 1em;
    padding: .5em 0;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.card {
    padding-left: calc(var(--padding)/2);
    margin: var(--padding) 0;
    border-left: 1px solid var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.card .company span::after {
    content: '>';
    padding: 0 var(--padding);
}

.poste,
.missions ul li {
    list-style: none;
    padding: .3em 0
}

.missions ul li {
    padding: .3em 0 .3em 1em;
}

@media (min-width: 768px) {
    main {
        flex-direction: row;
    }


    footer {
        display: flex;
        justify-content: center;
        margin: var(--padding) 0;
        font-size: .5em !important;
    }

    footer div {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: calc(var(--padding)/3);

    }

    .material-icons{
        font-size: inherit !important;
    }

    footer div span{
        display: block;
        border: 1px solid var(--secondary-color);
        border-radius: 5px;
        text-align: center;
        padding: 5px;
    }

    aside {
        flex: 1;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding: var(--padding);
        border-right: 2px solid white;
        border-bottom: none
    }

    aside>div:first-of-type {
        min-height: 215px;
    }

    aside>img {
        margin: 0 auto;
    }

    aside h2:first-of-type {
        display: block;
    }

    aside div.formation {
        display: block;
    }

    section.formation {
        display: none;
    }

    .formation>ul>li {
        display: block;
        margin: .3em 0;
        border-left: 1px solid var(--main-color);
    }

    content {
        flex: 2
    }


    content .intro h1 {
        display: none;
    }

    aside .intro {
        display: block;
        margin: 0 auto;
        text-align: center;
        font-size: 1.5em;
    }



    aside .intro em {
        font-size: 53%;
    }
}