html, body{
    min-height: 100%;
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}

body{
overflow-x: hidden;
}


li {
    list-style-type: none;
}
/************************************************NAVBAR**********************************************/
    
.navbar-brand img {
    max-height: 50px;
}
    
.logo{
    position: absolute; /*logo défini en position absolute pour l'animation*/
    margin-left: 10px;
}

.navbar-brand {
    font-size: 2.3rem;
    font-weight: bold;
}

@media screen and (max-width:767px) {
    .navbar-brand img {
        max-height: 28px;
    }
    .navbar-brand {
        font-size: 0px;
    }
    .logo{
        margin-top:0px;
    }
}

.navbar-light .navbar-brand .navbar-nav .nav-link a {
   /*  color: rgb(22, 20, 20); */
   color: #f8f9fa !important;
}

.navbar-light .navbar-toggler {
    color: rgb(22, 20, 20);
    border-color:#f8f9fa;
}

.bg-light {
    background: rgb(225, 227, 230);
    /* background: rgba(177, 183, 192, 0.61); */
}
a {
    text-decoration: none;
    background-color: #0ab6e000;
}
/*************************************************HEADER******************************************************/
/** les 2 colonnes côte à côte*****/
.col-xs-12 .col-md-8 .col-md-4 {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/**** les lignes*****/

.lines{
    position: absolute; /*lignes définies en position absolute pour l'animation*/
    margin-top: 120px; /*il faut noter qu'en général, lorsqu'on définit une position absolute sur un élément, les marges exterieures ou les positions top, left, exterieures sont calculés par à l'élément englobant. Donc il faut souvent prévoir augmenter les pixels si l'on veut avoir la position souhaitée*/ 
    margin-left: 84px;
}
.l1{
    width: 200px;
    height: 3px;
    background:#f1f1f1;
    border-radius: 5px;
    margin-bottom: 5px;
}

.l2{
    position:relative; /*l2 définie en position relative pour l'animation*/
    width: 120px;
    height: 3px;
    background:#f1f1f1;
    border-radius: 5px;
    top: 20%;
}

/****le h1 et le span pour l'animation****/

h1{
    display: block;
    text-align: left;
    margin-top: 170px;
    margin-bottom: 40px;
    margin-left: 84px;
    line-height: 1.6em;
    font-weight: 650;
    font-size: 2.5vw;
    color:#f1f1f1;
    font-family:"Open Sans",Helvetica,Arial,Sans-Serif;
}
h1 span{
    position: relative;
}

#barreRecherche{
    display: flex; /* important ici de faire un display flex sur notre id du formulaire pour avoir un rendu comme on le veut*/
    max-width: 790px;
    margin-left: 79px;
    margin-top: 60px;/* ce margin top est calculé par rapport à la position relative de notre h1, du moment on a une position rel au dessus bien entendu*/
    margin-right: auto;
}

#sk{ /*auparavant c'était barreRecherche_input*/
    width: 100%;
    height: 50px;
    padding: 0 70px 0 30px;
    border-radius: 27.5px;
    border: 1px solid #0b85e5;
}

#sk::placeholder{
        color:#b2b2b2;
        /* font-style:italic; */
}

#barreRecherche_submit{
    width: 150px;
    height: 50px;
    white-space:nowrap;/*permet de ne pas avoir un retour à la ligne entre 2 mots espacés par un blanc par exemple 'Agir Search'*/
    border-radius: 27.5px;
    border: 1px solid #0b85e5;
    background-color: #0b85e5;
    color: #f1f1f1;
    margin: 0 20px 40px -60px;
    padding:0 30px;
    font-size:15px;
}

#barreRecherche_submit:hover{
    border: 1px solid #0b85e5;
    background-color: #0b85e5;
    color: #f1f1f1;
    cursor: pointer;
}

/**** les sujets populaires****/

.margin-top{
    position: absolute;
    left:4.3rem;
    margin-top: 115px;
}

