/* Imports */

    /* Rubik */@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
    /* Quicksand */@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
    /* Bebas Neue */@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* Fin des imports */

/* Table des couleurs */
    /* Texte / Noir principal : #111 */
    /* Second noir : #222 */
    /* Bleu principal (Bleu clair) : #bee2fb */
    /* Second bleu (intermédiaire) : #9fd3f8 */
    /* Troisième bleu (plus foncé) : #87c9f8 */
/* Fin de la table des couleurs */

/* Base */
*{
    list-style-type: none;
    text-decoration: none;
    color: #111;
    margin: 0;
    padding: 0;
    font-family: 'Rubik';
    scroll-behavior: smooth;
    box-sizing: border-box;
}
html{
    background-color: #f5f5f5;
    overflow-x: hidden;
}
/* Loader */
.loaderContainer{
    position: fixed;
    z-index: 6;
    height: 100vh;
    width: 100vw;
    top: 0;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}
.globalLoader{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Cercle */
.loader {
    animation: animate 3s linear infinite;
    clip: rect(0, 80px, 80px, 40px); 
    height: 80px;
    width: 80px;
  }
  @keyframes animate {
    0% { 
      transform: rotate(0deg)
    }
    100% { 
      transform: rotate(360deg)
    }
  }
  .loader:after {
    animation: animate2 3s ease-in-out infinite;
    clip: rect(0, 80px, 80px, 40px);
    content:'';
    border-radius: 50%; 
    height: 80px;
    width: 80px;
    position: absolute; 
  } 
  @keyframes animate2 {
    0% {
      box-shadow: inset #bee2fb 0 0 0 0.1em;
      transform: rotate(0deg);
    }
    50% {
      box-shadow: inset #9fd3f8 0 0 0 0.3em;
    }
    100% {
      box-shadow: inset #87c9f8 0 0 0 0.1em;
      transform: rotate(360deg);
    }
  }
/* Fin du cercle */
/* Texte */
.globalLoader h4{
    margin-top: 2vh;
    font-size: 1.8rem;
    font-family: 'Quicksand', 'Rubik', sans-serif;
    text-align: center;
    color: #f5f5f5;
}
.globalLoader h4 span{
    color: #bee2fb;
    font-size: 2.5rem;
}
.deux{
    color: #9fd3f8 !important;
    animation: deux 6s infinite linear;
}
.trois{
    color: #87c9f8 !important;
    animation: trois 6s infinite linear;
}
@keyframes deux {
    0%{
        opacity: 0%;
    }
    16.67%{
        opacity: 1%;
    }
    50%{
        opacity: 100%;
    }
    88.3%{
        opacity: 100%;
    }
    100%{
        opacity: 0%;
    }
}
@keyframes trois {
    0%{
        opacity: 0%;
    }
    33.3%{
        opacity: 1%;
    }
    50%{
        opacity: 100%;
    }
    66.67%{
        opacity: 100%;
    }
    100%{
        opacity: 0%;
    }
}
/* Fin du texte */
/* Fin du loader */
/* Fin de la base */

/* Bouton Permanent */
.btnContactFixed{
    position: fixed;
    bottom: 3vh;
    right: 3vh;
    z-index: 5;
    width: 10vh;
    height: 10vh;
}
.btnContactFixed img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    animation: shadow2 10s infinite;
}
@keyframes shadow2 {
    0%{
        box-shadow: none;
    }
    16.6%{
        box-shadow:0 0 0 0.5vh #bee2fb;
    }
    33.2%{
        box-shadow:0 0 0 0.5vh #bee2fb, 0 0 0 1vh #9fd3f8;
    }
    50%{
        box-shadow:0 0 0 0.5vh #bee2fb, 0 0 0 1vh #9fd3f8, 0 0 0 1.5vh #87c9f8;
    }
    66.6%{
        box-shadow:0 0 0 0.5vh #bee2fb, 0 0 0 1vh #9fd3f8;
    }
    83.2%{
        box-shadow:0 0 0 0.5vh #bee2fb;
    }
    100%{
        box-shadow: none;
    }
}
/* Fin du bouton permanent */

