@import url('https://fonts.googleapis.com/css2?family=Jura');
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
}

.error {
    color: red;
    text-align: center;
    font-family: 'Jura';
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #000000;
}

::-webkit-scrollbar-thumb {
    background-color: #373737;
}

.button-paypal {
    width: 100px;
    position: relative;
    margin-top: 35%;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #000000;
}

.loader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid;
    border-top-color: #00B2FF;
    border-bottom-color: #00B2FF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* #Header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 75px;
    background: #000000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.logo {
    display: inline-block;
    margin-left: 2%;
    margin-top: 1%;
    font-family: 'Jura';
    font-size: 28px;
    color: white;
    font-style: normal;
    margin-right: 18%;
    text-transform: uppercase;
}

.menu {
    display: inline;
}

.menu-mobile {
    display: none;
}

.close {
    display: none;
}

.header-link {
    display: inline-block;
    margin-inline: 1%;
    margin-top: 1%;
    right: 0px;
    font-family: 'Jura';
    font-size: 22px;
    color: white;
    font-style: normal;
    transition-property: color;
    transition-duration: 2s;
}

.header-link:hover {
    color: #00B2FF;
}

.dropdown {
    display: inline-block;

}

.dropdown-btn {
    font-family: 'Jura';
    font-size: 22px;
    color: white;
    cursor: pointer;
}

.dropdown-icon {
    display: inline-block;
    position: relative;
    top: 7px;
}

.dropdown-content {
    display: none;
    position: absolute;
    border-radius: 26px;
    width: 300px;
    margin-top: 1%;
    right: 7%;
    text-align: center;
    background-color: #0f0f0f;
    min-height: 400px;
}

.dropdown-title {
    position: relative;
    top: 20px;
    margin-bottom: 3%;
    font-family: 'Jura';
    font-size: 20px;
    color: white;

}

.dropdown-hr {
    width: 15%;
}

.dropdown-prenom {
    display: inline-block;
}

.dropdown-nom {
    display: inline-block;
}

.dropdown-prenom::first-letter {
    text-transform: capitalize;
}

.dropdown-link {
    position: relative;
    font-family: 'Jura';
    margin-block: 1%;
    font-size: 20px;
    color: white;
    display: block;
    padding: 15px;
}

.dropdown-link:hover {
    background-color: #000000;
    color: white;
}

.dropdown-content-link {
    position: relative;
    top: 20px;
}


.header-icon {
    top: 25px;
    position: absolute;
    display: inline-block;
    font-weight: 100;
}

.header-connexion {
    border: 1px white;
    padding: 5px 20px;
    border-radius: 25px;
    transition-property: background-color, color;
    transition-duration: 3s;
}

.header-connexion:hover {
    text-decoration: none;
    color: black;
    border: transparent;
    background-color: silver;

}

.account-mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    header {
        position: fixed;
        top: 0;
    }

    .logo {
        display: inline-block;
        margin-right: 0;
        margin-top: 3%;
        margin-right: 50%;
    }

    .menu-mobile {
        width: 100%;
        position: absolute;
        display: inline;
        margin-top: 4%;
        float: right;
        color: white;
    }

    .account-mobile {
        display: block;
    }

    .menu {
        float: right;
        right: 5%;
        display: none;
        position: absolute;
        width: 300px;
        border-radius: 36px 0px 0px 36px;
        min-height: 350px;
        background-color: #0f0f0f;
        margin-top: 5%;
    }

    .close {
        display: block;
        position: absolute;
        right: 9%;
        margin-top: 2%;
        color: white
    }

    .dropdown {
        display: none;

    }

    .menu-close {
        display: none;
    }

    header:hover .menu {
        display: block;
    }

    .header-link {
        display: block;
        margin-block: 5%;
        text-align: center;
    }

    .deconnexion-icon {
        position: relative;
        display: inline-block;
        color: red;
        top: 4px;
        font-weight: 300;
    }

    .header-icon {
        margin-top: 95%;
    }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .logo {
        display: inline-block;
        margin-right: 0;
        margin-top: 3%;
        margin-right: 50%;
    }

    .menu-mobile {
        width: 100%;
        position: relative;
        display: inline;
        margin-top: 4%;
        right: -25%;
        color: white;
    }

    .account-mobile {
        display: block;
    }

    .menu {
        float: right;
        right: 5%;
        display: none;
        position: absolute;
        width: 300px;
        border-radius: 36px 0px 0px 36px;
        min-height: 350px;
        background-color: #0f0f0f;
        margin-top: 5%;
    }

    .close {
        display: block;
        position: absolute;
        right: 9%;
        margin-top: 2%;
        color: white
    }

    .dropdown {
        display: none;

    }

    .menu-close {
        display: none;
    }

    header:hover .menu {
        display: block;
    }

    .header-link {
        display: block;
        margin-block: 5%;
        text-align: center;
    }

    .deconnexion-icon {
        position: relative;
        display: inline-block;
        color: red;
        top: 4px;
        font-weight: 300;
    }

    .header-icon {
        margin-top: 95%;
    }
  }