.tagList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: auto;
    padding: 0;
    width: 100%;
}
.tagList__item {
    text-align: center;
}
.tag{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:3px 3px 10px 3px;
    padding:5px 10px;
    text-decoration:none;
    background-color:#0f2741;
    border-radius:3px;
    color:white;
    font-weight:700;
    font-size:.9rem;
    cursor:pointer;
}
.tag:hover{
    cursor:pointer;
    background-color:#0b85e5;
    color:#fff;
    text-decoration:none;
    transform: scale(1.5);
    transition: 0.1s;
}

.tag--shiny{
    background-color:rgba(255,255,255,.2);
}
.tag--rounded{
    padding-right:25px;
    padding-left:25px;
    border-radius:15px;
}

/*** les médias de la 2ème colonne****/

.icons{
    position:absolute;
    top: 30%;
    right: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.link{
    width: 60px;
    height: 60px;
    margin: 10px 0;
    position:relative;
}
.link a{
    color:#f8f9fa;
    text-decoration: none;
    font-size: 1.5em;
}
.link a:hover{
    transform: scale(1.5);
    transition: 0.1s;
}

/*****Pour définir l'image de fond du header****/
.positionRelative {
    position: relative;
    overflow:hidden;
}
.posAbsolute{
    position: absolute;
    top:0px;
    left:0px;
    border:0px;
}

.imageHeader{
    display:block ;
    width: 100% !important;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 650px;
    max-height: 650px;
    filter: brightness(75%);
}

/*** code css pour un affichage smartphone****/
@media screen and (max-width:767px){
    
    .lines{
        margin-left: 25px;
    }
    
    .l1{
        width: 80px;
        height: 2px;
    }
    .l2{
        width: 50px;
        height: 2px;
    }
    h1{
        margin-left: 25px;
        margin-right: 25px;
        text-align: center;
        font-size: 15px;
    }
    #barreRecherche{
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    .barreRecherche_submitText{
        display: none;
    }
    #barreRecherche_submit{
        width: 3px;
        height: 50px;
        margin: 0 0 0 -60px;
    }
    .margin-top{
        margin-top: 60px;
    }
    .col-md-4{
        display: none;
    }
    .col-md-8{
        height: 100%;
        width: 100%;
    }
}

/******************************************PIED DU HEADER*******************************************************/
/* @media screen and (max-width: 767px){
    .piedHeader {
        display: none;
}
}

.piedHeader {
    width: 100%;
    position: absolute;
    border-bottom: 2px solid #fff;
    bottom: -15px;
    right: 0;
    height: 50px;
}

.piedHeader__background {
    fill: #fff;
}

.piedHeader__wave {
    fill: #ccc;
} */
.header_padding_bottom{
    height: 15px;
    width: 100%;
    background: linear-gradient(295deg, #002d7f 1%, #0069b3 96%);
}


header {
    position: relative; /*important de mettre le header en pos rel ici, même la div principale qui la compose est en pos rel, donc tranquille !*/
    padding-bottom: calc(5vw + 1.5rem) !important;
}

header::after{
    content: "";
    display: block;
    width: 100%;
    height: 5vw;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(images/promo/626324-vague-eau-logo-plage-bleu-gratuit-vectoriel.jpg);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% 100%;
    
}


/***************************************CORPS DU SITE (LES SECTIONS)*****************************************/
h2 {
    /* font-family: 'Dancing Script', cursive; */
    padding-top: 30px;
    padding-bottom: 30px;
    /* text-transform: uppercase; */
    text-align: center;
    font-family:"Open Sans",Helvetica,Arial,Sans-Serif;
    font-size: 2em;
    font-weight: 600;
    display:block;
    line-height:1.5;
    letter-spacing: .02em;
    
}

/*première section*/
#presentation{
    /* color:#666c71; */ /* color correspond ici aux couleurs des textes, et background-color à la couleur de fond écran de la section*/
    padding: 30px 0 0 0;
    position: relative;
}
.imageFondPresentation{
    width: 100%;
    /*ici on ne définit pas la hauteur, height=100%, parce que l'image va cacher une partie du tableau de présentation*/
}
.cadreGeneral{
    padding: 0px 20%;
    position: absolute;
    top:0px;
    left:0px;
    border:0px;
}

