@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,700;1,700&display=swap');

body{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #303030;
    overflow: hidden;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
    width: 14px;
}
  
body::-webkit-scrollbar-track {
    background: #2a2a2a;
}
  
body::-webkit-scrollbar-thumb {
    border: 2px solid #fff;
    border-radius: 6rem;
    box-shadow: 0 0 .2rem #fff,
        0 0 3rem #fff,
        0 0 2rem #bc13fe,
        0 0 0.8rem #bc13fe,
        0 0 2.8rem #bc13fe,
        inset 0 0 1.3rem #bc13fe;
}
/* FIN SCROLLBAR */

.wp{
    overflow-y: scroll!important;
    overflow-x: hidden!important;
}

.conteneurWP{
    display: flex!important;
    flex-direction: column;
}

/* NAVBAR */
.hyperliens{
    display: inline-flex;
    list-style-type: none;
    margin-right: 10px;
    cursor: pointer;
}

.navbar{
    z-index: 100;
    display: flex;
    justify-content: space-between;
    background: #303030;
    opacity: 99%;
    box-shadow: 10px 10px 20px #202020, -10px -10px 20px #404040;
    align-items: center;
    width: -webkit-fill-available;
    transition: 0.3s;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drapeau{
    height: 28px;
    width: 25px;
}

.drapeau:hover{
    opacity: 80%;
}

.flag2{
    margin-right: -17px;
}

.navbar:hover{
    transition: 0.3s;
    opacity: 100%;
    box-shadow: 10px 10px 20px #141414, -10px -10px 20px #000000;
}


.logo{
    height: 115px;
}

a, a:visited, a:focus, a:link{
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: normal;
    margin-right: 15px;
}

.navbarLinks{
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: normal;
    margin-right: 15px;
}

.navbarLinks:hover{
    --color: #FFFFFF;
    --position: center bottom;
    --width: 40px;
    --height: 3px;
    padding-bottom: 5px;
    background: linear-gradient(var(--color), var(--color)) var(--position) / var(--width) var(--height) no-repeat;
}

.svgBurger{
    height: 42px;
    width: 59px;
    display: none;
}
/* FIN NAVBAR */

.imgWp{
    height: 386px;
    width: 708px;
    border-radius: 2rem;
    -webkit-box-shadow: 0px 2px 31px 8px rgba(0,0,0,0.94); 
    box-shadow: 0px 2px 31px 8px rgba(0,0,0,0.94);
}

.image{
    height: 386px;
    width: 708px;
    animation: pulsate 1.5s infinite alternate;  
    border: 0.2rem solid #fff;
    border-radius: 2rem;
    padding: 0.4em;
    box-shadow: 0 0 .2rem #fff,
        0 0 .2rem #fff,
        0 0 2rem #bc13fe,
        0 0 0.8rem #bc13fe,
        0 0 2.8rem #bc13fe,
        inset 0 0 1.3rem #bc13fe;
}


.main-conteneur{
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap-reverse;
    margin-top: 3%;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.titre{
    font-size: 2.813rem;
    color: #FFFFFF;
    font-weight: 700;
    font-style: italic;
}

.txt{
    color: #FFFFFF;
    width: 700px;
    margin-bottom: 5%;
}

.logoSVG{
    height: 30px;
    width: 30px;
}

.btn{
    display: flex;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #FFFFFF;
    height: 48px;
    padding: 19px;
    transition: .2s;
}

.btn:hover{
    transition: .2s;
    transform: scale(1.1);
    box-shadow: 0 0 .2rem #fff,
    0 0 .2rem #fff,
    0 0 2rem #bc13fe,
    0 0 0.8rem #bc13fe,
    0 0 2.8rem #bc13fe,
    inset 0 0 1.3rem #bc13fe;
}

.btnTxt{
    font-family: 'Poppins', 'sans-serif';
    font-size: 0.938rem;
    color: #FFFFFF;
    margin: 5px;
}

.paragraphe{
    display: flex;
}

/* MEDIAS QUERY */
@media only screen and (max-width: 1500px){
    body{
        overflow: auto!important;
    }
}

@media only screen and (max-width: 1173px){
    .image{
        height: 252px!important;
        width: 487px!important;
        margin-top: 5%;
    }
    .imgWp{
        height: 252px!important;
        width: 487px!important;
        margin-top: 5%;
    }
    .txtLI{
        display: none!important;
    }
    .svgBurger{
        display: flex!important;
    }
}

@media only screen and (max-width: 500px){
    .image{
        height: 162px!important;
        width: 291px!important;
    }
    .imgWp{
        height: 162px!important;
        width: 291px!important;
    }
    .txt {
        width: 313px!important;
    }
    .titre {
        font-size: 2.125rem!important;
    }
}
/* FIN MEDIAS QUERY */