/* #Header */
/* #Footer */
footer {
    position: relative;
    color: white;
    background-color: #000000;
    min-height: 350px;
    font-family: 'Jura';
    
}

.footer-container {
    width: 100%;
    position: relative;
}

.footer-text {
    width: 300px;
    text-align: center;
    font-size: 20px;
    color: rgb(177, 177, 177)
}

.ul-footer {
    vertical-align: top;
    text-align: center;
    width: max-content;
    display: inline-block;
    margin-top: 3%;
}

.footer-title {
    font-family: 'Jura';
    font-size: 22px;
}

.li-footer {
    list-style: none;
    margin-block: 3%;
}

.footer-link {
    font-size: 20px;
    color: rgb(177, 177, 177);
    transition: color 1s;
}

.footer-link:hover {
    color: #00B2FF;
}

.social-link {
    display: inline-block;
    margin-inline: 3%;
    color: white;
}

.copyright {
    /* position: absolute; */
    margin-top: 3%;
    font-size: 20px;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    footer {
        min-height: 850px;
        text-align: center;
        width: 100%;
    }

    .footer-container {
        width: 100%;
        text-align: center;
    }

    .footer-text {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .footer-link {
        margin: 0;
    }

    .ul-footer {
        margin-left: 0;
        position: relative;
        width: 80%;
        text-align: center;
        display: block;
    }

    .copyright {
        margin-left: 0;
        text-align: center;
        white-space: nowrap;
    }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
    footer {
        min-height: 950px;
        text-align: center;
        width: 100%;
    }

    .footer-container {
        position: relative;
        transform: translateY(-10%);
        background-color: #000000;
        width: 100%;
        text-align: center;
    }
    .footer-title{
        margin-top: 0;
    }
    .first-title{
        position: relative;
        top:20px;
        margin-bottom: 5%;
        
    }

    .footer-text {
        width: 100%;
        text-align: center;
    }

    .footer-link {
        margin: 0;
    }

    .ul-footer {
        width: 90%;
        text-align: center;
        display: block;
    }

    .copyright {
        text-align: center;
        white-space: nowrap;
    }
  }

/* #Footer */
/* #Accueil */
.accueil-container {
    width: 100%;
    min-height: 680px;
    background-color: #000000;
    color: white;
    margin-top: 3%;

}

.accueil_img {
    position: absolute;
    margin-top: 3%;
    right: 0px;
    animation: accueil_img 2s ease-in-out infinite alternate-reverse both;
}

@keyframes accueil_img {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }

}

.accueil_img:hover {
    animation-play-state: paused;
}

.accueil-text {
    position: absolute;
    display: block;
    margin-top: 7%;
    margin-left: 4%;
}

.slogan {
    font-family: 'Jura';
    font-style: normal;
    font-size: 56px;
}

.slogan_2 {
    width: 72%;
    font-family: 'Jura';
    font-size: 28px;
    line-height: 38px;
    color: #A0A0A0;
}

.accueil-connexion {
    position: absolute;
    margin-top: 2%;
    font-family: 'Jura';
    font-size: 26px;
    align-items: center;
    color: #00B2FF;
    padding: 8px 15px;
    background: #373737;
    border-radius: 26px;
    transition-duration: 3s;

}

.accueil-connexion:hover {
    background-color: #00B2FF;
    color: white;
}