.cadrePrincipal{
    padding: 30px;
    background:rgba(177, 183, 192, 0.61);
}
.cadreSecondaire{
    margin:30px auto;
    padding:20px 0 0 0;
    width:700px;
    max-width:90%;
    background:rgb(225, 227, 230);
    border-radius: 7px;
    box-shadow: 0 0 19px 5px rgb(0 0 0 / 16%);
}
.cadreContenantTestament{
    max-width:700px;
    width: 100%;
    padding:20px 40px;
    margin:0px auto;
}
.testament{
    font-size: 20px;
    line-height:39px;
    text-align:center;
    color: #13113d !important;
}
.testament_person{
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    padding: 20px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.lazyloaded {
    opacity: 1;
    transition: opacity 400ms;
    transition-delay: 0ms;
}
.testament_photo {
    width: 80px;
    max-height: 200px;
    border-radius: 20px;
}

.testament_info {
    padding-left: 20px;
    text-align: left;
}
.testament_name,.testament_role {
    font-size: 17px;
}

@media screen and (max-width:767px){
    h2{
        padding-top: 15px;
        font-size: 18px;
        line-height: 20px;
    }
    #presentation{
        padding:10px 0 0 0;
        position: static;
    }
    .cadreGeneral {
        padding:20px;
        position: static;

    }
    .cadrePrincipal{
        padding: 10px;
    }
    .cadreSecondaire{
        margin:10px auto;
        padding:5px 0 0 0;
        max-width:300px;
    }
    .cadreContenantTestament{
        max-width: 300px;
        padding: 10px 20px;
    }
    .testament{
        font-size: 13px;
        line-height: 15px;
        font-family:"Open Sans",Helvetica,Arial,Sans-Serif;
    }
    .testament_photo {
        max-width: 60px;
        max-height: 120px;
        border-radius: 10px;
    }
    .testament_name,.testament_role {
        font-size: 15px;
    }
}
/******************** 2ème Section : ACTIVITES********************/
#activities{
    /* position: relative; */
    height: 650px;
    width: 100%;
    margin: 0 0 40px;
    /* padding: 0 20px; */
    display: grid;
    grid-template-columns:auto;
    grid-template-rows:auto;
    /* color:#666c71; j'enleve parce que la couleur des textes ne me plait pas*/
}
.bg, .bg2{
    width: 90%;
    height: 90%;
    position: absolute;
}
.bg{
    clip-path: polygon(72% 74%, 100% 27%, 100% 100%, 5% 100%);
    z-index: -1;
    background: rgb(225, 227, 230);
}
.bg2{
    z-index: -2;
    background: rgb(225, 227, 230);
    clip-path: polygon(64% 100%, 100% 27%, 62% 67%, 4% 100%);
}
.container_position{
    position: absolute;
}
.container{
    display: grid;
    grid-template-columns: 50% auto;
    height: auto;
    align-self: center;
    max-width: 1260px;

}
.imageFondActivities{
    width: 100%;
    height: 100%; /* pour avoir ici une image bien designée taille un peu grande en hauteur, l'espacement avec les autres sections est contrôlé ici par le padding et le margin de l'id #activities*/
}
.ulActivities{
    list-style-type: none;
    perspective: 1000px;
}
.ulActivities li{
    display: grid;
    grid-template-columns: 20% auto;
    border-radius:10px;
    padding: 14px;
    cursor: pointer;
    transform: rotateY(-35deg) rotateX(15deg);
    position: absolute;
    border-bottom: 4px solid rgba(0,0,0,.2);
    border-right: 4px solid rgba(0,0,0,.2);
    transition: 0.7s;
}
  