/* Srollbar */
body::-webkit-scrollbar {
    background-color: #f5f5f5;
    border-left: solid 1px transparent;
    width: 15px;
}
body::-webkit-scrollbar-track {
    position: relative;
}
body::-webkit-scrollbar-thumb {
    background: #bee2fb;
    border-top: solid 2px #f5f5f5;
    border-bottom: solid 2px #f5f5f5;
}
body::-webkit-scrollbar-thumb:hover{
    background-color: #87c9f8;
}
body::-webkit-scrollbar-button:single-button {
    display: block;
    border-style: solid;
    height: auto;
    width: auto;
}
body::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 0 8px 12px 8px;
    border-color: transparent transparent #87c9f8 transparent;
    transition: 0.3s all;
}
body::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #9fd3f8 transparent;
}
body::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 12px 8px 0 8px;
    border-color: #87c9f8 transparent transparent transparent;
    transition: 0.3s all;
}
body::-webkit-scrollbar-button:single-button:vertical:increment:hover {
    border-color: #9fd3f8 transparent transparent transparent;
}
/* Fin de la scrollbar */

/* Fin de la base */
/* Menu */
/* Base */
.navContainer{
    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: space-between;
    height: 12vh;
    align-items: center;
    background-color: #bee2fb;
    position: fixed;
    top: 0;
    z-index: 15;
    box-shadow: 0px 5px 5px #1111113c;
}
.menuH{
    position: absolute;
    left: 3vw;
    display: none;
    transition: 1.35s all;
    width: 50px;
    cursor: pointer;
}
.rotateIcon{
    will-change: transform;
    transform: rotate(450deg);

}
/* Fin de la base */
/* Logo */
.navLogoContainer{
    display: flex;
    align-items: center;
}
.navLogo{
    width: 11vh;
    height: 11vh;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 2vw;
}
/* Fin du logo */
/* Liste */
.navList{
    display: flex;
}
.navList1,
.navList2,
.navList3,
.navList4,
.accLink{
    padding: 15px;
    margin-right: 1.5vw;
    font-size: 1.2em;
    transition: 0.5s all;
    align-items: center;
    border-radius: 15px;
}
.navList1,
.navList2,
.navList3,
.navList4,
.accLink{
    text-align: center;
}
.navList1:hover,
.navList2:hover,
.navList3:hover,
.navList4:hover{
    background-color: #9fd3f8;
    text-decoration: underline #111;
}
.accLink{
    display: none !important;
}
/* Bouton Contact */
.btnContact{
    background-color: #9fd3f8;
    padding: 12px;
    margin-right: 1.5vw;
    font-size: 1.2em;
    transition: 0.5s all;
    align-items: center;
    border-radius: 50px;
    border: solid 3px #9fd3f8;
}
.btnContact:hover{
    box-shadow: -5px 5px #87c9f8;
    background: transparent;
}
/* Fin du bouton contact */
/* Fin de la liste */

@media screen and (max-width: 1040px) {
    .navContainer{
        flex-direction: row-reverse;
    }
    .navLogo{
        margin-left: 0vw;
        margin-right: 3vw;
    }
    .navList {
        z-index: 3;
        position: fixed;
        display: flex;
        background-color: #f5f5f538;
        backdrop-filter: blur(10px);
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        margin-left: -100vw;
        transition: all 1.0s cubic-bezier(0.34, 0.6, 0.45, 0.94);
        flex-direction: column;
        align-items: center;
    }
    .navList.mobile-menu{
        margin-left: 0vw !important;
    }
    .navList.marginTog{
        margin-left: 0vw !important;
    }
    .navList1,
    .navList2,
    .navList3,
    .navList4,
    .accLink{
        background-color: #f5f5f59f;
        min-height: 10vh;
        min-width: 40vw;
        max-width: 90% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 3px #87c9f8;
    }
    .navList1,
    .navList2,
    .navList3,
    .navList4
    .accLink,
    .navList a{
        font-size: 1.2em;
        font-weight: 700;
        margin: 2vh 0px;
        color: #222;
        font-family: 'Quicksand', 'Rubik', 'Bebas Neue', sans-serif;
    }
    .menuH{
        display: block;
        z-index: 3;
    }
    .btnContactFixed{
        display: none;
    }
    .accLink{
        display: flex !important;
    }
    .navList a:hover{
        background-color: #f5f5f5e9;
        text-decoration: none; 
    }
    .navList1:hover,
    .navList2:hover,
    .navList3:hover,
    .navList4:hover,
    .accLink:hover{
        text-decoration: none;
    }
    .btnContact{
        background-color: #bee2fb !important;
        min-height: 10vh;
        min-width: 40vw;
        max-width: 90% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 3px #87c9f8;
        margin: 2vh 0px;
    }
    .btnContact:hover{
        box-shadow: none;
    }
    .navList4{
        margin-right: 0px;
    }
}
@media screen and (max-width:700px) {
    .navList li{
        min-width: 70%;
    }
}
@media screen and (max-width:450px) {
    .navList li{
        min-width: 90%;
        min-height: 15vh;
    }
}
/* Fin du menu */

