* {
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    min-height: 100%;
    position: relative;
    padding-bottom: 30px;
    display: flex;
	flex-direction: column;
    --color-red: #FFB000;
    --couleur-titre: white;
    background-color: white;
}
.navbar {
    margin: 0;
    border: none;
}
ul.nav.navbar-nav {
    float: initial;
}
.glyphicon {
    color: var(--color-red);    
}
.glyphicon-education {
    font-size: 40px;
}
.glyphicon-hand-right {
    color: inherit;
}

.navigation {
    font-family: Roboto Slab;
    font-size: 16px;
    text-transform: uppercase;
    min-height: 50px;
}
.navigation ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}
.navigation li {
    padding: 20px;
    cursor: pointer;
}
.navigation li a {
    color: grey;
}
.navigation li:hover {
    background-color: var(--color-red);
}
.nav>li>a:hover {
    background-color: grey;
}
.navbar-default .navbar-nav>li:hover>a {
    color: white;
}
.top {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 9999;
}

/* Header */
header
{
    background-image: url("images/abstrait3.jpg");
    /*background-size: 100% 100%;*/
    background-size: cover;
    background-attachment: fixed;
    /* background-repeat: repeat; */
}
header .container-fluid {
    background-color: rgba(0, 0, 70, 0.7);
    height: 350px;    
    display: flex;
    align-items: center;
}
.nom {
    width: 600px;
    margin-left: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: Old Standard TT;
}

header img {
    border-radius: 100%;
    box-shadow: 0px 0px 20px black;
    overflow: hidden;
    width: 100%;
}
header .photo {
    width: 25%;
}
h1 {
    font-weight: bold;
    border-bottom: 5px double var(--couleur-titre);
    color: var(--couleur-titre);
    padding-bottom: 20px;
}
h2 {
    font-weight: bold;
    font-size: 40px;
    padding: 10px;
    text-align: center;
}
h3 {
    font-size: 20px;
    color: black;
}
h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-red);
}
h5 {
    font-size: 15px;
    text-transform: uppercase;    
}
header p {
    font-size: 22px;
    color: var(--couleur-titre);
}

section {
    padding: 40px 0;
    font-family: Roboto Slab;    
}
section:nth-child(even) {
    background-color: whitesmoke;
}

.profil, .experience {
    font-size: 16px;
    text-align: justify;
}
.profil h3 {
    font-size: 14px;
    font-weight: bold;
}
.profil a {
    color: var(--color-red);
}
.profil .atouts, .profil .technique {
    text-align: right;
}
.btn-primary {
    color: white;
    border: 1px solid var(--color-red);
    background-color: var(--color-red);
}
.btn-primary:hover {
    color: var(--color-red);
    background-color: white;
    border: 1px solid var(--color-red);
}
.experience .description {
    font-style: italic;
}

.presentation {
    font-size: 16px;
    color: grey;
    text-align: justify;
}
.presentation h3 {
    text-transform: uppercase;
    text-align: left;
}
.presentation .diplome {
    padding: 20px;
}
.diplome > div, .diplome > div > h3 {
    text-align: center;
}

footer a, footer p {
    color: white;
}
.realisations a:hover, footer a:hover, .coordonnees a:hover {
    color: var(--color-red);    
}
.realisations a {
    margin: 5px;
}
.realisations p:nth-child(4):hover ~ .identifiants_blog {
    visibility: visible;
}
.realisations {
    font-family: Roboto Slab;
}
.ligneProjet {
    padding-top: 10px;
}

.projetOC {
    padding: 30px;
    margin: 10px 0;
    text-align: center;
    /* border-radius: 10px; */
    /* box-shadow: 3px 3px 5px gray; */
    background-color: white;
}
.projetOC h3 {
    font-size: 25px;
}
.projetOC img:not(.dice) {
    border-radius: 100%;
}

.projetOC .description {
    padding: 10px;
    text-align: center;
    color: black;
    border-radius: 10px;    
    font-size: 15px;
}
.coordonnees, .message-contact {
    font-size: 15px;
    text-align: center;
}
.coordonnees a {
    color: black;
}
.message-contact {
    font-style: italic;
    margin-bottom: 40px;
}
.contact .container-fluid {
    margin-bottom: 80px;
}
.load-cv {
    text-align: center;
    font-size: 28px;
    border: 1px solid white;
    padding: 10px;
}
.load-cv a {
    color: white;
    text-decoration: none;    
}
.load-cv:hover {
    border: 3px solid white;
    font-weight: bold;
}

section.cv
{
    background-image: url("images/abstrait3.jpg");
    background-attachment: fixed;
    background-size: cover;
    height: 200px;    
    padding: 0;
}
section.cv .container-fluid {
    height: 200px;    
    background-color: rgba(255, 176, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    font-style: italic;
    background-color: #202051;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
}
footer p {
    margin: 0;
}

@media screen and (max-width: 610px) {
    .navigation ul {
        flex-direction: column;
    }
    .nom {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        text-align: center;
    }
}
@media screen and (max-width: 800px) {
    .nom {
        margin-left: 0;
    }
}
