/* Menu */
.navContainer{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: fixed;
    top: 10vh;
    background-color: #d7e6ef;
    backdrop-filter: blur(10px);
    left: 10%;
    padding: 1vh 0vw;
    border-radius: 50px;
    align-items: center;
    z-index: 5;
    box-shadow: 0 0 8px #f5f5f5;
}
.navContainer ul{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 30vw;
}
.ulLeft{
    margin-right: calc(17vw/2);
}
.ulRight{
    margin-left: calc(17vw/2);
}
.logoTypoBurger,
.logoTypo{
    position: absolute;
    padding: 2vh 0vw;
    width: 17vw;
    text-align: center;
    background-color: var(--bm);
    border-radius: 50px;
    box-shadow: 0 0 8px #D7E6EF;
}
.logoTypoBurger h2 a,
.logoTypo h2 a{
    color: var(--blanc);
    font-family: "Jost", "Oswald", sans-serif;
    font-weight: 400;
}

/* Menu burger */
.logoTypoBurger{
    display: none;
    position: initial !important;
}
.menuBurgerContainer{
    position: fixed;
    top: 2svh;
    left: 2vw;
    display: none;
    z-index: 11;
}
.navContainerT{
    top: 0px !important;
    left: 0px !important;
}
@media screen and (max-width: 1000px) {
    .menuBurgerContainer{
        display: block;
    }
    .navContainer{
        position: fixed;
        top: -100%;
        left: -100%;
        border-radius: 0px;
        width: 100%;
        height: 100%;
        background-color: #d7e6ef58;
        backdrop-filter: blur(10px);
        box-shadow: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: top 0.5s ease-out, left 0.5s ease-out;
    }
    .logoTypo{
        display: none;
    }
    .logoTypoBurger{
        display: block;
        width: 70vw;
        box-shadow: 0px 0px 0px;
        font-size: 20px;
    }
    .navContainer ul{
        margin: 0px;
        flex-direction: column;
        background-color: #289dd825;
        width: 70vw;
        justify-content: center;
        align-items: center;
    }
    .ulLeft{
        border-radius: 50px 50px 0px 0px;
        margin-top: 10svh !important;
        padding: 50px;
        padding-bottom: 0px;
        gap: 50px;
    }
    .ulRight{
        padding: 50px;
        padding-top: 50px;
        border-radius: 0px 0px 50px 50px;
        gap: 50px;
    }
    .navContainer ul li{
        font-size: 24px;
        width: 90%;
        text-align: center;
        background-color: var(--bcf);
        padding: 20px 0px;
        border-radius: 50px;
    }
}
/* Fond */
.menuBurgerFond{
    animation: tBRotateMenu 5s infinite linear;
    z-index: 10;
    position: absolute;
}
/* Fin du fond */
/* Barres */
.menuBurgerBarres{
    z-index: 11;
    position: absolute;
    display: flex;
    flex-direction: center;
    align-items: center;
}
.barresM{
    transition: transform 0.5s linear, opacity 0.5s linear;
}
/* Toggle */
.midBT{
    opacity: 0%;
}
.basBT{
    rotate: 315deg;
    transform: translateX(-50%) translateY(3%);
}
.hautBT{
    rotate: 45deg;
    transform: translateX(20%) translateY(-30%);
}
/* Fin des toggles */
/* Fin des barres */
/* Fin du menu burger */
/* Fin du menu */

/* Accueil */
/* Base */
.accContainer{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position:relative;
}
/* Fin de la base */
/* hForU */
.hForU{
    color: var(--bm);
    text-align: center;
    font-size: 3rem;
    z-index: 0;
    font-family: "Jost", "Oswald", sans-serif;
    font-weight: 300;
    mix-blend-mode: multiply;
}
.hForU span{
    color: var(--bc);
    font-family: "Jost", "Oswald", sans-serif;
    font-weight: 300;
}
/* Fin de hForU */