.ulActivities li:nth-child(1){
    color:#fff;
    background-color: #8063E1;
   background-image: linear-gradient(135deg, #BD7BE8, #8063E1);
    top: -112px;
    z-index: 2;
}
  
.ulActivities li:nth-child(2){
    background-color: #3F58E3;
    background-image: linear-gradient(135deg, #7F94FC, #3F58E3);
    z-index: 1;
    color:white;
}
  
.ulActivities li:nth-child(3){
    color:#fff;
    background-color: #352F64;
    background-image: linear-gradient(135deg, #415197, #352F64);
    top: 115px;
    z-index: 0;
}
  
.ulActivities li:hover{
    transform: translateY(30px)  rotateY(-35deg) rotateX(15deg) scale(1.2);
    z-index:3;  
}
  
.imgActivities{
    width:70px;
}
 
#left > p{
    color:grey;
    line-height: 1.5em;
}
.padding_left{
    padding-left: 50px;
}

@media screen and (max-width:767px) {
    #activities{
        padding:20px;
        position:static;
    }
    .container_position{
        position:static;
    }
    .imgActivities{
        max-width:40px;
    }
    .ulActivities li{
        padding: 5px;
        grid-template-columns: 15% 100px;
    }
    .pActivities{
        font-size: 13px;
        line-height: 15px;
        font-family:"Open Sans",Helvetica,Arial,Sans-Serif;
    }
    .padding_left{
        padding-left: 0;
    }
}
/************** LES PARTENAIRES********/
/* #partneurship {
    color:#666c71;
} idem à cause de la couleur des textes qui plait pas*/

.our-partners {
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    max-width: 1260px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    animation: resize 3000ms ease infinite both;
}

@media screen and (max-width:767px){
.our-partners{
    display:block;
    text-align:center;
    }
}

.our-partners .logos{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    -ms-flex-pack:distribute;
    justify-content:space-around;
}
.our-partners .partner-image{
    -ms-flex-preferred-size:14.28571%;
    flex-basis:14.28571%;
    align-items:center;
    align-self:center;
    margin-bottom:.6rem;

}
@media screen and (max-width:767px){
.our-partners .partner-image{
    -ms-flex-preferred-size:22%;
    flex-basis:22%;
    }
}
.our-partners .partner-image img{
    width:100%;
    max-width:100%;
    display:block;
    padding:2.8rem;
    opacity:.88;
    filter:grayscale(100%);
    transition:all .3s ease;
}
@media screen and (max-width:767px){
.our-partners .partner-image img{
    padding:.6rem;
    }
}
.our-partners .partner-image img:hover{filter:grayscale(0);opacity:1}
.our-partners img.grayish{filter:grayscale(100%) contrast(100%)}
.our-partners img.contrast{filter:grayscale(100%) contrast(190%)}

/*********************** SKILL-PERSON*********************************/
#skillsection{
    /* color:#666c71; */
    width: 100%;
}
.photoTitreDescription{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
    grid-gap: 40px;

}

.photoETtitre img {
    margin-top: 20px;
    margin-left: 50px;
    width: 230px;
    max-height: 270px;
    border-radius: 20px;
    box-shadow: 6px 6px 28px -1px rgb(0 0 0 / 75%);
    list-style-type: none; 
}

.imgmepresent {
    position: absolute;
    right: 7%;
    max-height: 300px;
}

.photoETtitre p {
    width: 235px;
    background-color: #e4be98;
    float: right;
    margin-top: 20px;
    margin-right: 100px;
    font-size: 1.2em;
    text-align: center;
    padding-top: 15px;
    box-shadow: 4px 4px 0 1px rgb(141 120 62);
}
@media screen and (min-width:280px) and (max-width:319px){
    .photoTitreDescription{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr /* 1fr */;
        grid-gap: 20px;
    }
    .titreDescription{
        display: none;
    }
    .photoETtitre img{
        margin-top: 20px;
        margin-left: 50px;
        max-height: 100px;
        max-width: 100px;
        border-radius: 10px;
    }
    .photoETtitre p {
        margin-top: 20px;
        margin-right: -20px;
        font-size: 11px;
        width: 135px;
        height: 50px;
        padding: 0;
    }
    .imageFondActivities, .imageFondPresentation{
        display: none;
    }
}
@media screen and (min-width:320px) and (max-width:359px){
    .photoTitreDescription{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr /* 1fr */;
        grid-gap: 20px;
    }
    .titreDescription{
        display: none;
    }
    .photoETtitre img{
        margin-top: 20px;
        margin-left: 50px;
        max-height: 100px;
        max-width: 100px;
        border-radius: 10px;
    }
    .photoETtitre p {
        margin-top: 35px;
        margin-right: 15px;
        font-size: 11px;
        width: 135px;
        height: 50px;
        padding: 0;
    }
    .imageFondActivities, .imageFondPresentation{
        display: none;
    }
}
@media screen and (min-width:360px) and (max-width:374px) {
    .photoTitreDescription{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr /* 1fr */;
        grid-gap: 20px;
    }
    .titreDescription{
        display: none;
    }
    .photoETtitre img{
        margin-top: 20px;
        margin-left: 50px;
        max-height: 100px;
        max-width: 100px;
        border-radius: 10px;
    }
    .photoETtitre p {
        margin-top: 40px;
        margin-right: 50px;
        font-size: 11px;
        width: 135px;
        height: 50px;
        padding: 0;
    }
    .imageFondActivities, .imageFondPresentation{
        display: none;
    }
}
@media screen and (min-width:375px) and (max-width:410px){
    .photoTitreDescription{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr /* 1fr */;
        grid-gap: 20px;
    }
    .titreDescription{
        display: none;
    }
    .photoETtitre img{
        margin-top: 20px;
        margin-left: 50px;
        max-height: 100px;
        max-width: 100px;
        border-radius: 10px;
    }
    .photoETtitre p {
        margin-top: 40px;
        margin-right: 70px;
        font-size: 11px;
        width: 135px;
        height: 50px;
        padding: 0;
    }
    .imageFondActivities, .imageFondPresentation{
        display: none;
    }
}

