@-webkit-keyframes animationlogo {
    0% {
        transform: scaleX(0);
    }
    25% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
    }
    75% {
        transform: scaleX(-1);
    }
    100% {
        transform: scaleX(0);
    }
}

@keyframes animationlogo {
    0% {
        transform: scaleX(0);
    }
    25% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
    }
    75% {
        transform: scaleX(-1);
    }
    100% {
        transform: scaleX(0);
    }

}

/*------------------------------------*\
    Global
\*------------------------------------*/
* {

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin: 0 auto;
}

:root {
    --body-bg-color: black;
    --big-title-bg-color: white;
    --content-bg-color: #0077B1;
    --lighter: #33B5E9;
    --warning-color: red;
}

body {
    /* display: grid;
     grid-template-rows: auto 1fr auto; */ /* (1fr) la ligne centrale prend la place restante */
    background-color: var(--body-bg-color);
    color: var(--big-title-bg-color);
}

header .logoscaphydata {
    margin: auto;
    padding: 25px 0px;
    -webkit-animation: linear infinite 4.5s alternate animationlogo;
    animation: linear infinite 4.5s alternate animationlogo;
    perspective: 200px;
    perspective-origin: 50% 50%;
    max-width: 75px;
    height: auto;
    z-index: 2;
}

h1 {
    display: none;
}

h1.titrebienvenue {
    position: relative;
    z-index: 4;
    top: -200px;
    left: 0;
    right: 0;
    color: var(--big-title-bg-color);
    display: block;
    max-width: 90%;
}

/*.menu {
  float: none;
  text-align: center;
  margin: 10px auto;
}*/
.clearfloat {
    clear: both;
}

.entetecomments {
    text-align: center;
    margin: 0px auto;
    font-size: 0.7em;
    float: left;
    /*padding-left: 3%;*/
    /*padding-right: auto;*/
}

.clearfloat {
    clear: both;
}

header img.header-img-fond {
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0;
    right: 0;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}

.header__icon {
    position: relative;
    z-index: 2;
    display: block;
    float: right;
    width: 50px;
    height: 66px;
    cursor: pointer;
    background-color: transparent;
    color: #FFF;
    top: 16px;
    left: 15px;
}

div.clearfloat {
    clear: both;
}

.header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 1rem;
    height: 0;
    top: 16px;
    left: 15px;
    -moz-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
    -webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
    box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
}

/******************************************  menu ****************************************/
.menu {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #000;
    width: 250px;
    -moz-transform: translateX(250px);
    -ms-transform: translateX(250px);
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
}

.menu a {
    display: block;
    text-align: center;
    margin: 10px auto;
    padding: 15px;
    border: 1px solid #FFF;
    background-color: #3007e5;
    color: #FFF;
    font-size: 1.2em;
    font-weight: bolder;
    text-decoration: none;
}

.menu a:hover {
    display: block;
    text-align: center;
    margin: 10px auto;
    padding: 15px;
    border: 1px solid #3007e5;
    background-color: hsl(0, 0%, 100%);
    color: #3007e5;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: normal;
}

.site-content {
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    bottom: 0;
    padding-top: 0;
    overflow-y: scroll;
    padding-top: 40px;
    margin-top: 40px;
    margin-bottom: 95%;
    padding-bottom: 95%;
}

.site-pusher, .site-container {
    min-height: 100%;
    max-height: 100%;
    background-color: #000;
    color: white;
}

.site-container {
    overflow: hidden;
}