/* Accueil */
/* Base */
.accContainer{
    margin-top: 12vh;
    height: 89vh;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #111111d8;
}
.fondAcc{
    width: 100vw;
    height: 101vh;
    object-fit: cover;
    opacity: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
/* Fin de la base */

/* Logo */
.accLogoContainer{
    animation: shadow 10s infinite;
    z-index: 1;
    background-color: #bee2fb66;
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 50%;
    transition: backdrop-filter 0.5s linear;
}
.accLogo{
    height: 55vh;
    width: 55vh;
    object-fit: cover;
    transform: translate(-50, -50);
}
.accLogoContainer:hover{
    backdrop-filter: blur(1px);
}
@keyframes shadow {
    0%{
        box-shadow: none;
    }
    16.6%{
        box-shadow:0 0 0 2vh #bee2fb;
    }
    33.2%{
        box-shadow:0 0 0 2vh #bee2fb, 0 0 0 4vh #9fd3f8;
    }
    50%{
        box-shadow:0 0 0 2vh #bee2fb, 0 0 0 4vh #9fd3f8, 0 0 0 6vh #87c9f8;
    }
    66.6%{
        box-shadow:0 0 0 2vh #bee2fb, 0 0 0 4vh #9fd3f8;
    }
    83.2%{
        box-shadow:0 0 0 2vh #bee2fb;
    }
    100%{
        box-shadow: none;
    }
}
/* Fin du logo */

/* RESPONSIVE */
@media screen and (max-width: 1040px) {
    .presAcc,
    .accLogo{
        position: initial;
        z-index: 2;
    }
    .presAcc,
    .contAcc{
        position: initial;
        margin-top: 5vh;
    }
    .contAcc{
        margin-bottom: 2vh;
    }
}
@media screen and (max-width: 474px) {
    .accLogo{
        width: 45vh;
        height: 45vh;
    }
}
@media screen and (max-width: 399px) {
    .accLogo{
        width: 35vh;
        height: 35vh;
    }
}
/* FIN DU RESPONSIVE */
/* Fin de l'accueil */

/* Présentation */
/* Base */
.presContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #222;
}
/* Fin de la base */
/* Titre */
.titlePres{
    font-size: 2em;
    margin-top: 2vh;
    font-family: 'Quicksand', 'Rubik', sans-serif;
    color: #f5f5f5;
}
/* Fin du titre */
/* Nombres */
/* Base */
.numbersContainer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    animation: 200ms opacity ease-out;
    padding: 5vh 0vw;
}
.numbers{
    width: 20vw;
}
/* Fin de la base */
/* Chiffres */
.numberA{
    font-size: 5em;
    transition: 0.3s all;
    font-family: 'Rubik', 'Quicksand', sans-serif;
    text-shadow: 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5, 0 0 3px #f5f5f5;
    
}
.numbers h3{
    color: #f5f5f5;
    font-weight: 100;
}
.numberA:hover{
    text-shadow: -5px -5px #87c9f8, 5px 5px #f5f5f5;
    animation: numbers 0.3s;
}
@keyframes numbers {
    0%{
        text-shadow: -5px -5px #87c9f8, 5px 5px #f5f5f5;
    }
    50%{
        text-shadow: -15px -15px #87c9f8, 15px 15px #f5f5f5;
    }
    100%{
        text-shadow: -5px -5px #87c9f8, 5px 5px #f5f5f5;
    }
}
/* Fin des chiffres */
/* Fin des nombres */