/* Triples bulles */
.tBAcc{
    position: absolute;
    top: -200px;
    left: -250px;
    width: 700px;
    z-index: -1;
    animation: tBRotate 5s infinite linear;
    will-change: transform;
}
.iconTB1{
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(700px / 3.5);
}
.tBAccServ{
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    animation: tBRotate 5s infinite linear;
    z-index: 1;
    will-change: transform;
    overflow:hidden !important;
}
.iconTB2{
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: calc(600px / 2.5);
    z-index: 2;
}
/* Fin des triples bulles */
/* Lien */
.linkAcc{
    background-color: var(--bm);
    color: var(--blanc);
    padding: 1vh 3vw;
    font-size: 2rem;
    border-radius: 50px;
    margin-top: 3vh;
    transition: background-color 0.2s linear, box-shadow 0.5s linear, color 0.2s linear;
    z-index: 2;
}
.linkAcc:hover{
    background-color: transparent;
    box-shadow: 10px 10px #289dd8a5, -10px -10px #289dd8a8, -15px 10px #233f8edb, 15px -10px #233f8ed4;
    color: var(--bm);
}
/* Fin du lien */

/* RESPONSIVE */
@media screen and (max-width: 800px) {
    .hForU{
        font-size: 42px;
    }
    .linkAcc{
        font-size: 24px;
        padding: 1.5vh 5vw;
    }
    .tBAcc{
        left: -300px;
        top: -300px;
    }
    .tBAccServ{
        right: -250px;
        bottom: -250px;
    }
    .iconTB2{
        bottom: -20px;
        right: -20px;
        width: calc(600px / 3);
    }
    .iconTB1{
        top: -10px;
        left: -10px;
        width: calc(700px / 4);
    }
}
@media screen and (max-width: 500px) {
    .hForU{
        font-size: 36px;
    }
    .linkAcc{
        font-size: 20px;
        letter-spacing: 1px;
    }
    .tBAcc{
        left: -100px;
        top: -100px;
        width: 350px;
        height: 350px;
    }
    .tBAccServ{
        width: 350px;
        height: 350px;
        right: -120px;
        bottom: -150px;
    }
    .iconTB2{
        bottom: -10px;
        right: 20px;
        width: calc(600px / 4);
    }
    .iconTB1{
        top: 10px;
        left: 10px;
        width: calc(700px / 4);
    }
}
/* FIN DU RESPONSIVE */
/* Fin de l'accueil */