@media screen and (min-width:411px) and (max-width:767px){
    .photoTitreDescription{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr /* 1fr */;
        grid-gap: 20px;
    }
    .titreDescription{
        display: none;
    }
    .photoETtitre img{
        margin-top: 20px;
        margin-left: 50px;
        max-height: 100px;
        max-width: 100px;
        border-radius: 10px;
    }
    .photoETtitre p {
        margin-top: 40px;
        margin-right: 100px;
        font-size: 11px;
        width: 135px;
        height: 50px;
        padding: 0;
    }
    .imageFondActivities, .imageFondPresentation{
        display: none;
    }
}

@media screen and (min-width:768px) and (max-width:800px){
    .photoTitreDescription{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        grid-gap: 20px;
    }
    .photoETtitre img {
        margin-top: 20px;
        margin-left: 30px;
        max-height: 120px;
        max-width: 110px;
        border-radius: 10px;
    }
    .photoETtitre p {
        margin-top: 22px;
        margin-right: 80px;
        font-size: 11px;
        width: 135px;
        height: 50px;
        padding: 0;
    }
    .imgmepresent {
        max-height: 180px;
        right: 30px;
    }

    /* quelque soit @media, si nous y avons ces 2 elements, c'est que c'est très important et ça concerne les 2 images de fond de notre corps de texte*/
    .imageFondActivities, .imageFondPresentation{
        width: 768px;
        height: 1024px;
    }
    .cadreGeneral{
        padding:20px;
    }
}


@media screen and (min-width:1024px) and (max-width:1024px){
    .photoETtitre img {
        margin-top: 30px;
        margin-left: 50px;
        width: 200px;
        max-height: 200px;
        border-radius: 20px;
        box-shadow: 6px 6px 28px -1px rgb(0 0 0 / 75%);
        list-style-type: none;
    }

    .photoETtitre p {
        width: 235px;
        background-color: #e4be98;
        float: right;
        margin-top: 40px;
        margin-right: 25px;
        font-size: 1.2em;
        text-align: center;
        padding-top: 15px;
        box-shadow: 4px 4px 0 1px rgb(141 120 62);
    }
    .imgmepresent {
        position: absolute;
        right: 3%;
        max-height: 250px;
    }
    .cadreGeneral{
        padding:20px;
    }
}