.site-pusher {
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.with--sidebar .site-pusher {
    -moz-transform: translateX(-250px);
    -ms-transform: translateX(-250px);
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
}

.with--sidebar .site-cache {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

nav h3 {
    color: #000;
    font-size: 1.5em;
    margin: 30px;
    min-width: 100%;
    height: auto;
    text-align: center;
    margin: 45px auto;
}

/************************************************** fin menu *******************************/

/************************************************* main ************************************/
main {
    background-color: transparent;
    max-height: 100%;
}

main h2 {
    background-color: #000;
    position: relative;
    z-index: 2;
    max-width: 65%;
    padding: 15px;
    text-align: center;
    margin: 15px auto;
    margin-top: 45px;
}

div.article-photo-profil-container img.img-photo-profil {
    max-width: 60px;
    height: auto;
    border-radius: 30px;
    z-index: 2;
}

.section-who-am-i p, .section-who-am-i p, .article-yours-needs p {
    background-color: #000;
    color: #FFF;
    border: 8px solid green;
    max-width: 90%;
    min-width: 90%;
}

section .exemplesitedroite {
    border: 8px solid red;
    max-width: 90%;
    min-width: 90%;
    text-align: center;
    margin: 90px auto;
    background-color: #000;
    position: relative;
    z-index: 4;
}

section.duosites .exemplesitedroite h4 {
    color: red;
    text-align: center;
    margin: 0 auto;
    font-size: 1.8em;
    float: none;
    background-color: #000;
    z-index: 4;
}

section .exemplesitedroite img {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    float: none;
    z-index: 4;
}

section .exemplesitedroite p {
    max-width: 90%;
    min-width: 90%;
    float: none;
    background-color: #000;
    color: limegreen;
    text-align: center;
    margin: 30px auto;
    z-index: 4;
}

section .exemplesitedroite a.visitersiteweb {
    padding: 15px 16%;
    float: none;
    border: 8px solid #3007e5;
    background-color: #000;
    color: red;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    margin: 30px auto;
    z-index: 4;
}

section .exemplesitedroite a.visitersiteweb:hover {
    padding: 15px 16%;
    float: none;
    border: 8px solid red;
    background-color: #000;
    color: #3007e5;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    margin: 30px auto;
    z-index: 4;
}

section.duosites .exemplesitedroite h4#extratitre {
    color: red;
    text-align: center;
    margin: 0 auto;
    font-size: 1.8em;
    float: none;
    background-color: #000;
    z-index: 4;
}

.clearfloat {
    clear: both;
}

section .exemplesitegauche {
    border: 8px solid #3007e5;
    /*padding: 30px 45px 30px 45px;*/
    max-width: 90%;
    min-width: 90%;
    text-align: center;
    margin: 90px auto;
    background-color: #000;
    position: relative;
    z-index: 4;
}

section.duosites .exemplesitegauche h4 {
    color: #3007e5;
    text-align: center;
    margin: 30px auto;
    font-size: 1.8em;
    float: none;
    background-color: #000;
    position: relative;
    z-index: 4;
}

section .exemplesitegauche img {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    float: none;
    z-index: 4;
}

section .exemplesitegauche p {
    max-width: 90%;
    min-width: 90%;
    float: none;
    color: limegreen;
    text-align: center;
    margin: 30px auto;
    background-color: #000;
    z-index: 4;
}

section .exemplesitegauche a.visitersiteweb {
    padding: 15px 16%;
    float: none;
    border: 8px solid #3007e5;
    background-color: #000;
    color: red;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    margin: 30px auto;
    z-index: 4;
}

section .exemplesitegauche a.visitersiteweb:hover {
    padding: 15px 16%;
    float: none;
    border: 8px solid red;
    background-color: #000;
    color: #3007e5;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    margin: 30px auto;
    z-index: 4;
}

.clearfloat {
    clear: both;
}

section .section-yours-needs-content {
    background-color: transparent;
}

article form {
    text-align: center;
    margin: 15px auto;
    max-width: 90%;
    min-width: 90%;
    position: relative;
    background-color: #000;
    z-index: 4;
}

.article-form-contact {
    width: 85%;
    border: var(--lighter) solid 8px;
    text-align: center;
    margin: 90px auto;
    z-index: 4;
}

article textarea {
    min-width: 85%;
    max-width: 85%;
    margin: 15px auto;
    min-height: 5em;
    font-size: 1.5em;
    z-index: 4;
}

.input, .select-object {
    width: 85%;
    max-width: 85%;
    margin: 15px auto;
    height: 2em;
    font-size: 1.5em;
    z-index: 4;
}

.button-submit {
    background-color: var(--lighter);
    max-width: 85%;
    min-width: 85%;
    margin: 15px auto;
    height: 4em;
    font-size: 1.5em;
    z-index: 4;
}
.licence {
    text-align: center;
    margin: 0 auto;
    width: 80%;
    color: #FFF;
    background-color: #000;
    z-index: 4;
}

/*************************************************************************************************************/
/************************************************** Footer ***************************************************/
/*************************************************************************************************************/

footer {
    background-color: transparent;
}

footer .retouraccueil {
    text-align: center;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
}

.mentionslegales p {
    color: #FFF;
    font-weight: bolder;
    text-shadow: 1px 1px #000;
    text-align: center;
    margin: auto;
    margin-top: 90%;
}

.mentionslegales .icibleu {
    text-decoration: underline;
    color: #3007e5;
    font-size: 1.2em;
}

.retouraccueil a {
    padding: 15px;
    color: #FFF;
    font-size: 1em;
    background-color: #000;
    text-decoration: none;
    border: 3px solid #0077B1;
}

.retouraccueil a:hover {
    padding: 15px;
    color: #000;
    font-size: 1em;
    background-color: #0077B1;
}

/*---------------------------------------------------------------*\
    $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE$RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE -------------------------------------*\
    $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE-------------------------------------*\
    $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE-------------------------------------*\
    $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE $RESPONSIVE-------------------------------*\
\*----------------------------------------------------------------*/
@media screen and (min-width: 1199px) {
    /******** HEADER *********************/
    h1 {
        display: none;
    }

    h1.titrebienvenue {
        position: relative;
        z-index: 4;
        top: 0;
        left: 0;
        right: 0;
        color: var(--big-title-bg-color);
        display: block;
        max-width: 90%;
        font-size: 2em;
    }

    h2 {
        z-index: 4;
        top: 0;
        left: 0;
        right: 0;
        margin-top: 75px;
        color: var(--content-bg-color);
        max-width: 99%;
        min-width: 99%;
    }

    header img.header-img-fond {
        position: absolute;
        z-index: 0;
        top: 0px;
        left: 0;
        right: 0;
        min-width: 100%;
        height: auto;
    }

    header .logoscaphydata {
        margin: auto;
        padding: 200px 0px;
        -webkit-animation: linear infinite 4.5s alternate animationlogo;
        animation: linear infinite 4.5s alternate animationlogo;
        perspective: 200px;
        perspective-origin: 50% 50%;
        max-width: 150px;
        height: auto;
        position: relative;
        z-index: 2;
    }

    .header-quote {
        position: relative;
        z-index: 1;
        top: 0px;
        left: 0;
        right: 0;
        color: var(--big-title-bg-color);
        color: var(--big-title-bg-color);
    }

    .header-quote-strong {
        color: var(--lighter);
    }

    /**********************Fin header *******/
    /*------------------------------------*\
        $BASE
    \*------------------------------------*/
    html, body {
        font-family: Arial, times, sans-serif;
        font-size: 1em;
        /*line-height: 1.4;*/
        height: 95%;
        margin: 0;
        padding: 0;
        background-color: #000;
    }

    /*main .page {
       overflow-y: scroll;
       -webkit-overflow-scrolling: touch;
    }*/
    a {
        text-decoration: none;
        color: inherit;
    }

    .site-pusher, .site-container {
        height: 100%;
        background-color: #FFF;
        color: #000;
    }

    .container {
        margin: 0 20px;
        overflow: hidden;
        zoom: 1;
    }

    .site-content {
        padding-top: 150px;
        margin-top: 150px;
    }

    /***************************MENU  *****************/
    .site-pusher, .site-container {
        height: 100%;
        background-color: #000;
        color: white;
    }

    .site-container {
        overflow: hidden;
    }

    .site-pusher {
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    .site-content {
        position: absolute;
        top: 100px;
        right: 0;
        left: 0;
        bottom: 0;
        padding-top: 0;
        overflow-y: scroll;
        padding-top: 40px;
        margin-top: 40px;
        margin-bottom: 85%;
        padding-bottom: 85%;
    }

    header img.header-img-fond {
        position: absolute;
        z-index: 0;
        top: 0px;
        left: 0;
        right: 0;
        min-width: 100%;
        height: auto;
    }

    .header__icon {
        position: relative;
        z-index: 4;
        display: block;
        float: right;
        width: 50px;
        height: 66px;
        cursor: pointer;
        background-color: transparent;
        color: #FFF;
    }

    .header__icon:after {
        content: '';
        position: absolute;
        display: block;
        width: 1rem;
        height: 0;
        top: 16px;
        left: 15px;
        -moz-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
        -webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
        box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white;
    }

    .menu {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: #000;
        width: 250px;
        -moz-transform: translateX(250px);
        -ms-transform: translateX(250px);
        -webkit-transform: translateX(250px);
        transform: translateX(250px);
    }

    .menu a {
        display: block;
        text-align: center;
        margin: auto;
        padding: 15px;
        border: 2px solid #3007e5;
        background-color: #3007e5;
        color: #FFF;

        font-size: 1.2em;
    }

    .menu a:hover {
        display: block;
        text-align: center;
        margin: auto;
        padding: 15px;
        border: 2px solid #3007e5;
        background-color: #FFF;
        color: #3007e5;
        font-size: 1.2em;
    }

    .with--sidebar .site-pusher {
        -moz-transform: translateX(-250px);
        -ms-transform: translateX(-250px);
        -webkit-transform: translateX(-250px);
        transform: translateX(-250px);
    }

    .with--sidebar .site-cache {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

    nav h3 {
        color: #000;
        font-size: 1.5em;
        margin: 30px;
        min-width: 100%;
        height: auto;
        text-align: center;
        margin: 45px auto;
    }

    /***************************   FIN MENU*****************************/
    /*------------------------------------*\
        $HEADER
    \*------------------------------------*/
    .header {
        top: 0;
        left: 0;
        right: 0;
        /*line-height: 66px;*/
        color: #FFF;
    }

    header .logoscaphydata {
        -webkit-animation: linear 4s infinite animationlogo;
        animation: linear 4s infinite animationlogo;
        max-width: 150px;
        height: auto;
    }

    .header h1 {
        display: none;
    }

    .header__logo {
        font-weight: bold;
        padding: 0px 25px;
        float: left;
        background-color: #000;
        height: auto;
        min-width: 100%;
    }

    .header img {
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: transparent;
    }

    .entetecomments {
        text-align: center;
        margin: 15px auto;
        font-size: 1.4em;
        float: none;
    }

    /************************** Main *********************/
    main {
        text-align: center;
        margin: 150px auto;
        max-width: 90%;
        max-height: 90%;
        background-color: transparent;
    }

    .article-photo-profil-container {
        background-color: var(--content-bg-color);
        position: relative;
        margin: auto;
        border-radius: 100%;
        z-index: 2;
        width: 100px;
        top: 75px;
        height: 100px;

    }

    .img-photo-profil {
        z-index: 4;
        max-width: 60px;
        height: auto;
        border-radius: 30px;
        margin-top: 20px;
        margin-bottom: 45px;
    }

    form.article-form-contact {
        border: 8px solid #0077B1;
        margin-top: 90px;
    }

    article form {
        text-align: center;
        margin: 15px auto;
        max-width: 100%;
        min-width: 100%;
        position: relative;
        background-color: #000;
        z-index: 4;
    }

    article p {
        max-width: 99%;
        min-width: 99%;
        border: 8px solid green;
        padding: 15px;
        margin-top: 15px;
        font-size: 1.5em;
        background-color: #000;
        color: #FFF;
        position: relative;
        z-index: 4;
    }

    article.section-who-am-i p, article.article-yours-needs p {
        max-width: 99%;
        min-width: 99%;
        border: 8px solid green;
        padding: 15px;
        margin-top: 15px;
        font-size: 1.5em;
        background-color: #000;
        position: relative;
        z-index: 4;
    }

    article p.numtel {
        font-size: 2em;
        z-index: 4;
        max-width: 100%;
        min-width: 100%;
    }

    article textarea {
        min-width: 85%;
        min-height: 90px;
        z-index: 4;
    }

    .input, .select-object {
        width: 85%;
        max-width: 85%;
        margin: 15px auto;
        min-height: 30px;
        font-size: 1.5em;
        z-index: 4;
    }

    .button-submit {
        background-color: var(--lighter);
        width: 70%;
        margin: 15px auto;
        min-height: 30px;
        font-size: 1.5em;
        z-index: 4;
    }

    section .exemplesitedroite {
        background-color: #000;
        border: 8px solid red;
        /*padding: 30px 45px 30px 45px;*/
        min-width: 100%;
        max-width: 100%;
    }

    section.duosites .exemplesitedroite h4 {
        color: red;
        text-align: left;
        font-size: 2em;
        float: left;
        padding-left: 16%;
        padding-top: 14px;
        background-color: #000;
    }

    section .exemplesitedroite img {
        max-width: 49%;
        min-width: 49%;
        height: auto;
        float: right;
        background-color: #000;
    }

    section .exemplesitedroite p {
        text-align: left;
        max-width: 49%;
        min-width: 49%;
        height: auto;
        float: left;
        padding-left: 30px;
        background-color: #000;
        color: limegreen;
        text-align: center;
        margin: 15px auto;
    }

    section .exemplesitedroite a.visitersiteweb {
        padding: 15px 130px;
        border: 8px solid red;
        float: left;
        background-color: red;
        color: #FFF;
        text-align: center;
        margin-left: 14%;
    }

    section .exemplesitedroite a.visitersiteweb:hover {
        padding: 15px 130px;
        border: 8px solid #3007e5;
        float: left;
        background-color: #000;
        color: red;
        text-align: center;
        margin-left: 14%;
    }

    section.duosites .exemplesitedroite h4#extratitre {
        color: red;
        text-align: left;
        font-size: 2em;
        float: right;
        padding-left: 14%;
        background-color: #000;
    }

    /* */
    .clearfloat {
        clear: both;
    }

    section .exemplesitegauche {
        background-color: #000;
        border: 8px solid #3007e5;
        margin: 90px auto;
        min-width: 100%;
        max-width: 100%;

    }

    section.duosites .exemplesitegauche h4 {
        color: #3007e5;
        text-align: right;
        font-size: 2em;
        float: right;
        margin-right: 16%;
        padding-top: 14px;
        background-color: #000;
    }

    section .exemplesitegauche img {
        max-width: 49%;
        min-width: 49%;
        height: auto;
        float: left;
        background-color: #000;
    }

    section .exemplesitegauche p {
        max-width: 49%;
        min-width: 49%;
        float: right;
        padding-right: 30px;
        background-color: #000;
        color: limegreen;
        text-align: center;
        margin: 15px auto;
    }

    section .exemplesitegauche a.visitersiteweb {
        padding: 15px 130px;
        float: right;
        background-color: #3007e5;
        color: #FFF;
        margin-right: 16%;
        margin-top: 15px;
    }

    section .exemplesitegauche a.visitersiteweb:hover {
        padding: 15px 130px;
        float: right;
        background-color: #000;
        color: #3007e5;
        margin-right: 16%;
        margin-top: 15px;
    }

    .clearfloat {
        clear: both;
    }

    /*********************************** fin main **************************/



    /*------------------------------------*\
      $MENU
    \*------------------------------------*/
    /*.menu {
      float: none;
      text-align: center;
      margin: 30px auto;
      background-color: #000;
      padding-top: 1%;
    }*/
    header img.header-img-fond {
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        height: auto;
    }
    /*------------------------------------*\
   Footer
 \*------------------------------------*/
    footer {
        background-color: transparent;
    }

    footer .retouraccueil {
        text-align: center;
        z-index: 4;
    }

    .mentionslegales p {
        color: limegreen;
        font-weight: bolder;
        margin-top: 800px;
        z-index: 4;
    }

    .mentionslegales .icibleu {
        text-decoration: underline;
        color: #3007e5;
        font-size: 1.2em;
    }

    .retouraccueil a {
        padding: 15px;
        color: #FFF;
        font-size: 1em;
        background-color: transparent;
        text-decoration: none;
        border: 3px solid #0077B1;
    }

    .retouraccueil a:hover {
        padding: 15px;
        color: #000;
        font-size: 1em;
        background-color: #0077B1;
    }

}