/* RESPONSIVE */
@media screen and (max-width: 575px) {
    .presContainer{
        background: linear-gradient(45deg, #111, #666);
        background-size: 400% 400%;
        animation: bgkMove 5s infinite;
    }
    .numbersContainer{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .numbers{
        text-align: center;
        width: auto;
    }
    .number44,
    .numberOther{
        margin-top: 5vh;
    }
}
@keyframes bgkMove {
    0%{
        background-position: 0% 20% ;
    }
    50%{
        background-position: 100% 72%;
    }
    100%{
        background-position: 0% 20% ;
    }
}
/* FIN DU RESPONSIVE */
/* Fin de la présentation */


/* Préstations */

.prestaTitle{
    text-align: center;
    font-family: 'Quicksand';
    font-size: 2.5rem;
    text-decoration: underline;
    text-decoration-color: #87c9f8;
    text-decoration-thickness: 3px;
    margin-top: 10vh;
}

/* Images */
.imgPresta{
    height: 500px;
    width: 350px;
    border-radius: 5px;
    object-fit: cover;
    transition: 0.5s all;
    will-change: transform;
    cursor: default;
}
.card:hover .imgPresta{
    transform: scale(1.1) rotate(-1deg);
    opacity: 80%;
}
/* Fin des images */
.prestaContainer{
    display: grid;
    grid-template-columns: repeat(auto-fit, 350px);
    justify-content: space-around;
    align-items: center;
    height: auto;
    padding: 10vh 0vw;
}
.card{
    margin-top: 4vh;
    height: 500px;
    box-shadow: 5px 5px 20px #111;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.card:hover{
    cursor: default;
}
.intro{
    height: 70px;
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
    position: absolute;
    background-color: #111111c9;
    display: flex;
    bottom:0px;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    transition: 1s all;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.card:hover .intro{
    height: 50vh;
    background-color: #111;
}
.intro p{
    color: #f5f5f5;
    text-align: center;
    margin-top: 5vh;
}
.intro p{
    display: none;
}
.card:hover .intro p{
    display: block;
}
.intro h1{
    color: #87c9f8;
    text-align: end !important;
    text-decoration: none;
    width: 100%;
    padding-right: 2vw;
    font-size: 1.4rem;

}
.intro h1 span{
    color: #f5f5f5;
    text-decoration: underline ;
    text-decoration-color: #87c9f8 !important;
}

.secondSpan{
    text-decoration: none !important;
    color: #87c9f8 !important;
}

/* Bouton voir plus */
.buttonRedirect{
    background-color: #87c9f8;
    color: #f5f5f5;
    padding: 1vh 2vw;
    border-radius: 50px;
    position: absolute;
    bottom: -10vw;
    right: 1vw;
    border: solid 3px #f5f5f5;
    transition: 0.7s all linear;
    cursor: pointer;
}
.card:hover .buttonRedirect{
    bottom: 1vw;
}
.buttonRedirect i{
    color: #f5f5f5;
    transition: 0.7s all linear;
}

.buttonRedirect:hover{
    color: #87c9f8;
    background-color: transparent;
    border-color: #87c9f8;
}
.buttonRedirect:hover i{
    color: #87c9f8;
}
/* Fin du bouton voir plus */

/* Bouton Contact */
.btnContactPresta{
    display: block;
    background-color: #9fd3f8;
    padding: 2vh 0vw;
    font-size: 1.5rem;
    text-decoration: underline transparent;
    text-decoration-thickness: 3px;
    font-weight: 900;
    font-family: 'Quicksand', 'Rubik', sans-serif;
    width: 100%;
    text-align: center;
    transition: 0.5s all;
}
.btnContactPresta:hover{
    background-color: #87c9f8;
    text-decoration-color: #111;
    font-weight: 900;
}
/* Fin du bouton contact */

/* RESPONSIVE */
@media screen and (max-width: 699px) {
    .card{
        margin-bottom: 5vh;
    }
}
@media screen and (max-width: 350px) {
    .prestaContainer{
        grid-template-columns: repeat(auto-fill, 250px);
    }
}
/* FIN DU RESPONSIVE */
/* Fin des prestations */



/* Avis */

/* Base */
.avisContainer{
    background-color: #222;
    min-height: 89vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding-bottom: 3.5vh;
}
/* Fin de la base */


/* Partie titre */
.partAvisTitle{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Titre */
.partAvisTitle h1{
    color: #f5f5f5;
    text-decoration: underline 3px #edc531;
    font-size: 2rem;
    font-family: 'Quicksand', 'Rubik', sans-serif;
    margin: 0vh 2vw;
    text-align: center;
}
/* Fin du titre */
/* Étoiles */
.avisChildStars{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
}
.stars{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 445px){
    .avisChildStars{
        display: none !important;
    }
}
/* Fin des étoiles */
/* Fin de la partie avis */


/* Exemples */
.exempleAvis{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 100%;
   min-height: 50vh;
   position: relative;
}
/* Boites */
/* Base */
.exempleContainer{
    position: absolute;
    background-color: #f5f5f5;
    border: solid 2px #9fd3f8;
    border-radius: 10px;
    padding: 0px 5px;
    box-shadow: 10px 10px 0.5px #111;
    min-height: 40vh;
    height: auto;
    transition: 0.3s all;
    width: 50vw;
    z-index: 0;
}
.exempleContainer:hover{
    box-shadow: 10px 10px 1px #bee2fb;
    transform: scale(1.05);
}
.ex1{
    animation: ex1 100s infinite linear;
}
@keyframes ex1 {
    0%{
        z-index: 10;
        opacity: 100%;
    }
    7%{
        z-index: 0;
        opacity: 100%;
    }
    10%{
        z-index: 0;
        opacity: 0%;
    }
    97%{
        opacity: 0%;
        z-index: 0;
    }
    100%{
        z-index: 10;
        opacity: 100%;
    }
}
.ex2{
    animation: ex2 100s infinite linear;
}
@keyframes ex2 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    7%{
        opacity: 0%;
    }
    10%{
        z-index: 10;
        opacity: 100%;
    }
    17%{
        z-index: 10;
        opacity: 100%;
    }
    20%{
        z-index: 0;
        opacity: 0%;
    }
    100%{
        opacity: 0%;
    }
}
.ex3{
    animation: ex3 100s infinite linear;
}
@keyframes ex3 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    17%{
        opacity: 0%;
    }
    20%{
        z-index: 10;
        opacity: 100%;
    }
    27%{
        opacity: 100%;
        z-index: 10;
    }
    30%{
        opacity: 0%;
        z-index: 0;
    }
    100%{
        opacity: 0%;
    }
}
.ex4{
    animation: ex4 100s infinite linear;
}
@keyframes ex4 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    27%{
        opacity: 0%;
    }
    30%{
        z-index: 10;
        opacity: 100%;
    }
    37%{
        z-index: 10;
        opacity: 100%;
    }
    40%{
        z-index: 0;
        opacity: 0%;
    }
    100%{
        opacity: 0%;
    }
}
.ex5{
    animation: ex5 100s infinite linear;
}
@keyframes ex5 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    37%{
        opacity: 0%;
    }
    40%{
        z-index: 10;
        opacity: 100%;
    }
    47%{
        z-index: 10;
        opacity: 100%;
    }
    50%{
        z-index: 0;
        opacity: 0%;
    }
    100%{
        opacity: 0%;
    }
}
.ex6{
    animation: ex6 100s infinite linear;
}
@keyframes ex6 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    47%{
        opacity: 0%;
    }
    50%{
        z-index: 10;
        opacity: 100%;
    }
    57%{
        z-index: 10;
        opacity: 100%;
    }
    60%{
        z-index: 0;
        opacity: 0%;
    }
    100%{
        opacity: 0%;
    }
}
.ex7{
    animation: ex7 100s infinite linear;
}
@keyframes ex7 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    57%{
        opacity: 0%;
    }
    60%{
        z-index: 10;
        opacity: 100%;
    }
    67%{
        z-index: 10;
        opacity: 100%;
    }
    70%{
        z-index: 0;
        opacity: 0%;
    }
    100%{
        opacity: 0%;
    }
}
.ex8{
    animation: ex8 100s infinite linear;
}
@keyframes ex8 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    67%{
        opacity: 0%;
    }
    70%{
        z-index: 10;
        opacity: 100%;
    }
    77%{
        z-index: 10;
        opacity: 100%;
    }
    80%{
        z-index: 0;
        opacity: 0%;
    }
    100%{
        opacity: 0%;
    }
}
.ex9{
    animation: ex9 100s infinite linear;
}
@keyframes ex9 {
    0%{
        opacity: 0%;
        z-index: 0;
    }
    77%{
        opacity: 0%;
    }
    80%{
        opacity: 100%;
        z-index: 10;
    }
    87%{
        z-index: 10;
        opacity: 100%;
    }
    90%{
        z-index: 0;
        opacity: 0%;
    }
    100%{
        opacity: 0%;
    }
}
.ex10{
    animation: ex10 100s infinite linear;
}
@keyframes ex10 {
    0%{
        z-index: 0;
        opacity: 0%;
    }
    87%{
        opacity: 0%;
    }
    90%{
        z-index: 10;
        opacity: 100%;
    }
    97%{
        z-index: 10;
        opacity: 100%;
    }
    100%{
        z-index: 0;
        opacity: 0%;
    }

}
/* Fin de la base */
/* Textes */
.nameAvis{
    font-family: 'Quicksand';
    text-align: end;
    margin-right: 1vw;
    margin-top: 2vh;
    margin-bottom: 3vh;
    font-size: 1.4em;
    width: 100%;
}
.pAvis{
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 5px;
    font-size: 1.15rem;
}
.guillemets{
    font-family: 'Quicksand';
    color: #87c9f8;
}
.dateAvis{
    text-align: end;
    font-size: 1.1em;
    font-weight: 500;
    font-family: 'Quicksand';
    width: 100%;
}
/* Fin des textes */
/* Fin des boites */
/* Fin des exemples */