@media only screen and (max-width:900px) {
    .accueil-container {
        margin-top: 10%;
    }

    .accueil-text {
        margin-top: 95%;
    }

    .slogan {
        position: relative;
        margin-top: 5%;
        text-align: center;
        font-size: 34px;
    }

    .slogan_2 {
        position: relative;
        width: 100%;
        text-align: center;
        font-size: 28px;
    }

    .accueil_img {
        position: absolute;
        margin-top: 15%;
        width: 100%;

    }

    .accueil-connexion {
        margin-top: 5%;
        left: 20%;
    }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .accueil-container {
        margin-top: 5%;
        min-height: 1050px;
    }

    .accueil-text {
        margin-top: 95%;
    }

    .slogan {
        position: relative;
        margin-top: 5%;
        text-align: center;
        font-size: 34px;
    }

    .slogan_2 {
        position: relative;
        width: 100%;
        text-align: center;
        font-size: 28px;
    }

    .accueil_img {
        position: absolute;
        margin-top: 15%;
        width: 100%;

    }

    .accueil-connexion {
        margin-top: 5%;
        left: 35%;
    }
  }

/* #Accueil */
/* #Avantage */
.avantages-container {
    width: 100%;
    min-height: 550px;
    color: white;
    background-color: #0f0f0f;
}

.avantages-title {
    width: 100%;
    position: absolute;
    margin-top: 2%;
    font-family: 'Jura';
    font-size: 26px;
    text-align: center;
}

.avantages-hr {
    width: 10%;
}

.avantages-text {
    margin-top: 1%;
    font-family: 'Jura';
    font-size: 24px;
    text-align: center;
}

.avantages-content {

    text-align: center;
}

.avantages-card {
    cursor: pointer;
    vertical-align: top;
    display: inline-block;
    margin-inline: 1%;
    border-radius: 26px;
    background-color: #000000;
    margin-top: 14%;
    width: 300px;
    height: 220px;
    transition-duration: 2s;
}

.avantages-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(107, 107, 107, 0.45) 0px 25px 20px -20px;
}

.title-card {
    text-align: center;
    font-family: 'Jura';
    font-size: 26px;
}

.avantages-icon {
    display: block;
    font-weight: 100;
    text-align: center;
    font-size: 66px;
}

.avantages-description {
    margin-top: 2%;
    font-family: 'Jura';
    font-size: 20px;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .avantages-content {
        min-height: 1150px;
    }

    .avantages-title {
        position: relative;
        margin-top: -1px;
        top: 20px;
    }

    .avantages-text {
        position: relative;
        font-size: 22px;
    }

}
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .avantages-content {
        min-height: 750px;
    }

    .avantages-title {
        position: relative;
        margin-top: -1px;
        top: 20px;
    }

    .avantages-text {
        position: relative;
        font-size: 22px;
    }
  }

/* #Avantage */
/* #Contact dev */
.contact-container {
    width: 100%;
    min-height: 950px;
    color: white;
    background-color: #000000;
}

.contact-title {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 2%;
    font-family: 'Jura';
    font-size: 26px;

}

.contact-hr {
    width: 10%;
}

.card-container {
    text-align: center;
}

.card {
    border-radius: 26px;
    vertical-align: top;
    margin-top: 10%;
    display: inline-block;
    margin-inline: 3%;
    width: 320px;
    height: 430px;
    background-color: #181818;
    transition-duration: 2s;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(255, 255, 255, 0.45) 0px 25px 20px -20px;
}

.card-title {
    margin-top: 2%;
    font-family: 'Jura';
    text-align: center;
    font-size: 25px;
}

.card-hr {
    width: 15%;
}

.card-description {
    font-size: 18px;
    text-align: center;
    font-family: 'Jura';
}

.card-type {
    font-size: 16px;
}

.card-content {
    margin-bottom: 0;
}

.li-card {
    font-family: 'Jura';
    margin-block: 5%;
    font-size: 23px;
    list-style: none;
    text-align: center;
    margin-bottom: 0;
}

.card-button {
    position: relative;
    top: 10%;
    border-radius: 36px;
    padding: 8px 15px;
    font-size: 20px;
    background-color: #00B2FF;
    color: white;
}

.dev {
    margin-top: 6%;
    margin-bottom: 0;
}

.dev-title {
    font-family: 'Jura';
    font-size: 25px;
}

.dev-hr {
    width: 10%;
}

.dev-description {
    font-family: 'Jura';
    font-size: 21px;
}

.dev-content {
    margin-top: 2%;
}

.dev-button {
    color: white;
    font-family: 'Jura';
    font-size: 22px;
    padding: 10px 15px;
    border: 1px solid white;
    border-radius: 26px;
    transition-property: all;
    transition-duration: 3s;
}

.dev-button:hover {
    background-color: white;
    color: black;
    border: none;
}