/* ******************************* COMPTENCES**************************/
#SkillBox {
    font-size: 20px;
    font-family: 'Indie Flower', cursive;
    width: 95%;
    margin: 40px auto;
    color:#666c71;
    border: 1px solid #cdcdcd;
    padding: 10px;
    border-radius:20px;
}
.SkillBar {
    width: 90%;
    height: 50px;
    position: relative;
    background: rgba(17, 17, 17, .3);
    margin: 20px auto;
}
#Skill-HTML {
    width: 100%;
    animation: Animate-HTML 4s;
    -webkit-animation: Animate-HTML 4s;
    -moz-animation: Animate-HTML 4s;
    -o-animation: Animate-HTML 4s;
    height: 50px;
    position: absolute;
    background-color: #ea8564;
}
@keyframes Animate-HTML {
    from {
    width: 10px;
}
to {
    width: 100%}
}@-webkit-keyframes Animate-HTML {
    from {
    width: 10px;
}
to {
    width: 100%}
}@-moz-keyframes Animate-HTML {
    from {
    width: 10px;
}
to {
    width: 100%}
}@-o-keyframes Animate-HTML {
    from {
    width: 10px;
}
to {
    width: 100%}
}#Skill-CSS {
    animation: Animate-CSS 5s;
    -webkit-animation: Animate-CSS 5s;
    -moz-animation: Animate-CSS 5s;
    -o-animation: Animate-CSS 5s;
    width: 80%;
    height: 50px;
    position: absolute;
    background-color: #55a69f;
}
@keyframes Animate-CSS {
    from {
    width: 10px;
}
to {
    width: 80%}
}@-webkit-keyframes Animate-CSS {
    from {
    width: 10px;
}
to {
    width: 80%}
}@-moz-keyframes Animate-CSS {
    from {
    width: 10px;
}
to {
    width: 80%}
}@-o-keyframes Animate-CSS {
    from {
    width: 10px;
}
to {
    width: 80%}
}#Skill-jQuery {
    animation: Animate-jQuery 5s;
    -webkit-animation: Animate-jQuery 5s;
    -moz-animation: Animate-jQuery 5s;
    -o-animation: Animate-jQuery 5s;
    width: 65%;
    height: 50px;
    position: absolute;
    background-color: #99856d;
}
@keyframes Animate-jQuery {
    from {
    width: 10px;
}
to {
    width: 65%}
}@-webkit-keyframes Animate-jQuery {
    from {
    width: 10px;
}
to {
    width: 65%}
}@-moz-keyframes Animate-jQuery {
    from {
    width: 10px;
}
to {
    width: 65%}
}@-o-keyframes Animate-jQuery {
    from {
    width: 10px;
}
to {
    width: 65%}
}#Skill-JS {
    animation: Animate-JS 4s;
    -webkit-animation: Animate-JS 4s;
    -moz-animation: Animate-JS 4s;
    -o-animation: Animate-JS 4s;
    width: 85%;
    height: 50px;
    position: absolute;
    background-color: #c44e45;
}
@keyframes Animate-JS {
    from {
    width: 10px;
}
to {
    width: 85%}
}@-webkit-keyframes Animate-JS {
    from {
    width: 10px;
}
to {
    width: 85%}
}@-moz-keyframes Animate-JS {
    from {
    width: 10px;
}
to {
    width: 85%}
}@-o-keyframes Animate-JS {
    from {
    width: 10px;
}
to {
    width: 85%}
}#Skill-XML {
    animation: Animate-XML 4s;
    -webkit-animation: Animate-XML 4s;
    -moz-animation: Animate-XML 4s;
    -o-animation: Animate-XML 4s;
    width: 40%;
    height: 50px;
    position: absolute;
    background-color: #5aa669;
}
@keyframes Animate-XML {
    from {
    width: 10px;
}
to {
    width: 40%}
}@-webkit-keyframes Animate-XML {
    from {
    width: 10px;
}
to {
    width: 40%}
}@-moz-keyframes Animate-XML {
    from {
    width: 10px;
}
to {
    width: 40%}
}@-o-keyframes Animate-XML {
    from {
    width: 10px;
}
to {
    width: 40%}
}#Skill-JAVA {
    animation: Animate-JAVA 4s;
    -webkit-animation: Animate-JAVA 4s;
    -moz-animation: Animate-JAVA 4s;
    -o-animation: Animate-JAVA 4s;
    width: 75%;
    height: 50px;
    position: absolute;
    background-color: #8e930c;
}
@keyframes Animate-JAVA {
    from {
    width: 10px;
}
to {
    width: 75%}
}@-webkit-keyframes Animate-JAVA {
    from {
    width: 10px;
}
to {
    width: 75%}
}@-moz-keyframes Animate-JAVA {
    from {
    width: 10px;
}
to {
    width: 75%}
}@-o-keyframes Animate-JAVA {
    from {
    width: 10px;
}
to {
    width: 75%}
}#Skill-PHP {
    animation: Animate-PHP 4s;
    -webkit-animation: Animate-PHP 4s;
    -moz-animation: Animate-PHP 4s;
    -o-animation: Animate-PHP 4s;
    width: 55%;
    height: 50px;
    position: absolute;
    background-color: #5A69A6;
}
@keyframes Animate-PHP {
    from {
    width: 10px;
}
to {
    width: 55%}
}@-webkit-keyframes Animate-PHP {
    from {
    width: 10px;
}
to {
    width: 55%}
}@-moz-keyframes Animate-PHP {
    from {
    width: 10px;
}
to {
    width: 55%}
}@-o-keyframes Animate-PHP {
    from {
    width: 10px;
}
to {
    width: 55%}
}#Skill-SQL {
    animation: Animate-SQL 4s;
    -webkit-animation: Animate-SQL 4s;
    -moz-animation: Animate-SQL 4s;
    -o-animation: Animate-SQL 4s;
    width: 90%;
    height: 50px;
    position: absolute;
    background-color: #23b1db;
}
@keyframes Animate-SQL {
    from {
    width: 10px;
}
to {
    width: 90%}
}@-webkit-keyframes Animate-SQL {
    from {
    width: 10px;
}
to {
    width: 90%}
}@-moz-keyframes Animate-SQL {
    from {
    width: 10px;
}
to {
    width: 90%}
}@-o-keyframes Animate-SQL {
    from {
    width: 10px;
}
to {
    width: 90%}
}#Skill-VBNET {
    animation: Animate-VBNET 4s;
    -webkit-animation: Animate-VBNET 4s;
    -moz-animation: Animate-VBNET 4s;
    -o-animation: Animate-VBNET 4s;
    width: 35%;
    height: 50px;
    position: absolute;
    background-color: #f8a51e;
}
@keyframes Animate-VBNET {
    from {
    width: 10px;
}
to {
    width: 35%}
}@-webkit-keyframes Animate-VBNET {
    from {
    width: 10px;
}
to {
    width: 35%}
}@-moz-keyframes Animate-VBNET {
    from {
    width: 10px;
}
to {
    width: 35%}
}@-o-keyframes Animate-VBNET {
    from {
    width: 10px;
}
to {
    width: 35%}
}.Skill-Area {
    z-index: 1;
    float: left;
    position: absolute;
    margin-top: 15px;
    margin-left: 15px;
    text-shadow: none;
    color: #fff;
    font-family: Lato-Regular, sans-serif;
    font-size: 18px;
}
.PercentText {
    z-index: 3;
    position: relative;
    padding-right: 15px;
    margin-top: 15px;
    float: right;
    text-shadow: none;
    color: #fff;
    font-family: Lato-Regular, sans-serif;
    font-size: 18px;
}
@media screen and (max-width:767px){
    .Skill-Area {
        font-size: 12px;
    }
    .PercentText {
        font-size: 12px;
    }
}
/***************** FOOTER*****************/
footer {
    /* padding: 50px 0 0; on n'a vraiment pas besoin de ça, au contraire le footer est trop bas avec cette marge intérieure */
    background: rgb(225, 227, 230);
    color: rgb(22, 20, 20);
	width: 100%;
    display: block;
    overflow: hidden;
}