/* Moyenne */
.moyAvisContainer{
    background-color: #f5f5f5;
    border-radius: 10px;
    text-align: center;
    padding: 0.5%;
}
.moyAvis{
    color: #edc531;
    font-size: 2.5em;
}
.moyAvisLegend{
    font-size: 0.7em;
}
.allAvis{
    font-size: 0.85em;
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 10px;
    transition: 0.4s all;
}
.allAvis:hover{
    background-color: #bee2fb;
    text-decoration: underline;
}
/* Fin de la moyenne */

/* RESPONSIVE */
@media screen and (max-width:450px) {
    .pAvis{
        font-size: 0.7rem;
    }
}
@media screen and (max-width:1200px) {
    .pAvis{
        font-size: 1rem;
    }
    .exempleContainer{
        min-width: 80vw;
    }
    .stars{
        margin: 0px;
    }
    .avisContainer{
        justify-content: space-around;
    }
}
/* FIN DU REPONSIVE */
/* Fin des avis*/

/* Footer */
/* Base */
.footerContainer{
    background-color: #111;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    min-height: 30vh;
    height: auto;
    padding: 5vh 2vw;
}
.footerContainer section{
    background-color: #f5f5f5;
    min-height: 25vh;
    height: auto;
    min-width: 25vw;
    width: auto;
    padding: 2vh 2vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items:center;
    text-align: center;
    border-radius: 20px;
}
/* Fin de la base */
/* Titres */
.titleFooter{
    font-family: 'Quicksand', 'Rubik', sans-serif ;
}
/* Fin des titres */
/* Bouton Contact */
.btnContactFooter{
    margin-top: 4vh;
}
.btnContactFooter a{
    background-color: #87c9f8;
    padding: 1vh 2vw;
    border-radius: 18px;
    font-size: 1.2rem;
    transition: 0.5s all;
}
.btnContactFooter a:hover{
    box-shadow: 6px 6px #222;
}
/* Fin du bouton contact */
/* ML */
.legalBtn{
    margin-top: 1vh;
    font-size: 0.7em;
    text-decoration: underline 1px #bee2fb;
}
/* Fin de ML */
/* RESPONSIVE */
@media screen and (max-width: 540px) {
    .footerContainer{
        flex-direction: column;
    }
    .footerContainer section{
        margin-top: 2vh;
        min-width: 70vw;
    }
}
@media screen and (max-width: 440px) {
    .footerContainer section{
        min-width: 90vw;
    }
}
/* FIN DU RESPONSIVE */
/* Fin du footer */