@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap');

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 auto;
    background: url("/images/background.jpg");
    background-attachment: fixed;
    /*
    background: url("https://applemagazine.com/wp-content/uploads/2020/09/AppleMagazine-iPad-Air-Wallpaper-2020-4.png");
    https://i.pinimg.com/564x/7b/ba/94/7bba9438553554af7ffdd005974016bc.jpg
    */
    background-size: 100%;
    font-family: 'Rubik', sans-serif;
}

header{
    margin: 0 auto;
    height: 85px;
    width: 835px;
    display: flex;
    justify-content: center;
    border-radius: 100px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    /*
    background-color: rgba(255,255,255,.3);
    */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.ref{
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(40px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.ref img{
    width: 20%;
}

header nav{
    position: absolute;
    right: 9px;
    top: 16px;

}

header nav ul li{
    list-style: none;
    justify-content: center;
    display: inline;
    padding: 25px;
}

header nav ul li a{
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    transition: 0.6s;
    position: relative;
    border-radius: 30px;
}

header nav ul li a:hover{
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

nav .current a{
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

main{
    font-family: 'Poppins', sans-serif;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 1080px;
    margin: 0 auto;
}

main h1{
    display: flex;
    justify-content: center;
    color: white;
    font-size: 75px;
    animation: slide 1s forwards;
}

@keyframes slide{
    0%{
        translate: -400px;
    }
    100%{

    }
}

.titre h1{
    font-size: 130px;
    display: flex;
    justify-self: center;
    color: white;
    opacity: 70%;
    animation: slide 1s forwards;
    position: relative;
    top: -70px;
}

.titre h1:hover{
    scale: 1.05;
    cursor: pointer;
}

h1:hover{
    cursor: pointer;
}

.textedonnees{
    display: flex;
    justify-content: center;
}

.tableau{
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    /*
    background-color: rgba(255,255,255,.3);
    */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    color: white;
}

.tableau th .tableau td{
    background-color: black;
}

.titre{
    background-image: url(/images/echecs.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    padding: 100px;
    border-radius: 20px;
    height: 220px;
    margin-bottom: 40px;
}

main p{
    color: white;
}

#formulaire{
    width: 1080px;
    padding: 10px;
}

#formulaire form{
    width: 300px;
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    /*
    background-color: rgba(255,255,255,.3);
    */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

#en-tete{
    display: flex;
    flex-direction: row;
}

.float{
    float: left;
    padding: 5px;
}

label{
    display: block;
    text-transform: uppercase;
    color: white;
}

input{
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
    padding: 8px;
    border: none;
}

textarea{
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
}

#envoyer input{
    background-color: aquamarine;
    border-radius: 5px;
    border: none;
    padding: 10px;
}

#envoyer input:hover{
    background-color: rgb(115, 234, 195);
}

.texte{
    padding: 10px;
}

footer{
    margin: 0 auto;
    width: 1080px;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 20px;
}

footer p{
    color: white;
}

#imagesgalerie {
    width: 1080px;
}

#imagesgalerie img{
    max-height: 200px;
    margin: 10px;
    border-radius: 10px;
}

#imagesgalerie img:hover{
    filter: grayscale(100%);
    cursor: pointer;
    scale: 1.05;
}

footer a{
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    position: relative;
    left: 50px;
}

footer a:hover{
    position: relative;
    bottom: 3px;
}

.contenu{
    margin-bottom: 25px;
}

.information{
    display: flex;
    justify-content: left;
    margin-top: 10px;
}

input#information{
    width: auto;
}

.devis{
    display: flex;
    justify-content: left;
    margin-top: 10px;
}

input#devis{
    width: auto;
}

.reclamation{
    display: flex;
    justify-content: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

input#reclamation{
    width: auto;
}



.partenaires2{
    display: flex;
    justify-content: center;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(40px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    margin-bottom: 100px;
}

.partenaires2 img{
    border-radius: 10px;
    margin-right: 20px;
    width: 60%;
}

.partenaires2 img:hover{
    scale: 1.05;
    cursor: pointer;
}

.textepartenaires2{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    border: 1px;
}

/*partenaires*/

h2{
    color: white;
}

.h3{
    width: 850px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.partenaires{
    display: flex;
    justify-content: center;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(40px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    margin-bottom: 100px;
}

.partenaires img{
    border-radius: 10px;
    margin-right: 20px;
    width: 1000px;
    width: 25%;
}

.partenaires img:hover{
    scale: 1.05;
    cursor: pointer;
}

.textepartenaires{
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    border: 1px;
}

.textepartenaires h2{
    margin: 0;
    color: black;
}

.textepartenaires h3{
    color: rgb(192, 190, 190);
    margin-top: 0;
}

.textepartenaires p{
    color: white;
}

.textepartenaires a{
    text-decoration: none;
    background-color: black;
    width: 109px;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    justify-self: end;
    align-self: flex-end;
}

.textepartenaires a:hover{
    background-color: white;
    color: black;
}

.textepartenaires a:hover{
    scale: 1.05;
}

.textepartenaires a:active{
    scale: 0.95;
}

.documents{
    display: flex;
    justify-content: space-evenly;
}

.documents a{
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
}

.documents a:hover{
    position: relative;
    top: -5px;
}

.ref a{
    color: black;
}

.site1{
    margin-top: 50px;
}

.site2{
    margin-top: 120px;
}

.site3{
    margin-top: 120px;
}

/*
#tableau th, #tableau td {
    border: 1px solid #ddd;
    border-radius: 2px;
}