@media only screen and (max-width: 900px) {
    .contact-container {
        min-height: 1400px;
    }

    .contact-title {
        position: relative;
        margin-top: -1px;
        top: 20px;
        width: 100%;
        font-size: 25px;
    }

    .card-button {
        top: 20px;
    }

    .dev {
        margin-top: 10%;
    }

    .dev-description {
        width: 100%;

    }

    .dev-content {
        margin-top: 7%;
    }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .contact-container {
        min-height: 950px;
    }

    .contact-title {
        position: relative;
        margin-top: -1px;
        top: 20px;
        width: 100%;
        font-size: 25px;
    }

    .card-button {
        top: 20px;
    }

    .dev {
        margin-top: 10%;
    }

    .dev-description {
        width: 100%;

    }

    .dev-content {
        margin-top: 7%;
    }
  }
/* #Contact Dev */
.faq {
    position: relative;
    width: 100%;
    min-height: 500px;
    color: white;
    background-color: #0f0f0f;
}

.faq-allcontent {
    width: 100%;
    position: relative;
}

.faq-title {
    position: relative;
    width: 100%;
    top: 20px;
    text-align: center;
    font-family: 'Jura';
    font-size: 28px;
}

.faq-hr {
    width: 15%;
}

.faq-container {
    margin-top: 6%;
    text-align: center;
}

.faq-icon {
    position: absolute;
    margin-left: 15%;
    margin-top: 10px;
    display: inline-block;
}

.faq-card {
    position: relative;
    width: 50%;
    margin-block: 2%;
    padding: 30px 200px;
    margin-left: 13%;
    margin-bottom: 0;
    display: block;
    background-color: #000000;
}

.faq-card-title {
    color: #00B2FF;
    font-family: 'Jura';
    font-size: 24px;
    cursor: pointer;
}

.faq-content {
    text-align: center;
    display: none;
    margin-top: 2%;
    font-family: 'Jura';
    font-size: 24px;
    background-color: #000000;
}

@media only screen and (max-width:900px) {
    .faq {
        min-height: 1150px;
    }

    .faq-card {
        margin-left: 4%;
        padding: 30px 80px;
    }

}
@media screen and (max-width: 1023px) and (min-width: 768px) {
    .faq { 
        min-height: 1450px;
    }

    .faq-card {
        margin-left: 8%;
        padding: 30px 140px;
    }
    .faq-content{
        display: block
    }
  }

/* #FAQ */

/* PAGE SERVICE*/
.info-services {
    width: 100%;
    margin-top: 5%;
    color: white;
    min-height: 800px;
    background-color: #000000;
}

.info-title {
    width: 100%;
    text-align: center;
    position: absolute;
    margin-top: 3%;
    font-family: 'Jura';
    font-size: 28px;
}

.info-hr {
    width: 10%;
}

.info-text {
    width: 100%;
    position: absolute;
    margin-top: 8%;
    text-align: center;
    font-family: 'Jura';
    color: silver;
    font-size: 24px;
}

.heb-container {
    text-align: center;
}

.heb-card {
    vertical-align: top;
    margin-top: 14%;
    margin-inline: 3%;
    width: 325px;
    height: 500px;
    border-radius: 26px;
    display: inline-block;
    background-color: #0f0f0f;
    transition-duration: 2s;
}

.heb-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(107, 107, 107, 0.45) 0px 25px 20px -20px;
}

.heb-title {
    margin-top: 7%;
    text-align: center;
    font-family: 'Jura';
    font-size: 24px;
}

.heb-description {
    margin-top: 6%;
    text-align: center;
    font-family: 'Jura';
    font-size: 20px;
}


.heb-price {
    margin-top: 4%;
    font-family: 'Jura';
    text-align: center;
    font-size: 20px;
}

.heb-content {
    margin-top: 7%;
}

.li-heb {
    display: block;
    margin-block: 5%;
    list-style: none;
    font-family: 'Jura';
    text-align: center;
    font-size: 20px;
}

.heb-button {
    position: relative;
    top: 6%;
    font-family: 'Jura';
    font-size: 20px;
    margin-top: 1.5%;
    color: white;
    background-color: #00B2FF;
    padding: 8px 20px;
    border-radius: 36px;
    border: none;
    transition-duration: 2s;
}

.heb-button3 {
    top: 11%;
}

.heb-button:hover {
    background-color: #373737;
}

.revendeur {
    width: 100%;
    color: white;
    min-height: 750px;
    background-color: #0f0f0f
}

