*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* faire un scroll doux */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif; /* Police */
    background: rgb(219, 220, 224); /* arrière-plan */
}

/* BARRE DE NAVIGATION */
.nav-gauche {
    width: 300px; /* largeur de 300px */
    height: 100vh; /* hauteur 100 viewport height (100% de la hauteur de l'ecran */
    min-height: 800px; /* Autoriser à réduire jusqu'à 800px */
    background: #485563;
    background-image: linear-gradient(to right, #29323c, #485563);
    position: fixed; /* Le menu est fixé à gauche */
    /* fixé en haut à gauche */
    top: 0;
    left: 0;
    border-right: 1px dashed #f1f1f1; /* bordure à droite en pointillé */
    z-index: 5; /* pour créer une couche */
    /* On ajoute une petite transition */
    transition: all 0.2s ease-in-out;
}

/* STYLISER LES BLOCS MENU */
.blocs-menu {
    width: 100%; /* largeur 100% de la nav barre */
    height: 10%;
    /* centrer le texte avec flexbox */
    display: flex;
    justify-content: center; /* centre sur x */
    align-items: center; /* centre sur y */
}

.blocs-menu span {
    font-size: 19px; /* taille de la police */
    position: relative; /* On va avoir un pseudo-element qui va être en position absolue */
    font-weight: 700; /* gras de la police */
    cursor: pointer;
}

.blocs-menu span a {
    text-decoration: none; /* on enlève le trait en dessous */
    color: #f1f1f1; /* couleur du texte */
}

/* L'animation des liens */
.blocs-menu span::after {
    content: ''; /* Obligatoire initialiser une chaîne vide */
    display: block; /* span de base est inline pour pouvoir lui donner une largeur et une hauteur */
    width: 0;
    margin: 5px auto 0 auto; /* 5px en haut, à droite auto, 0 en bas, à gauche en auto */
    height: 2px;
    border-radius: 2px; /* arrondir les bords */
    background: #aaa;
    transition: all 0.2s ease-out; /* à l'écoute de toutes les propriétés, dure 0.2s, plus long vers la fin */ 
}

.blocs-menu span:hover::after {
    width: 100%;
}

/* LOGO */
.blocs-menu:nth-child(1) { /* On cible le 1er enfant */
    width: 100%;
    height: 25%;
    background: #485563;
    background-image: linear-gradient(to right, #29323c, #485563);
}

.cercle-portrait {
    margin: 20px 0; /* marge de 20px en haut et en bas et 0 à gauche et à droite */
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    box-shadow: 26px 26px 53px #292929,
                -26px -26px 53px #3d3d3d;    
}

.cercle-portrait img {
    width: 100px;
    position: absolute;
    /* pour centrer l'image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-cercle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    cursor: pointer;
}

.logo-cercle img {
    width: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1560px) {
    .blocs-menu {
        height: 80px;
    }

    .logo-cercle {
        bottom: 100px;
    }
}


/* A partir de 1300px fait quelque chose */
@media screen and (max-width: 1300px) {
    /* faire disparaitre la menu de gauche */
    .nav-gauche {
      /* C'est pour donnée l'effet que la barre de menu disparait */  
      left: -300px!important;  

      /* pour l'affichage mobile */
      width: 250px;
      min-height: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; 
      background: rgba(72, 85, 99, 0.70);
      ;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .menu-visible {
        left: 0px!important;
    }

    /* On va faire disparaitre l'image du 1er bloc */
    .blocs-menu:nth-child(1) {
        display: none;
    }
    
    /* pour faire disparaître le logo contact */
    .blocs-menu:nth-child(7) {
        display: none;
    }
    
    .btn-rond-menu {
        width: 70px;
        height: 70px;
        border: 1px solid #f1f1f1;
        border-radius: 50%;
        background: #333;
        position: fixed;
        top: 10px;
        left: 10px;
        /* Au dessus de la nav-gauche */
        z-index: 10;
    }

    .cont-ligne {
        width: 36px;
        height: 36px;
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ligne-unique {
        width: 100%;
        height: 4px;
        border-radius: 5px;
        background: #f1f1f1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ligne-unique::before {
        content: '';
        position: absolute;
        bottom: 10px;
        width: 100%;
        height: 4px;
        background: #f1f1f1;
        border-radius: 5px;
    }

    .ligne-unique::after {
        content: '';
        position: absolute;
        top: 10px;
        width: 100%;
        height: 4px;
        background: #f1f1f1;
        border-radius: 5px;
    }

    /* lorsque .cont-ligne à aussi la class .active alors .ligne-unique */
    .cont-ligne.active .ligne-unique::after {
        top: 0;
        transform: rotate(45deg);
        /* Cela va durer 300ms de façon douce animation transform, cela va durer 300ms avec 300ms de delais et de façon douce */
        transition: top 300ms ease, transform 300ms 300ms ease;
    }

    /* On cache la barre du milieu */
    .cont-ligne.active .ligne-unique {
        background: transparent;
    }

    .cont-ligne.active .ligne-unique::before {
        bottom: 0;
        transform: rotate(-45deg);
        transition: bottom 300ms ease, transform 300ms 300ms ease;
    }

}

/* ----------- ACCUEIL ----------- */
.accueil {
    background: url(/img/accueil.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    height: 100vh;
    min-height: 900px;
    /* Pour largeur, on applique un calc 100%-300px qui correspond au menu */
    width: calc(100% - 300px);
    /* On le pousse vers la droite */
    position: relative;
    margin-left: auto;
}

h1 {
    font-size: 70px;
    font-family: 'Abril Fatface', sans-serif;
    margin: 0 60px;
    padding-top: 210px;
}

.txt-animation {
    font-size: 30px;
    margin: 10px 0 10px 60px;
}

.btn-acc {
    /* l'affichage inline-flex donne la possibilité d'utiliser width et height */
    display: inline-flex;
    width: 200px;
    height: 50px;
    text-decoration: none;
    background: #333;
    /* On utilise justify-content et align-items car on display: inline-flex */
    justify-content: center;
    align-items: center;
    color: #f1f1f1;
    margin: 10px 0 0 0;
    border-radius: 2px;
    font-size: 18px;
    transition: transform 0.2s ease-in-out;
}

.btn-acc:hover {
    transform: scale(1.02);
}

.btn-acc1 {
    margin: 10px 0 0 60px;
}

.btn-acc2 {
    background: transparent;
    border: 2px solid black;
    color: black;
    font-weight: 700;
}

.medias {
    /* Pour les mettre les uns à la suite des autres */    
    display: flex;
    margin-left: 60px;
    margin-top: 30px;
}

.media {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    margin-right: 10px;
    display:flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.media2 {
    background: transparent;
    border: 2px solid #333;
}

.icone-medias {
    width: 30px;
}

.btn-rond {
    width: 70px;
    height: 70px;
    position: absolute;
    bottom: 20px;
    left: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointeur;
    box-shadow: 0 0 0 0 #333;
    background: #333;
    animation: pulse 1.3s infinite;
}

/* On créer l'animation */
@keyframes pulse {
    to {
        /* On l'a fait démarrer au dessus à 0 puis on ajoute un peu de flou 8px noir */
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.01)
    }
}

.logo-btn-rond-accueil {
    width: 35px;
}

/* MEDIA ACCUEIL */
@media screen and (max-width: 1300px) {
    .accueil {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .accueil {
        height: 700px;
        min-height: 0;
    }

    h1 {
        font-size: 65px;
        margin: 0 30px 0 30px;
        padding-top: 100px;
    }
    .accueil p {
        margin: 20px 0 20px 30px;
        font-size: 25px;
    }
    .btn-acc1 {
        margin: 10px 0 0 30px;
    }
    .medias {
        margin-left: 30px;
    }
    .btn-rond {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .accueil {
        height: 600px;
    }
    h1 {
        font-size: 50px;
        margin: 0 30px;
    }
    .accueil p {
        font-size: 20px;
    }
    .btn-rond-menu {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 500px) {
    h1 {
        font-size: 35px;
    }
    .accueil p {
        font-size: 16px;
    }
    .btn-acc {
        width: 120px;
        font-size: 13px;
        height: 40px;
        margin: 10px 0 0 5px;
    }
    .btn-acc1 {
        margin: 10px 0 0 30px;
    }
    .media {
        width: 40px;
        height: 40px;
    }
    .icone-medias {
        width: 20px;
    }
}

@media screen and (max-width: 450px) {
    .btn-rond-menu {
        width: 50px;
        height: 50px;
    }
    .cont-ligne {
        width: 20px;
        height: 38px;
    }
    .ligne-unique {
        height: 3px;  
    }
    .ligne-unique::before {
        bottom: 8px;
        height: 3px;
    }
    .ligne-unique::after {
        top: 8px;
        height: 3px;
    }
    .accueil {
        height: 500px;
        padding-top: 80px;
    }
    .accueil p {
        margin: 30px 0 0 5px;
    }
    .btn-acc {
        width: 100px;
        font-size: 12px;
        height: 35px;
        margin: 30px 0 0 5px;
    }
    .medias {
        margin-top: 30px;
        margin-left: 5px;
    }
    .icone-medias {
        width: 20px;
    }
}

@media screen and (max-width: 380px) {
    .txt-animation {
        font-size: 15px!important;
    }
}

@media screen and (max-width: 370px) {
    .txt-animation {
        font-size: 13px!important;
    }
}

/* ----------- Section Présentation ---------- */
.presentation {
    width: 100%;
    position: relative;
    /* Pour cacher se qui dépasse de la div */
    overflow: hidden;
    border-top: 1px dashed #333;
    border-bottom: 1px dashed #333;
    color: #e7e7e7;
}

.fond-forme {
    background: #485563;
    background-image: linear-gradient(to right, #29323c, #485563);
    width: 2300px;
    height: 1000px;
    position: absolute;
    transform: rotate(-45deg) translateX(200px)translateY(-15px);
    /* permet de passer sous les éléments */
    z-index: -1;
}

.titre-pres {
    font-size: 40px;
    text-align: center;
    margin: 50px 0 70px 0;
    /* en raison du menu */
    padding-left: 300px;
}

.container-presentation {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px 0 150px 0;
    /* pour que ça ne se reduit pas */
    flex-shrink: 0;
    padding-left: 300px; 
}

.pres-gauche {
    width: 600px;
    flex-shrink: 0;
    margin-bottom: 50px;
    padding-left: 120px;
    padding-top: 20px;
}

.pres-gauche h3 {
    text-align: center;
    font-size: 25px;
    /* Espacement entre les lettres */
    letter-spacing: 2px;
}

.pres-gauche hr {
    width: 60px;
    margin: 0 auto 20px auto;
}

.pres-gauche p {
    /* justifier le texte */
    text-align: justify;
}

.pres-gauche p.txt-left {
    text-align: left;
}

.pres-droite {
    width: 600px;
    flex-shrink: 0;
    display: flex;
    /* On met la liste au début du conteneur */
    justify-content: flex-start;
}

.liste-presentation {
    /* On enlève les points de la liste */
    list-style-type: none;
    padding: 10px 0 50px 110px;
}

.chiffre-style {
    font-family: 'Abril Fatface', sans-serif;
    font-size: 35px;
}

.txt-liste {
    font-size: 22px;
    display: inline;
}

/* Medias Présentation */

@media screen and (max-width: 1300px) {
    .container-presentation {
        padding-left: 0;
    }

    .titre-pres {
        padding-left: 0;
    }
}

@media screen and (max-width: 1100px) {
    .fond-forme {
        width: 100%;
        height: 150%;
        transform: rotate(0) translateX(0) translateY(0);
    } 
    
    .titre-pres {
        margin: 0 0 20px 0;
        padding-top: 50px;
    }

    .container-presentation {
        flex-direction: column;
    }

    .pres-gauche {
        width: 80%;
        flex-shrink: 1;
        margin-bottom: 10px;
        padding: 20px 0;
    }

    .pres-gauche h3 {
        font-size: 20px;
        letter-spacing: 0;
    }

    .pres-gauche p {
        font-size: 16px;
    }

    .pres-droite {
        width: 80%;
        flex-shrink: 1;
    }

    .liste-presentation {
        padding: 0 0;
    }
}

@media screen and (max-width: 700px) {
    .container-presentation {
        margin-top: 10px;
        margin-bottom: 70px;
    }
    
    .titre-pres {
        font-size: 24px;
        margin: 0 10px;
    }

    .pres-gauche h3 {
        font-size: 20px;
    }

    .chiffre-style {
        font-size: 30px;
    }

    .txt-liste {
        font-size: 17px; 

    }
}

/* ----------- Section Portfolio ------------ */

.portfolio {
    width: 100%;
}

.titre-port {
    text-align: center;
    padding: 50px 0;
    font-size: 50px;
    padding-left: 300px;
}

.cont-portfolio {
    width: 100%;
    height: auto;
    margin: 0 auto 100px auto;
    padding-left: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.item {
    margin: 20px;
    width: 420px;
    height: 400px;
    background: #f0f2f0;
    color: #333;
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.item:hover {
    transform: translateY(-5px)
}

.cont-img-port {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.cont-img-port img {
    width: 100%;
    height: auto;
}

.item h3 {
    padding: 10px 10px 0;
    font-size: 22px;
}

.item p {
    padding: 10px 10px 0;
}

.btn-projets {
    display: block;
    margin: 10px;
    width: 180px;
    height: 50px;
    /* pour centrer */
    line-height: 50px;
    text-align: center;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-projets::after {
    content: '';
    height: 240px;
    width: 100px;
    background: rgba(44, 43, 43, 0.4);
    display: block;
    position: absolute;
    left: -150px;
    top: -50px;
    transform: rotate(-45deg);
}

.btn-projets:hover::after {
    transition: transform 0.5s 0.1s linear;
    transform: translateX(400px);
}

/* Medias portfolio */

@media screen and (max-width: 1678px) {
    .item {
        width: 25%;
        height: 400px;
    }
}

@media screen and (max-width: 1300px) {
    .item {
        width: 25%;
    }

    .cont-portfolio {
        padding-left: 0;
    }

    .titre-port {
        font-size: 40px;
        margin: 50px 0 70px;
        padding-left: 0;
    }
}

@media screen and (max-width: 1000px) {
    .item {
        width: 40%;
        height: 420px;
    }
}

@media screen and (max-width: 700px) {
    .item {
        width: 80%;
        height: auto;
    }
}

@media screen and (max-width: 500px) {
    .titre-port {
        margin: 10px 0;
        padding: 30px 0;
    }

    .item {
        height: 400px;
    }

    .cont-img-port {
        height: auto;
    }
}

@media screen and (max-width: 340px) {
    .item {
        height: 380px;
    }
}

.section-range {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 200px;
    border-bottom: 1px dashed #333;
    background: #485563;
    background-image: linear-gradient(to right, #29233c, #485563);
    color: #f1f1f1;
    /* Pour pouvoir voir les barres grises */
    position: relative;
    z-index: -1;
}

.range-cont {
    position: relative;
}

.titre-exp {
    font-size: 40px;
    text-align: center;
    margin: 80px 0 90px 0;
    padding-left: 300px;
}

.grille-skill {
    display: grid;
    grid-template: repeat(7, 80px) / repeat(2, 500px);
    /* pour créer de l'espace entre (gouttière) */
    grid-gap: 50px;
    padding-left: 300px;
}

.barre-skill {
    height: 15px;
    background: rgb(167, 146, 243);
    border-radius: 5px;
    position: absolute;
    left: 0;
    bottom: 0;

}

.barre-grises {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 500px;
    height: 15px;
    background: rgb(216, 216, 216);
    border-radius: 5px;
}

.b1 {
    width: 80%;
}

.b2 {
    width: 70%;
    background: rgb(243, 237, 146);
}

.b3 {
    width: 70%;
    background: rgb(243, 237, 146);
}

.b4 {
    width: 45%;
}

.b5 {
    width: 25%;
}

.b6 {
    width: 0%;
    background: rgb(243, 237, 146);
}

.b7 {
    width: 5%;
    background: rgb(243, 237, 146);
}

.b8 {
    width: 5%;
}

.b9 {
    width: 0%;
}

.b10 {
    width: 30%;
    background: rgb(243, 237, 146);
}

.b11 {
    width: 10%;
    background: rgb(243, 237, 146);
}

.b12 {
    width: 0%;
}

.b13 {
    width: 10%;
}

.label-skill {
    font-size: 24px;
}

/* Médias Range */

@media screen and (max-width: 1400px) {
    .grille-skill {
        grid-template: repeat(7, 80px) / repeat(2, 450px);
    }

    .barre-grises {
        width: 450px;
    }
    
}

@media screen and (max-width: 1300px) {
    .section-range {
        padding-left: 0;
    } 
    .titre-exp {
        padding-left: 0;
    }
    .grille-skill {
        grid-template: repeat(13, 80px) / 600px;
        padding-left: 0;
    }
    .barre-grises {
        width: 600px;
    }
}

@media screen and (max-width: 700px) {
    .grille-skill {
        grid-template: repeat(13, 80px) / 400px;
    }
    .barre-grises {
        width: 400px;
    }  
}

@media screen and (max-width: 450px) {
    .section-range {
        padding-bottom: 100px;
    }
    .titre.exp {
        font-size: 30px;
        margin: 50px 0 60px 0;
    }
    .label-skill {
        font-size: 20px;
    }
    .grille-skill {
        grid-template: repeat(13, 80px) / 300px;
        grid-gap: 40px;
    }
    .barre-grises {
        width: 300px;
    }
}

/* ------- Section Expérience Travail --------- */

.travail-exp {
    width: calc(100% - 300px);
    height: auto;
    margin-left: auto;
    padding-bottom: 100px;
}

.titre-travail-exp {
    text-align: center;
    margin: 70px 0;
    font-size: 40px;
    color: #333;
}

.cont-exp-travail{
    position: relative;
    display: flex;
    justify-content: center;
}

.barre-verticale {
    height: 520px;
    width: 5px;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    left: -30px;
}

.boule-ico {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boule-ico img {
    width: 25px;
}

.flex-cont-bloc-exp {
    width: 800px;
    flex-shrink: 1;
    height: 700px;
    position: relative;
}

.bloc {
    width: 100%;
    height: 200px;
    margin-bottom: 37.5px;
    cursor: pointer;
    border: 1px solid #333;
    position: relative;
}

.contenu-bloc {
    padding: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    background: white;
    transition: transform 0.25s ease-in-out;
    position: relative;
    transform: translate(10px, -10px);
}

.contenu-bloc:hover {
    transform: translate(0, 0);
}

.bloc1 {
    background: #51E5FF;;
}

.bloc2 {
    background: #EC368D;
}

.bloc3 {
    background: #FFD6C0;
}

.titre-section-bloc {
    font-family: 'Abril Fatface', sans-serif;
    font-size: 25px;
    padding-bottom: 10px;
}

/* Media Section Travail Exp */

@media screen and (max-width: 1300px) {
    .travail-exp {
        width: 100%;
    }
}

@media screen and (max-width: 950px) {
    .barre-verticale {
        height: 620px;
    }

    .bloc {
        height: 250px;
    }

    .barre-verticale {
        margin-left: 60px;
    }

    .flex-cont-bloc-exp {
        margin-right: 30px;
        height: 800px;
    }
}

@media screen and (max-width: 520px) {
    .txt-section {
        font-size: 16px;
    }

    .bloc {
        height: 400px;
    }

    .barre-verticale {
        height: 910px;
    }

    .flex-cont-bloc-exp {
        height: 1250px;
    }
}

@media screen and (max-width: 380px) {
    .txt-section {
        font-size: 15px;
    }
}

/* Section parallax */
.section-parallax {
    width: 100%;
    height: 250px;
    background: url(/img/accueil.jpg) no-repeat right/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px dashed #333;
    border-bottom: 1px dashed #333;
}

.txt-par {
    font-size: 30px;
    font-weight: bold;
    margin: 0 50px;
}

.txt-par:nth-child(1) {
    padding-left: 300px;
}

/* Média parallax */
@media screen and (max-width: 1300px) {
    .txt-par {
        font-size: 25px;
        margin: 0 30px;
    }

    .txt-par:nth-child(1) {
        padding-left: 0;
    }
}

@media screen and (max-width: 700px) {
    .txt-par {
        font-size: 22px;
        margin: 0 25px;
    }
}

@media screen and (max-width: 550px) {
    .section-parallax {
        flex-direction: column;
    }

    .txt-par {
        font-size: 20px;
        margin: 20px 0;
    }
}

/* Section Contact */
.section-contact {
    width: 100%;
    height: auto;
}

.section-contact h2 {
    text-align: center;
    color: #333;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 50px;
}

.section-contact h2 strong {
    font-weight: 900;
}

.container-form {
    margin: 0 auto;
    width: 70%;
    padding-left: 300px;
}

.form-groupe {
    position: relative;
    display: flex;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.form-groupe label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 20px;
    transition: 0.4s ease-out;
}

.form-groupe input {
    display: block;
    width: 100%;
    padding: 10px 0;
    border: none;
    outline: none;
    background: none;
    border-bottom: 3px solid #aaa;
    color: #666;
    font-size: 20px;
    transition: 0.4s ease-out;
}

textarea {
    width: 100%;
    height: 200px;
    border: none;
    border: 3px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    resize: none;
    outline: none;
    font-size: 20px;
    transition: 0.4s all ease-out;
    background: #f1f1f1;
}

textarea::placeholder {
    font-size: 20px;
    opacity: 0.5;
}

textarea:focus {
    border-color: #8b97d7;
}

.form-groupe:nth-child(4) {
    margin-bottom: 25px;
    justify-content: flex-start;
}

.form-groupe .button-submit {
    display: block;
    width: auto;
    padding: 15px 60px;
    border: 3px solid rgb(144, 144, 144);
    border-radius: 999px;
    background-image: linear-gradient(to right, transparent 50%, rgb(65, 65, 65) 50%, rgb(134, 134, 134));
    background-size: 200%;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
}

.form-groupe .button-submit:hover {
    color: #fff;
    background-position: 100%;
    border: 3px solid #fff;
}

p.comments {
    display: inline-block;
    font-weight: bold;
    color: gray;
    font-size: 12px;
}

@media screen and (max-width: 1300px) {
    .section-contact h2 {
        padding: 70px 0 0 0;
    }
    .container-form {
        padding-left: 0;
    }

    .form-groupe:nth-child(4) {
        justify-content: center;
    }
}

/* Animation Contact */
/* Quand un enfant de .form-group à le focus alors le label, on va l'utiliser où lorsque .form-groupe.animation à le label */
.form-groupe:focus-within label,

.form-groupe.animation label {
    top: 0px;
    transform: translateY(-100%);
    color: #8b97d7;
}

/* footer */

footer {
    width: 100%;
    text-align: center;
    padding-top: 100px;
    padding-left: 300px;
}

@media screen and (max-width: 1300px) {
    footer {
        padding-left: 0;
    }
}

/* Faire un geste pour notre planète */
.planete {
    background: #485563;
    position: relative;
    top: 50px;
    padding: 10px;
    text-align: center;
    width: 320px;
    margin: 0 auto;
}

.planete a {
    color: #f1f1f1;
    font-weight: bold;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.container h1 {
    margin-bottom: 30px;
}

.video-center {
    position: relative;
    top: 50px;
    width: 100%;
    padding-top: 50%;
    height: 0;
    margin: 0 auto;
    margin-bottom: 100px;
    overflow:hidden;
}

.video-center video {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
}