/* Services */
.sCC{
    border-radius: 100px 100px 0px 100px;
    background-color: var(--bc);
}
@media screen and (max-width: 1071px) {
    .sCC{
        background-color: #9fc6e6;
    }
}
@media screen and (max-width: 929px) {
    .sCC{
        background-color: transparent;
    }
}
.servContainer{
    min-height: 120vh;
    width: 100%;
    background: linear-gradient(45deg, var(--bm), #255FA7, var(--bc));
    background-size: 200% 200%;
    border-radius: 100px;
    animation: bgkServ 10s infinite linear;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media screen and (max-width: 911px) {
    .servContainer{
        padding: 10svh 0vw;
    }
}
.servicesContainer{
    z-index: 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    gap: 20px;
}
/* Titre */
.servContainer h2{
    color: var(--blanc);
    font-family: "Jost", "Oswald", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 5vh;
    text-align: center;
    z-index: 3;
}
/* Fin du titre */

/* Service */
.service{
    position: initial;
    background-color: var(--blanc);
    width:  450px;
    min-height: 40svh;
    border-radius: 40px;
    border: solid 5px var(--bc);
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    animation: borderC linear infinite 10s;
}
@keyframes borderC {
    0%{
        border-color: var(--bc);
    }
    25%{
        border-color: var(--bc);
    }
    35%{
        border-color: var(--bm);
    }
    65%{
        border-color: var(--bm);
    }
    75%{
        border-color: var(--bc);
    }
    100%{
        border-color: var(--bc);
    }
}
.servTitle{
    font-size: 1.5rem;
    text-align: center;
}
.pOne{
    text-align:justify;
}
/* Bouton */
.servButtonContainer{
    width: 100%;
    display: flex;
    justify-content: end;
}
.servButton{
    border-radius: 50px;
    padding: 1vh 3vw;
    background-color: var(--bm);
    box-sizing: content-box;
    color: var(--blanc);
    border: none;
    font-size: 1rem;
    transition: background-color 0.5s linear, box-shadow 0.5s linear, color 0.5s linear;
}
.linkCo:hover,
.servButton:hover{
    background-color: var(--blanc);
    box-shadow: 10px 10px #289dd8a5, -10px -10px #289dd8a8, -15px 10px #233f8edb, 15px -10px #233f8ed4;
    color: var(--bm);
}
/* Fin du bouton */
/* Fin d'un service */
/* Triple bulle */
.tBS{
    position: absolute;
    bottom: -200px;
    left: -250px;
    width: 600px;
    animation: tBRotate 5s infinite linear;
    will-change: transform;
}
/* Fin de la triple bulle */
@media screen and (max-width: 400px) {
    .tBS{
        width: 350px;
        height: 350px;
        left: -150px;
        bottom: -100px;
    }
}
@media screen and (max-width: 500px) {
    .servicesContainer{
        gap: 40px;
    }
    .service{
        width: 350px;
    }
}
@media screen and (max-width: 400px) {
    .service{
        width: 300px;
    }
    .pOne{
        margin: 5svh 0vw;
    }
    .servButtonContainer{
        justify-content: center;
    }
    .servButton{
        padding: 1vh 15vw;
    }
}
/* Fin des services */

/* Avis */
.avisContainer{
    min-height: 100svh;
    background: url(/images/apHRwhite.svg) no-repeat;
    background-position: 0% 0%;
    background-size: cover;
    background-clip:border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 3rem;
}
.avis{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}
/* Titre */
.avisTitle{
    color: var(--bm);
    font-family: "Jost", "Oswald", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 10vh;
    text-align: center;
    mix-blend-mode: multiply;
    z-index: 4;
}
/* Fin de la triple bulle */
@media screen and (max-width: 400px) {
    .avisTitle{
        margin-top: 10svh;
    }
}
/* Fin titre */
/* Avis Item */
.avisItems{
    width: 450px;
    background-color: var(--bcf);
    min-height: 30vh;
    border-radius: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding: 3vh 3vw;
    box-sizing: border-box;
    z-index: 2;
}
.avisItems p{
    color: var(--bm);
}
/* Partie titre */
.titleAvis{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.titleAvis h4{
    line-height: 10px;
}
.titleAvis h4:last-child{
    color: var(--ja);
    margin-left: 0.5vw;
}
.titleAvis h4:first-child{
    font-size: 22px;
    font-family: "Jost", "Comfortaa", sans-serif;
    font-weight: 400;
    color: var(--bm);
}
/* Fin du titre */
/* Fin de avis item */

/* Liens */
.linksContainer{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10svh;
}
.linksAvis{
    margin: 0vh 5svw;
    width: 300px;
    text-align: center;
    padding: 1svh 0vw;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: "Jost", "Comfortaa", sans-serif;
    letter-spacing: 2px;
    box-sizing: content-box;
    border: solid 5px var(--bm);
    font-size: 18px;
}
.linkCo{
    background-color: var(--bm);
    color: var(--blanc);
    transition: box-shadow 0.5s linear, border-color 0s linear, color 0.5s linear, background-color 0.5s linear;
}
.linkAv{
    color: var(--bm);
    transition: color 0.2s linear, border-color 0.2s linear;
}
.linkAv:hover{
    color: #255FA7;
    border-color: #255FA7;
}
.linkCo:hover{
    border-color: transparent;
}
/* Fin des liens */

/* RESPONSIVE */
@media screen and (max-width: 1450px) {
    .avisContainer{
        padding-bottom: 6rem;
    }
}
@media screen and (max-width: 950px) {
    .avisContainer{
        padding-bottom: 9rem;
    }
}
@media screen and (max-width: 680px) {
    .linksContainer{
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 20vh;
    }
    .linksAvis{
        width: 70%;
    }
}
@media screen and (max-width: 500px) {
    .avisItems{
        width: 350px;
        padding: 5svh 20px;
    }
}
@media screen and (max-width: 400px) {
    .avisItems{
        width: 250px;
    }
    .titleAvis{
        flex-direction: column;
        height: 5svh;
        justify-content: space-evenly;
    }
    .avisItems p{
        margin-top: 2svh;
    }
}
@media screen and (max-width: 301px) {
    .linksAvis{
        width: 90% !important;
    }
}
/* FIN DU RESPONSIVE */
/* Fin des avis */

/* Gallerie */
.gallerieContainer{
    background-color: var(--bc);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top-right-radius: 75px;
    padding-top: 40px;
    padding-bottom: 40px;
}
@media screen and (max-width: 770px){
    .gallerieContainer{
        border-top-right-radius: 0px;
    }
}
/* Petites images */
.pIContainer{
    display: grid;
    grid-template-columns: repeat(auto-fit, 45%);
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 40px;
}
@media screen and (max-width: 620px) {
    .pIContainer{
        grid-template-columns: repeat(auto-fit, 90%);
        gap: 35px;
    }
    .imageServLink{
        width: 50%;
        padding: 1svh 3vw;
        font-size: 16px;
    }
    .imageTitle{
        font-size: 48px !important;
    }
}

.imageContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50px;
    height: 400px;
    width: 100%;
    box-sizing: border-box;
}
.image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    z-index: 0;
    filter: grayscale(0.4);
    transition: filter 0.2s linear;
}
.imageContainer:hover .image{
    filter: grayscale(100%) blur(10px);
}
.imageContainer:hover  .imageServLink,
.imageContainer:hover  .imageTitle{
    opacity: 100%;
}
/* Textes */
.imageServLink,
.imageTitle{
    z-index: 2;
    opacity: 0%;
    transition: opacity 0.5s linear;
}
.imageTitle{
    color: var(--bm);
    font-family: "Jost", "Oswald", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    text-align: center;
}
.imageServLink{
    margin-top: 5svh;
    width: 300px;
    text-align: center;
    padding: 1svh 0vw;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: "Jost", "Comfortaa", sans-serif;
    letter-spacing: 2px;
    box-sizing: content-box;
    border: solid 5px var(--bm);
    font-size: 18px;
    background-color: var(--bm);
    color: var(--blanc);
    transition: box-shadow 0.5s linear, border-color 0s linear, color 0.5s linear, background-color 0.5s linear;
}
.imageServLink:hover{
    background-color: var(--blanc);
    box-shadow: 10px 10px #289dd8a5, -10px -10px #289dd8a8, -15px 10px #233f8edb, 15px -10px #233f8ed4;
    color: var(--bm);
    border-color: transparent;
}
@media screen and (max-width: 800px) {
    .imageServLink{
        width: 50%;
        padding: 1svh 3vw;
        font-size: 14px;
    }
    .imageTitle{
        font-size: 32px;
        font-weight: 400;
    }
}
@media screen and (max-width: 400px) {
    .imageServLink{
        width: 70%;
        padding: 1svh 3vw;
        font-size: 16px;
    }
    .imageTitle{
        font-size: 2rem !important;
        font-weight: 300;
    }
}
/* Fin des textes */
/* Fin des petites images */
.grandeImage{
    width: calc(90% + 40px);
    border-radius: 50px;
    height: 400px;
    object-fit: cover;
    margin-top: 40px;
    margin-bottom: 7svh;
}
@media screen and (max-width: 620px){
    .grandeImage{
        width: 90%;
        height: 800px;
    }
}
/* Fin de la gallerie */