.revendeur-title {
    width: 100%;
    text-align: center;
    position: absolute;
    margin-top: 3%;
    font-family: 'Jura';
    font-size: 28px;
}

.revendeur-hr {
    width: 10%;
}

.revendeur-text {
    width: 100%;
    position: absolute;
    margin-top: 8%;
    text-align: center;
    font-family: 'Jura';
    color: silver;
    font-size: 24px;
}

.revendeur-container {
    text-align: center;
}

.revendeur-card {
    vertical-align: top;
    margin-top: 14%;
    margin-inline: 3%;
    width: 325px;
    height: 435px;
    border-radius: 26px;
    display: inline-block;
    background-color: #000000;
    transition-duration: 2s;
}

.revendeur-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(107, 107, 107, 0.45) 0px 25px 20px -20px;
}

.rev-title {
    margin-top: 7%;
    text-align: center;
    font-family: 'Jura';
    font-size: 24px;
}

.rev-price {
    margin-top: 4%;
    font-family: 'Jura';
    text-align: center;
    font-size: 20px;
}

.rev-content {
    margin-top: 7%;
}

.li-rev {
    display: block;
    margin-block: 5%;
    list-style: none;
    font-family: 'Jura';
    text-align: center;
    font-size: 20px;
}

.rev-button {
    position: relative;
    top: 6%;
    font-family: 'Jura';
    font-size: 20px;
    margin-top: 1.5%;
    color: white;
    background-color: #00B2FF;
    padding: 8px 20px;
    border-radius: 36px;
    border: none;
    transition-duration: 2s;
}

@media only screen and (max-width:900px) {
    .heb-container {
        min-height: 1700px;
    }

    .info-title {
        position: relative;
        top: 60px;
        width: 100%;
        font-size: 25px;
    }

    .info-text {
        position: relative;
        top: 50px;
    }

    .heb-container {
        margin-top: 9%;
    }

    .revendeur {
        margin-top: -1%;
        min-height: 1700px;
    }

    .revendeur-title {
        margin-top: -1%;
        position: relative;
        top: 30px;
    }

    .revendeur-text {
        position: relative;
    }
}

/* Revendeur */
/* Login */
.login {
    margin-top: 7%;
    color: white;
    background-color: #000000;
}

.login-form {
    margin-top: 5%;
    height: 520px;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.13);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 50px 35px;
}

.login-form-title {
    margin-top: 2%;
    font-size: 24px;
    font-family: 'Jura';
    text-align: center;

}

.login-hr {
    width: 15%;
}

.label-login {
    font-family: 'Jura';
    display: block;
    margin-left: 2%;
    text-align: left;
    font-size: 18px;
    margin-block: 3%;
}

.login-input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 300;
    border: none;
    color: #A0A0A0;
}

.login-icon {
    position: relative;
    top: -7%;
    left: 95%;
    font-weight: 100;
}

.login-input::placeholder {
    font-family: 'Jura';
    color: white;
}

.login-input:focus {
    outline: none;
}

.login-forgot {
    margin-top: 2%;
    font-family: 'Jura';
    color: #00B2FF;
    transition: color 1s;
}

.login-forgot:hover {
    color: white;
}

.login-signup {
    margin-top: 60%;
    text-align: center;
    bottom: 2px;
    font-family: 'Jura';

}

.login-signup-a {
    color: #00B2FF;
    transition: color 1s;
}

.login-signup-a:hover {
    color: white;
}

.login-submit {
    position: absolute;
    transform: translate(-50%);
    top: 59%;
    left: 50%;
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 26px;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.07);
    transition: background-color 1s;

}

.login-logo {
    margin-right: 50%;
}

.login-submit:hover {
    background-color: #00B2FF;
}

@media only screen and (max-width: 900px) {
    .login {
        max-width: 100%;
    }

    .login-logo {
        position: relative;
        display: inline-block;
        font-size: 22px;
        top: 5px;
        margin-right: -15%;
        width: 100%;
    }

    .login-form {
        position: relative;
        top: 60px;
        width: 290px;
        transform: translate(0);
        left: 2%;
        right: 0;
        height: 450px
    }

    .menu-login {
        right: 0%;
        top: 45px;
    }

    .login-submit {
        top: 63%;
    }

}

/* LOGIN */
/* REGISTER */
.register {
    margin-top: 7%;
    color: white;
    background-color: #000000;
}

.register-form {
    margin-top: 10%;
    height: 620px;
    width: 400px;
    background-color: rgba(255, 255, 255, 0.13);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 50px 35px;
}