.containerfooter {
    /* margin-right: auto; */
    /* margin-left: auto; */
    padding: 15px 30px;
}

.rowfooter {
    /* display: flex;
    flex-wrap: wrap; */
    /* margin-right: -15px;
    margin-left: -15px; */
    margin-top:30px;
}
.text-center {
    text-align: center !important;
}

.col-xs-12 .col-sm-4{
    /* min-height: 1px; */
    /* padding-right: 15px; */
    padding-left: 15px;
}

.col-xs-12 {
  width: 100%;
  float: center;
}
/************* SHARE/FOLLOW*********************/
.container2 {
  display: flex;
  justify-content: center;
  /* align-items: center; pour ne pas que le bouton follow au footer ne soit pas centré*/
  height: 20vh;
  filter: url(#goo);
}

.buttonshare {
  z-index: 99;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  background: linear-gradient(45deg, #B388EB, #8093F1);
  border-radius: 20px;
  color: rgb(22, 20, 20);
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 200;
}

.social {
  opacity: 0;
  position: relative;
  margin: 8px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: inline-block;
  color: #FFF;
  font-size: 20px;
  text-align: center;
}

.social i {
  margin-top: 10px;
}
.social a {
  color: #FFF;
}

.twitter {
  background: #00aced;
 }
 
 .facebook {
  background: #3b5998;
 }
 
 .google {
  background: #dd4b39;
 }
 
 .youtube {
  background: #bb0000;
 }
 
.clicked {
  opacity: 1;
  transition: 1.2s all ease;
  transform: translateY(56px);
}

/************* NEWSLETTER********/
.optin-container {
    box-shadow: 0 14px 28px rgb(0 0 0 / 25%), 0 10px 10px rgb(0 0 0 / 22%);
    width: 15rem;
    margin-right: auto;
  }
  
.cta {
    background: #1262fb;
    color: rgb(22, 20, 20);
    cursor: pointer;
    padding-top: 1rem;
    padding-bottom: 0;
    text-decoration: none;
    overflow: hidden;
  }

.stylefooer{
    font-size: 20px;
}

.formfooter {
    background: #1262fb;
    padding-bottom: 1rem;
  }

div.spoiler {
    background: #1262fb;
    padding: 20px 10px 10px 10px;
    width: 100%;
    /* border: 1px solid black; */
    position: relative;
}

div.spoiler input.boutonSpoiler {
    position: absolute;
    top: -10px;
    left: 50px;
    background: #1262fb;
}

div.spoiler .hidden {
    display: none;
}
 
.input_form_contact1 {
    margin: 1rem 0.5rem;
    border: none;
    outline: #1262fb;
    font-size: 1rem;
  }

.input_form_contact1:focus {
    outline:0.25rem solid #1b2942
  }
  
  
.input_form_contact2 {
    margin: 0 0 0 1rem;
    padding: 0 3rem;
    font-size: 1rem;
    transition: all 0.25s ease-in-out;
    background: linear-gradient(#1262fb, #1b2942);
    color: rgb(22, 20, 20);
    border: none;
    cursor: pointer;
  }
.input_form_contact2:hover {
    background: linear-gradient(#1262fb, #1b2942);
}

.textera_form_contact {
    border:none;
    width: 55%;
    padding: 15px 10px;
    margin:1px 0;
    font-size: 1.2em;
    font-family: 'Advent Pro', sans-serif;
    border-radius: 8px;
}
 
@media screen and (max-width:767px){
.optin-container {
    width: 12rem;
    margin-left: 55px;
    margin-bottom: 30px;
    }
.stylefooer{
    font-size: 15px;
    margin-bottom: 10px;
    }
.tel{
    font-size: 15px;
    }
.margin_bottom_tel{
    margin-bottom: 30px;
    }
.input_form_contact2 {
    margin-top: 1rem !important;
    }
.input_form_contact1 {
    width: 10rem;
    }
div.spoiler input.boutonSpoiler{
    position: absolute;
    top: -10px;
    left: 25px;
}
}


#deuxièmeTrait {
    height: 1px;
    width: 75%;
    background-color: rgb(22, 20, 20);
    margin: 10px auto;
}
#copyrightEtIcons {
display: flex;
margin-bottom: 20px;
padding: 0 10%;
}
#copyright {
    width: 40%;
    text-align: left;
    color: rgb(22, 20, 20);
}
#icons {
    width: 40%;
    text-align: right;
}
#icons a {
    display: inline-block;
    margin: 0 15px;
    font-size: 1.3em;
    color: rgb(22, 20, 20);
}
#icons a:hover {
    transform: scale(1.5);
    transition: 0.1s;
}

#mlegal{
    text-align: center;
    width: 20%;
}


  
