@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Staatliches&family=Ubuntu&display=swap');


* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', sans-serif;
}

.contenaire1 {
    background: linear-gradient(-45deg, pink, purple, cyan);
    width: 100%;
    height: 100vh;
    background-size: 400% 400%;
    animation: animate 15s ease infinite;
    -webkit-animation: animate 13s ease infinite;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animae 10s linear infinite;
    bottom: -150px;
    -webkit-animation: animae 10s linear infinite;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animae {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    height: 87px;
    z-index: 999;
}

.header ul {
    display: flex;
    flex-direction: row;
    width: 800px;
    justify-content: space-between;
    margin-top: 30px;
    list-style-type: none;
}

.contenaire2 a {
    text-decoration: none;
    font-size: 1.5em;
    color: white;
    position: relative;
}

.contenaire2 a::after {
    content: "";
    background-color: white;
    height: 3px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.contenaire2 a:hover::after {
    width: 100%;
}

.contenaire2-scrolled {
    color: black;
}

.header-scrolled {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 5px gray;
    color: black;
}

.header-scrolled a {
    color: black;
}

.header-scrolled a:hover:after {
    background-color: blueviolet;
}


.contenaire1 h1 {
    text-align: center;
    color: white;
    font-size: 50px;
    margin-bottom: 30px;
    padding-top: 300px;
    transition: all 2s ease;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
}

.contenaire1 p {
    text-align: center;
    color: white;
    font-size: 1.5em;
    width: 625px;
    margin: auto;
    margin-bottom: 400px;
}

.contenaire1 i {
    font-size: 120px;

    color: rgba(255, 255, 255, 0);
    width: 100px;
}

@keyframes animate {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.profil h2 {
    margin-top: 35px;
    text-align: center;
    font-size: 52px;
    color: rgb(66, 65, 65);
    margin-bottom: 100px;
}

.profil h2::first-letter {
    color: rgb(11, 199, 199);
}

.info-profil {
    display: flex;
    flex-direction: row;
    width: 83%;
    align-items: center;
    justify-content: space-between;
    margin-left: 200px;
}



.texte-profil p {
    font-size: 38px;
    margin-bottom: 57px;
}


.image-profil img {
    margin-left: 50px;
    width: 500px;
    height: 500px;
}

span {
    color: blueviolet;
}

.texte-profil a {
    text-decoration: none;
    font-size: 20px;
    margin-left: 289px;
    border: solid blueviolet 4px;
    padding: 20px;
    color: black;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

.texte-profil a:hover {
    background-color: blueviolet;
    color: rgb(255, 255, 255);
}

@media screen and (max-width : 1290px) {

    .image-profil img {
        height: 200px;
        width: 200px;
    }

    .texte-profil p {
        font-size: 20px;
    }

    .texte-profil a {
        font-size: 15px;
        padding: 10px;
    }

}

@media screen and (max-width : 1290px) {

    .info-profil {
        margin-left: 81px;

    }

}



.contenaire-cursus {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
}

.contenaire-cursus li {
    list-style-type: none;
    margin-top: 25px;
    margin-left: 15px;
    font-size: 23px;
}

.contenaire-cursus .bi-hourglass-split {
    color: pink;
    font-size: 25px;
}

.contenaire-cursus .bi-check2 {
    color: rgb(21, 255, 0);
    font-size: 25px;
}

.contenaire-cursus .bi-bookmark-plus {
    color: rgb(226, 214, 43);
    font-size: 25px;
}

.a {
    width: 500px;
    height: 300px;
    border: 4px solid rgb(220, 43, 226);
    border-radius: 10px;
    color: rgb(56, 56, 56);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.a h4::first-letter {
    color: blueviolet;
}

.b h4::first-letter {
    color: rgb(43, 189, 226);
}

.c h4::first-letter {
    color: rgb(43, 92, 226);
}

.b {
    width: 500px;
    height: 300px;
    border: 4px solid rgb(43, 220, 226);
    border-radius: 10px;
    color: rgb(56, 56, 56);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.c {
    width: 500px;
    height: 300px;
    border: 4px solid rgb(43, 92, 226);
    border-radius: 10px;
    color: rgb(56, 56, 56);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.contenaire-cursus h4 {
    padding-left: 13px;
    padding-top: 20px;
    font-size: 30px;
}

.loader {
    margin-left: 210px;
    margin-top: -26px;
}

#loader-2 span {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background-color: blue;
}

#loader-2 span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
    -webkit-animation: bounce 1s ease-in-out infinite;
}

#loader-2 span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

#loader-2 span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {

    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.comp h4 {
    font-size: 52px;
    margin-top: 100px;
    color: rgb(66, 65, 65);
    margin-left: 100px;
}

.comp h4::first-letter {
    color: blueviolet;
}

/* .COULEUR */

.colo1 {
    color: orange;
}

.colo2 {
    color: rgb(255, 255, 255);
}

.colo3 {
    color: rgb(255, 0, 242);
}

.colo4 {
    color: rgb(140, 255, 0);
}

.colo5 {
    color: rgb(142, 187, 232);
}

.colo6 {
    color: rgb(255, 228, 128);
}

.htm1 {
    margin-top: 59px;
    margin-left: 129px;
    background-color: black;
    width: 513px;
    height: 307px;
    padding-top: 15px;
}



.htm1 pre {
    margin-top: 5px;
    font-size: 25px;
    color: rgb(40, 185, 238);
}

.title-html {
    margin-left: 95px;
    margin-top: 78px;
    font-size: 37px;
}


.css1 {
    margin-top: -213px;
    margin-left: 1000px;
    background-color: black;
    width: 513px;
    height: 400px;
    padding-top: 15px;
}

.css1 pre {
    margin-top: 5px;
    font-size: 25px;
    color: rgb(40, 185, 238);
    padding-left: 5px;
}

.title-css {
    margin-left: 3px;
    margin-top: -101px;
    font-size: 37px;
    margin-bottom: 67px;
}

.php1 {
    margin-top: 26px;
    margin-left: 113px;
    background-color: black;
    width: 513px;
    height: 250px;
    padding-top: 15px;
}

.php1 pre {
    margin-top: 5px;
    font-size: 25px;
    color: rgb(40, 185, 238);
    padding-left: 5px;
}

.title-php {
    margin-left: 3px;
    margin-top: -101px;
    font-size: 37px;
    margin-bottom: 67px;
}

@media screen and (max-width : 1517px) {

    .title-html {
        font-size: 30px;
    }

    .css1 {
        margin-left: 800px;
    }


}

@media screen and (max-width : 1309px) {

    .title-html {
        font-size: 25px;
    }

    .css1 {
        margin-left: 800px;
        font-size: 20px;
        width: 400px;
        height: 310px;
    }


}

@media screen and (max-width : 1179px) {

    .title-html {
        font-size: 25px;
    }

    .css1 {
        margin-left: 650px;
        width: 300px;
        height: 290px;
    }

    .css1 pre {
        font-size: 20px;
    }

    .htm1 {
        width: 400px;
        height: 290px;
    }

    .htm1 pre {
        font-size: 20px;
    }

    .php1 {
        width: 400px;
        height: 170px;
    }

    .php1 pre {
        font-size: 20px;
    }


}

@media screen and (max-width : 959px) {

    .info-profil {
        display: flex;
        flex-direction: column;
    }

    .css1 {
        margin-top: 0px;
        margin-left: 0px;
    }

}

/* @media screen and (max-width : 883px) {

    .comp {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .css1{}

} */

.fond-menu {
    background: linear-gradient(111.69deg, #A157CC 11.4%, #DA79DF 86.09%);
    box-shadow: inset 0px -30px 68px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 1000px;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 84%);
    /* position: fixed;
    top: 0;
    z-index: -1; */
}




.categorie {
    width: 100%;
    z-index: 9999;
}

.categorie a {
    text-decoration: none;
    font-family: 'Staatliches', cursive;
}

.categorie ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.categorie li {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 4px solid rgb(199, 199, 199);
    padding: 25px;

    /* margin: 5px; */
    transition: all .5s ease;
}

.categorie li:hover {
    border: 4px solid black;
}

.categorie li:hover>.m6 {
    background-color: black;
    color: white;
}

.categorie img {
    height: 268px;
    width: 450px;
    display: block;
    object-fit: contain;
}

/**/
.categorie-esesence {
    width: 100%;
}

.categorie-esesence a {
    text-decoration: none;
    font-family: 'Staatliches', cursive;
}

.categorie-esesence ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.categorie-esesence li {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 4px solid rgb(199, 199, 199);
    padding: 25px;
    /* margin: 5px; */
    transition: all .5s ease;
}

.categorie-esesence li:hover {
    border: 4px solid black;
}

.categorie-esesence li:hover>.m6 {
    background-color: black;
    color: white;
}

.categorie-esesence img {
    height: 268px;
    width: 450px;
    display: block;
    object-fit: contain;
}


.categorie-essence2 h1 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 60px;
    font-size: 40px;
    font-family: 'Staatliches', cursive;
}

.carb {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.carb li {
    list-style-type: none;
    margin-right: 40px;
}

.carb a {
    color: black;
    text-decoration: none;
    font-size: 34px;
    font-family: 'Staatliches', cursive;
}

.carb a:hover {
    color: rgb(206, 21, 178);
}

.back {
    font-size: 22px;
    text-decoration: none;
    color: rgb(234, 7, 255);
    border: 3px solid rgb(234, 7, 255);
    padding: 20px;
    margin-left: 291px;
    transition: all .5s ease;
}

.back:hover {
    background-color: #DA79DF;
    color: white;
    border: 3px solid #DA79DF;
}

.fond-menu img {
    margin-top: 91px;
    margin-right: 91px;
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(140deg) brightness(103%) contrast(101%);
    height: 280px;
    width: 534px;
}

.menu-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 109px;
    width: 92%;
}

.menu-texte {
    color: white;
}

.menu-texte h1 {
    font-size: 142px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: row;
    font-family: 'Staatliches', cursive;
    margin-left: 65px;
}

.menu-texte p {
    font-size: 28px;
    margin-bottom: 88px;
}

.menu-texte a {
    font-size: 25px;
    text-decoration: none;
    margin-left: 362px;
    padding: 10px;
    color: white;
    border: solid 5px rgb(255, 255, 255);
    font-family: 'Staatliches', cursive;
}

.menu-texte a:hover {
    background-color: white;
    transition: all .4s ease;
    color: rgb(220, 43, 226);
}

/*TEST*/


.anim {
    margin-left: 45px;
    overflow: hidden;
    height: 170px;
}

.anim div:first-child {
    animation: show 5s cubic-bezier(0.83, 0, 0.17, 1) infinite alternate;
}

@keyframes show {
    0% {
        margin-top: 0px;
    }

    33% {
        margin-top: 0px;
    }

    38% {
        margin-top: -178px;
    }

    66% {
        margin-top: -178px;
    }

    71% {
        margin-top: -352px;
    }

    99.99% {
        margin-top: -352px;
    }

    100% {
        margin-top: -352px;
    }
}

.m2 {
    font-size: 50px;
    color: black;
}

.m3 {
    font-size: 25px;
    color: rgb(88, 88, 88);
}

.m4 {
    font-size: 18px;
    color: rgb(142, 142, 142);
    margin-bottom: 27px;
}

.m5 {
    font-size: 50px;
    color: rgb(0, 0, 0);
}

.m6 {
    font-size: 20px;
    padding: 15px;
    border: 4px solid black;
    color: black;
    width: 150px;
    align-self: center;
    transition: all .5s ease;
}

footer {
    width: 100%;
    height: 120px;
    background: linear-gradient(111.69deg, #A157CC 11.4%, #DA79DF 86.09%);
}

footer {
    color: white;
    margin-top: 105px;
}

footer h4 {
    font-size: 25px;
}

.contenaire-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.contenaire-footer i {
    font-size: 35px;
    margin-right: 20px;
}

.one {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    border-right: 3px solid white;
    width: 418px;
}

/* footer h2::after {
    content: "";
    background-color: white;
    height: 10px;
    width: 800px;
    left: 0;
    bottom: -10px;
    display: block;
    margin-left: 150px;
    margin-top: -26px;
}

footer h2::before {
    content: "";
    background-color: white;
    height: 10px;
    width: 800px;
    left: 0;
    bottom: -10px;
    display: block;
    margin-left: 1143px;
    margin-bottom: -35px;
} */

.icon-footer {
    filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(140deg) brightness(103%) contrast(101%);
}

/*Articles*/

.menu-fond {
    background: linear-gradient(111.69deg, #A157CC 11.4%, #DA79DF 86.09%);
    width: 100%;
    height: 97px;
}

.contenaire-article {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3em;
    height: 81vh;
    align-items: center;
}

.contenaire-article img {
    height: 441px;
    width: 617px;
    object-fit: contain;
    margin-top: 35px;
}


.texte-article ul {
    margin-top: 106px;
}

.texte-article li {
    list-style-type: none;
    margin-top: 5px;
}

.un {
    font-size: 50px;
    font-family: 'Staatliches', cursive;
}

.deux {
    font-size: 20px;
    color: gray;
}

.trois {
    font-size: 25px;
    font-family: 'Staatliches', cursive;
}

.un img {
    height: 70px;
    width: 70px;
    position: absolute;
    margin-top: 36px;
    margin-left: 120px;
}

.quatre {
    font-size: 20px;
    color: gray;
    max-width: 500px;
}

.cinq {
    font-size: 50px;
    font-family: 'Staatliches', cursive;
}

.bouton-articles {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 18px;
    width: 515px;
}

.bouton-articles a {
    text-decoration: none;
    color: #DA79DF;
    border: 3px solid #DA79DF;
    font-size: 25px;
    padding: 10px;
    font-family: 'Staatliches', cursive;
    transition: all .3s ease;
}

.bouton-articles a:hover {
    background-color: #DA79DF;
    color: white;
}

/*Panier*/

.add {
    width: 100%;
    background-color: green;
    color: white;
    text-align: center;
    height: 72px;
    font-size: 20px;
    overflow: hidden;
    animation-fill-mode: forwards !important;
    animation: add 1.5s;
    padding-top: 40px;
}

.add h4 {
    align-items: center;
    text-align: center;
    justify-content: center;
}

@keyframes add {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

.remove {
    width: 100%;
    background-color: rgb(255, 0, 0);
    color: white;
    text-align: center;
    height: 72px;
    font-size: 20px;
    overflow: hidden;
    animation: remove 1.5s;
    padding-top: 40px;
    animation-fill-mode: forwards !important;
    animation: remove 1.5s;
}

.remove h4 {
    align-items: center;
    text-align: center;
    justify-content: center;
}

@keyframes remove {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }


}

.panier-titre {
    text-align: center;
    font-size: 40px;
    font-weight: lighter;
    margin-top: 120px;
}

.contenaire-panier {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 300px;
    align-items: center;
    width: 1000px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    margin: auto;
    margin-top: 100px;
}

.image-panier {
    height: 248px;
    width: 385px;
    object-fit: contain;
}

.contenaire-panier ul {
    list-style-type: none;
    margin-top: 35px;
    margin-left: 87px;
}

.pa1 {
    font-size: 40px;
    font-family: 'Staatliches', cursive;
    margin-bottom: 32px;
}

.pa2 {
    color: gray;
    font-family: 'Staatliches', cursive;
}

.pa3 {
    font-family: 'Staatliches', cursive;
    margin-left: 295px;
    margin-top: 94px;
    font-size: 40px;
}

.panier-btn {
    display: flex;
    justify-content: center;
    margin-top: 45px;
    gap: 3em;
}

.panier-btn a {
    text-decoration: none;
    font-family: 'Staatliches', cursive;
    font-size: 20px;
}

.btn1-panier {
    color: green;
    border: 3px solid green;
    padding: 7px;
    transition: all .3s ease;
}

.btn2-panier {
    color: rgb(255, 0, 0);
    border: 3px solid rgb(255, 0, 0);
    padding: 7px;
    transition: all .3s ease;
}


.btn1-panier:hover {
    background-color: green;
    color: white;
}

.btn2-panier:hover {
    background-color: rgb(255, 0, 0);
    color: white;
}

.btn3-panier {
    display: flex;
    justify-content: center;
}

.btn3-panier a {
    text-decoration: none;
    font-size: 25px;
    margin-top: 55px;
    padding: 10px;
    border: 3px solid #DA79DF;
    color: #DA79DF;
    font-family: 'Staatliches', cursive;
    transition: all .3s ease;
}

.btn3-panier a:hover {
    background-color: #DA79DF;
    color: white;
}

.total {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 700px;
}

.total h3 {
    font-size: 30px;
}

.total p {
    font-size: 30px;
    font-weight: bold;
}

.liste {
    margin-left: 1100px;
    margin-bottom: 100px;
}

.liste a {
    text-decoration: none;
    font-family: 'Staatliches', cursive;
    color: #DA79DF;
    font-size: 20px;
    padding: 10px;
    border: solid 2px #DA79DF;
    transition: .3s ease;
}

.liste a:hover {
    background-color: #DA79DF;
    color: white;
}

/*AFFICHAGE LISTE*/

.categorie3 {
    width: 100%;
    z-index: 9999;
}

.categorie3 a {
    text-decoration: none;
    font-family: 'Staatliches', cursive;
}

.categorie3 ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.categorie3 li {
    display: flex;
    flex-direction: row;
    text-align: center;
    border: 4px solid rgb(199, 199, 199);
    padding: 25px;
    margin: 5px;
    transition: all .5s ease;
    width: 100%;
}

.categorie3 li:hover {
    border: 4px solid black;
}

.categorie3 li:hover>.m61 {
    background-color: black;
    color: white;
}

.categorie3 img {
    height: 268px;
    width: 450px;
    display: block;
    object-fit: contain;
}


.m21,
.m31 {
    font-size: 50px;
    color: black;
    margin-left: 10px;
}


.m41 {
    font-size: 23px;
    color: rgb(142, 142, 142);
    margin-top: 105px;
    margin-left: -150px;
}

.m51 {
    font-size: 50px;
    color: rgb(0, 0, 0);
    margin-left: 40%;
}

.m61 {
    font-size: 20px;
    padding: 15px;
    border: 4px solid black;
    color: black;
    width: 150px;
    align-self: center;
    transition: all .5s ease;
    position: absolute;
    margin-left: 50%;
    margin-top: 177px;
}

/**/
.categorie3-esesence {
    width: 100%;
}

.categorie3-esesence a {
    text-decoration: none;
    font-family: 'Staatliches', cursive;
}

.categorie3-esesence ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.categorie3-esesence li {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 4px solid rgb(199, 199, 199);
    padding: 25px;
    transition: all .5s ease;
}

.categorie3-esesence li:hover {
    border: 4px solid black;
}

.categorie3-esesence li:hover>.m6 {
    background-color: black;
    color: white;
}

.categorie3-esesence img {
    height: 268px;
    width: 450px;
    display: block;
    object-fit: contain;
}


.categorie3-essence2 h1 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 60px;
    font-size: 40px;
    font-family: 'Staatliches', cursive;
}

.connex {
    display: flex;
    margin-top: 200px;
    gap: 190px;
    justify-content: center;
}

.mb-3 {
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
}

.mb-4 {
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
}

.mb-3 i {
    font-size: 32px;
    margin-right: 4%;
    color: #A000EB;
}

.mb-4 i {
    font-size: 32px;
    margin-right: 4%;
    color: #00B8F2;
}

.srcform1 {
    margin-bottom: 40px;
    color: #A000EB;
    font-family: 'Ubuntu', sans-serif;
    font-size: 50px;
    text-align: center;
    margin-left: 8%;
}

.srcform2 {
    margin-bottom: 40px;
    color: #00B8F2;
    font-family: 'Ubuntu', sans-serif;
    font-size: 50px;
    text-align: center;
    margin-left: 8%;
}

.compte-menu i {
    font-size: 20px;
}

.compte-menu2 i {
    font-size: 20px;
}

.mbi-3 {
    width: 109%;
    height: 34px;
    border: 2px solid #A000EB;
    padding-left: 15px;
}

.mbi-3:focus-within {
    outline: .5px solid #bd48f3;
    border: 2px solid #bd48f3;
}


.mbi-4 {
    width: 109%;
    height: 34px;
    border: 2px solid #00B8F2;
    padding-left: 15px;
}

.mbi-4:focus-within {
    border: 2px solid #85e2ff;
    outline: .5px solid #85e2ff;
}


.form1 {
    width: 20%;
    margin-bottom: 7%;
}

.form2 {
    width: 20%;
    margin-bottom: 7%;
}

.btn-insc {
    background-color: #ffffff;
    color: #A000EB;
    border: 2px solid #A000EB;
    padding: 7px;
    margin-left: 36%;
    font-size: 20px;
    font-family: 'Staatliches', cursive;
    transition: all .4s ease;
}


.btn-con {
    background-color: #ffffff;
    color: #00B8F2;
    border: 2px solid #00B8F2;
    padding: 7px;
    margin-left: 36%;
    font-size: 20px;
    font-family: 'Staatliches', cursive;
    transition: all .4s ease;
}

.btn-insc:hover {
    background-color: #A000EB;
    color: #ffffff;
    border: 2px solid #A000EB;
    cursor: pointer;
}


.btn-con:hover {
    background-color: #00B8F2;
    color: #ffffff;
    border: 2px solid #00B8F2;
    cursor: pointer;
}


.error {
    text-align: center;
    color: red;
}

.succes {
    text-align: center;
    color: rgb(7, 196, 7);
}

.deco-pseudo {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #DA79DF;
    font-size: 25px;
}

.deco-pseudo i {
    font-size: 45px;
    margin-bottom: 15%;
}

.deco-email i {
    font-size: 38px;
    margin-bottom: 13%;
}

.deco-email {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #099ecb;
    font-size: 25px;
}

.btn-deco {
    text-decoration: none;
    color: red;
    margin: auto;
    border: 2px solid red;
    padding: 10px;
    font-size: 20px;
    transition: all .3s ease;
    display: block;
    width: fit-content;
    margin-top: 40px;
}

.btn-deco:hover {
    background-color: red;
    color: white;
}

.compte-infos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20%;
    margin-bottom: 5%;
}

.titre-com {
    justify-content: center;
    text-align: center;
    font-weight: lighter;
    font-size: 50px;
    margin-bottom: 30px;
}


.imput-commentaire {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.firstform1 {
    width: 229%;
    height: 50px;
    border: 3px solid #00B8F2;
    text-align: center;
    margin-left: -60%;
    margin-bottom: 30px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;

}

.firstform1:focus-within {
    border: 3px solid #85e2ff;
    outline: .5px solid #85e2ff;
}


.secondform1 {
    width: 320%;
    height: 150px;
    border: 3px solid #00B8F2;
    padding: 8px;
    margin-bottom: 30px;
    margin-left: -109%;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;

}

.secondform1:focus-within {
    border: 3px solid #85e2ff;
    outline: .5px solid #85e2ff;
}

.btn-com {
    background-color: #ffffff;
    color: #00B8F2;
    border: 3px solid #00B8F2;
    padding: 10px;
    font-size: 30px;
    font-family: 'Staatliches', cursive;
    transition: all .4s ease;
}

.btn-com:hover {
    background-color: #00B8F2;
    color: #ffffff;
    cursor: pointer;
}

.titre-commentaire {
    margin-left: 1%;
    font-size: 45px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
}

.error2 {
    color: red;
    margin-bottom: 20px;
    font-size: 20px;
}

.succes2 {
    color: green;
    margin-bottom: 20px;
    font-size: 20px;
}

.detail-com {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 15px;
    gap: 10px;
}

.contenu-com-tour {
    width: 90%;
    border: 5px solid #A157CC;
    align-items: center;
    margin: auto;
    margin-top: 55px;
    height: 200px;
    border-radius: 5px;
}

.pseudo-com {
    font-size: 40px;
    color: #00B8F2;
    font-family: 'Staatliches', cursive;
}

.sep-com {
    font-size: 40px;
    font-weight: bold;
}

.voiture-com {
    font-size: 40px;
    color: #DA79DF;
    font-weight: lighter;
}

.desc-com {
    font-size: 20px;
    padding: 15px;
}

.titre-historique {
    margin-left: 1%;
    font-size: 35px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: lighter;
}