.register-form-title {
    margin-top: 2%;
    font-size: 24px;
    font-family: 'Jura';
    text-align: center;

}

.register-hr {
    width: 15%;
}

.label-register {
    font-family: 'Jura';
    display: block;
    margin-left: 2%;
    text-align: left;
    font-size: 18px;
    margin-block: 3%;
}

.register-input {
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 300;
    border: none;
    color: #A0A0A0;
}

.register-input::placeholder {
    font-family: 'Jura';
    color: white;
}

.register-input:focus {
    outline: none;
}


.register-signup {
    margin-top: 25%;
    text-align: center;
    bottom: 2px;
    font-family: 'Jura';

}

.register-signup-a {
    color: #00B2FF;
    transition: color 1s;
}

.register-signup-a:hover {
    color: white;
}

.register-submit {
    position: absolute;
    transform: translate(-50%);
    top: 85%;
    left: 50%;
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 26px;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.07);
    transition: background-color 1s;

}

.register-submit:hover {
    background-color: #00B2FF;
}

@media only screen and (max-width: 900px) {
    .register {
        max-width: 100%;
    }

    .register-logo {
        position: relative;
        display: inline-block;
        font-size: 22px;
        top: 5px;
        margin-right: -15%;
        width: 100%;
    }

    .register-form {
        position: relative;
        top: 60px;
        width: 290px;
        transform: translate(0);
        left: 2%;
        right: 0;
        height: 620px
    }

    .menu-register {
        right: 0%;
        top: 45px;
    }

    .register-submit {
        top: 78%;
    }
}

/* REGISTRER */
/* panier */
.panier {
    margin-top: 5%;
    width: 100%;
    min-height: 350px;
    color: white;
    font-family: 'Jura';
    background-color: #000000;
    text-align: center;
}

.panier-title {
    font-size: 28px;
}

.panier-hr {
    width: 15%;
}

.panier-content {
    margin-top: 4%;
}

.panier-product-name {
    font-size: 36px;
    margin-left: 2%;
    text-align: left;
}

.panier-product-price {
    font-size: 30px;
    margin-left: 2%;
    text-align: left;
}

.panier-description {
    font-size: 28px;
    margin-left: 2%;
    text-align: left;
}

.btn-paypal {
    width: 50px
}

/* Panier */
/* Produit */
.product {
    margin-top: 6%;
    text-align: center;

}

.product-title {
    margin-left: 2%;
}

.product-content {
    position: relative;
    margin-left: 10%;
    width: 80%;
    min-height: 200px;
    text-align: center;
    border-radius: 15px;
    background-color: whitesmoke;
}

.product-name {
    vertical-align: top;
    display: inline-block;
    margin-inline: 50%;
    font-family: 'Jura';
    text-align: left;
    margin-top: 30px;
    margin-left: -1%;
    font-size: 22px;
    font-weight: 800;
}

.product-description {
    margin-top: 2%;
    margin-left: 2%;
    display: inline-block;
}

.product-prix {
    vertical-align: top;
    font-weight: 800;
    display: inline-block;
    font-size: 20px;
    font-family: 'Jura';
}

.product-details {
    position: absolute;
    margin-left: 13%;
    margin-top: 2%;
    left: 0;
    font-size: 20px;
    font-family: 'Jura';
}

.product-details-btn {
    position: absolute;
    margin-left: 8%;
    font-size: 20px;
    font-family: 'Jura';
    cursor: pointer;
}
.product-details-content{
    display: none;
    position: relative;
}
.product-details-icon {
    position: absolute;
    display: inline-block;
}
.details{
    position: relative;
    text-align: left;
    margin-top: 3%;
    left: 42%;
    font-weight: 800;
    font-family: 'Jura';
}
.li-product{
    font-family: 'Jura';
    position: relative;
    list-style: none;
    text-align: left;
    left: 42%;
    font-weight:500;
}



/* Commande*/
.form-commande {
    position: relative;
    top: 60px;
    text-align: center;
}

.label-commande {
    display: block;
}






/* Commande */
/* Maintenance */
.maintenance{
    margin-top: 15%;
    text-align: center;
    color: white;
    font-family: 'Jura';
}
.maintenance-title{
   font-weight: lighter;
}
.maintenance-text{
    font-size: 22px;
}
.maintenance-text2{
    font-size: 20px;
}
.maintenance-text3{
    font-size: 18px;
}