* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html {
    height: 100%;
    background-color: #000;
    font-size: 62.5%;
    --light-border: #CDCED0;
    --dark: #161616;
}

body {
    min-height: 100vh;
    font-family: "Inter", "Verdana", sans-serif;
    font-size: 1.4rem;
    color: rgb(255 255 255);
    background: url(../img/bg/bg.png) no-repeat 50% / cover;
}

p {
    color: #d5d4d4;
    margin: 15px auto;
    font-weight: 300;
    font-size: 15px;
}

.small {
    font-size: 12px;
    color: #b9b9b9;
    margin: 15px 0 !important;
}

/*NAVIGATION*/

.hidden {
    display: none;
}

nav {
    width: 100%;
    display: flex;
    height: 60px;
    padding: 0 80px;
    background-color: #161616;
}


.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1em;
    padding: 0.5em;
}

.language-btn .language-flag {
    width: 2em;
    height: auto;
}

.language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 100;
}

.language-options li {
    padding: 0.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.language-options li .language-flag {
    width: 2em;
    height: auto;
}

.left {
    width: 50%;
    display: flex;
    align-items: center;
}

.right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    width: calc(770px / 4);
    height: calc(77px / 4);
}

.nav-links1,
.nav-links2 {
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic;
    align-items: center;
}

.nav-links1 li a,
.nav-links2 li a {
    /*    transition: all 0.3s ease;*/
}

.nav-links1 li a:hover,
.nav-links2 li a:hover {
    color: white;
    font-style: normal;
}

.nav-links1 li a {
    color: #E6E6E6;
    text-decoration: none;
    margin-left: 30px;
}

[dir='rtl'] .nav-links1 li a {
    margin-left: 0px;
    margin-right: 30px;
}

.nav-links2 li a {
    color: #E6E6E6;
    text-decoration: none;
}

.nav-links2 li:first-child a {
    margin-right: 30px;
}

[dir='rtl'] .nav-links2 li:first-child a {
    margin-left: 30px;
    margin-right: 0px;
}

.menuBurger {
    display: none;
}

/*MENU BURGER*/
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background-color: #161616;
    box-shadow: 0 0 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 50px;
    padding: 0;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu li a {
    font-size: 14px;
    text-transform: uppercase;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.mobile-menu.open {
    transform: translateX(0);
    box-shadow: -7px 0 5px rgba(0, 0, 0, 0.5);
}

.croix {
    width: 20px;
}

/*****HOMEPAGE*****/

/*TOP*/

.top {
    background: url(../img/bg/bg.png) no-repeat 50% / cover;
    height: 90vh;
}

.boxBestImg {
    background: url(../img/bgtop.png) no-repeat 50% / cover;
    height: 90vh;
}

.best {
    width: 50%;
    background: linear-gradient(90deg, rgb(21 21 22) 50%, rgba(0, 0, 0, 0) 100%);
    height: 90vh;
    padding: 30px 0 30px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[dir='rtl'] .best{
    padding: 30px 150px 30px 0;
    background: linear-gradient(to left, rgb(21 21 22) 50%, rgba(0, 0, 0, 0) 100%);
}

.star {
    width: 40px;
    align-self: flex-start;
    margin-bottom: 20px;
}

h1 {
    font-family: "Black Han Sans", serif;
    font-family: "Unbounded", serif;
    font-size: 44px;
    text-transform: uppercase;
    line-height: 48px;
    font-weight: 900;
}

.best p {
    margin: 15px 0 0 0;
    width: 70%;
    align-self: baseline;
}

.cta {
    color: #161616;
    background-color: #E6E6E6;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border-radius: 7px;
    transition: all 0.3s ease;
    border: none;
}

.cta:hover {
    background-color: white;
    transform: scale(1.05);
}

.ctaLeft {
    align-self: baseline;
    padding: 15px 30px;
    font-size: 17px;
    width: 240px;
}

[dir='rtl'] .ctaLeft {
    align-self: auto;
}

/*JEU*/

section {
    padding: 200px 0 0;
    position: relative;
    overflow: hidden;
}

.shortMargin {
    padding: 50px 0 0;
}

.last {
    padding: 200px 0 200px;
}

.lastShortMargin {
    padding: 50px 0;
}

.cristal {
    width: 220px;
    position: absolute;
    right: -45px;
    top: -30px;
}

.sword {
    width: 150px;
    position: absolute;
    left: -25px;
    top: 230px;
}

#populaire {
    display: flex;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    flex-direction: column;
    margin: 0 auto;
    width: 80%;
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

h2 {
    font-family: "Black Han Sans", serif;
    font-family: "Unbounded", serif;
    font-size: 39px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto 10px;
    line-height: 40px;
    font-weight: 900;
}

[dir='rtl'] h2 {
    margin: 0 0 10px;
}

#populaire p {
    text-align: center;
    width: 80%;
    font-weight: 300;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
    margin: 30px auto;
}

.swiper-3d {
    perspective: 1200px;
    width: 100%;
}

.swiper-wrapper {
    width: 30% !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px !important;
}

.swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 15px;
    border: 2px #69ee9c solid;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    border-radius: 17px;
}

.ctaCenter {
    padding: 15px 70px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    width: 240px;
    align-self: center;
    display: grid;
}

/*JEUX POPULAIRES*/

.game {
    width: 240px;
    position: absolute;
    right: -45px;
    top: 160px;
}

#star {
    display: flex;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto;
    width: 80%;
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#star h1 {
    text-align: left;
}

[dir='rtl'] #star h1 {
    text-align: right;
}

.boxLeft {
    background: url(../img/star/bg.jpg) no-repeat 50% / cover;
    height: 570px;
    width: calc(100vw / 2.5);
    border-radius: 10px;
}

.boxLeftMobile {
    display: none;
}

.boxRight {
    width: 50%;
    margin: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

[dir='rtl'] .boxRight{
    margin: 0 30px 0 0;
}

#star h2 {
    text-align: left;
}

[dir='rtl'] #star h2{
    text-align: right;
}

/*ACTUS*/

.tromphee {
    width: 230px;
    position: absolute;
    left: -45px;
    top: 10px;
}

.joystick {
    width: 230px;
    position: absolute;
    right: -65px;
    top: 550px;
}

#actus {
    display: flex;
    flex-direction: column;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto;
    width: 80%;
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.blocBloc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.nodesktop {
    display: none;
}

#sliderMobile {
    display: none;
}

.bloc {
    display: flex;
    flex-direction: column;
    width: 30%;
    background-color: #17191a;
    padding: 20px 20px 0;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ffffff3d;
}

.vignette {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ffffff3d;
}

.titre {
    font-family: "Black Han Sans", serif;
    font-size: 20px;
    color: white;
    font-family: "Unbounded", serif;
    font-weight: 600;
    font-size: 16px;
}

#actus p {
    text-align: center;
    width: 90%;
    margin: 10px auto 20px;
}

/*LIVE*/

.manette {
    width: 330px;
    position: absolute;
    left: -75px;
    top: -20px;
}

.piece {
    width: 170px;
    position: absolute;
    right: -65px;
    top: 440px;
}

#live {
    display: grid;
    text-align: center;
    flex-direction: column;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto;
    width: 80%;
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#live p {
    width: 70%;
}

.screen {
    width: 70%;
    margin: 0 auto;
    border-radius: 10px;
    border: 2px solid #69ee9c;
}

#live .ctaCenter {
    padding: 15px 70px;
    font-size: 17px;
    width: 240px;
    margin: 20px auto 0;
}

/*FOOTER*/

footer {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    background-color: #161616;
    padding: 40px 5vw;
}

footer h3 {
    font-size: 20px;
    text-align: left;
    margin: 20px auto 5px;
    font-style: normal;
    font-weight: 600;
}

[dir='rtl'] footer h3 {
    text-align: right;
}

h3 {
    font-style: italic;
}

.blocLeft,
.blocRight {
    width: 50%;
}

.blocLeft {
    display: flex;
    flex-direction: column;
    align-self: normal;
}

.blocRight {
    display: flex;
    justify-content: space-evenly;
}

.footerElements li {
    margin: 10px 0 5px 5px;
}

[dir='rtl'] .footerElements li {
    margin: 10px 5px 5px 0;
}

.footerElements li a {
    color: #d5d4d4;
    text-decoration: none;
}

.footerElements li a:hover {
    font-style: italic;
    color: darkgrey;
}

footer .logo {
    width: calc(770px / 3);
    height: calc(77px / 3);
}

/*LOGO EN BG*/

.logoBg {
    background-color: #161616;
    width: 100%;
    padding: 150px 0 0 0;
}



/*****PAGE DESABO*****/

.titleTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 60px auto 0;
    text-align: center;
}

.titleTop h1,
titleTop p {
    text-align: center;
}

.titleTop .star {
    width: 40px;
    align-self: flex-start;
    margin: 0 auto 20px;
}

#desabo {
    display: flex;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto;
    width: 70%;
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#desabo .boxLeft {
    background: url(../img/sav/1.webp) no-repeat 50% / cover;
    height: 500px;
    width: calc(100vw / 3);
    border-radius: 10px;
}

#desabo .boxRight {
    width: 60%;
    padding-right: 50px;
}

.english {
    font-style: italic;
}

.english a {
    color: #ffffff;
}

#desabo h2 {
    text-align: left;
}

[dir='rtl'] #desabo h2 {
    text-align: right;
}

#desabo .ctaLeft {
    margin: 20px auto 0;
}

.boxRight {
    width: 50%;
    margin: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h3 {
    font-size: 16px;
    text-align: left;
    margin: 0 auto 10px;
    font-style: normal;
    font-weight: 300;
}

[dir='rtl'] h3 {
    text-align: right;
}

.step {
    display: flex;
    align-items: start;
    margin: 20px 0;
}

.step img {
    width: 70px;
    margin-right: 20px;
}

[dir='rtl'] .step .img {
    margin-right: 0;
    margin-left:20px;
}

h4 {
    font-size: 14px;
    text-align: left;
    margin: 0 auto 10px;
    font-style: normal;
    font-weight: 600;
}

[dir='rtl'] h4 {
    text-align: right;
}

.encart {
    border-radius: 8px;
    padding: 12px 32px;
    font-style: italic;
    font-weight: 600;
    display: inline-block;
    color: var(--white-title);
    cursor: pointer;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: opacity 0.4s ease;
    background-color: var(--grey);
    border: 1px solid white;
    margin: 0 auto 20px;
    width: 240px;
}

.erreur {
    margin: 10px auto;
    text-align: center;
}

.erreur a {
    color: #dacb3a;
    text-align: center;
}

#abonnement {
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto;
    width: 70%;
    padding: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: left;
}

[dir='rtl'] #abonnement {
    text-align: right;
}

#abonnement h2 {
    text-align: left;
}

[dir='rtl'] #abonnement h2 {
    text-align: right;
}

.separator {
    height: 20px;
    width: 420px;
    margin: 1em 0;
    background-color: darkgrey;
}

.step p {
    margin: 0;
}

#engagement {
    display: flex;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto;
    width: 70%;
    padding: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: left;
}

[dir='rtl'] #engagement {
    text-align: right;
}

#engagement h2 {
    text-align: left;
}

[dir='rtl'] #engagement h2 {
    text-align: right;
}

#engagement .boxLeft {
    background: url(../img/desabo/2.jpg) no-repeat 50% / cover;
    height: 540px;
    width: calc(100vw / 3);
    border-radius: 10px;
}

#engagement .cta {
    margin: 15px 0 0;
}


/*PAGE TEST*/

.topTest .boxBestImg {
    background: url(../img/test/1.png) no-repeat 50% / cover;
    height: 90vh;
}

.bold {
    font-weight: 600;
}

.topTest .encart {
    border-radius: 8px;
    padding: 12px 32px;
    font-style: italic;
    font-weight: 600;
    display: inline-block;
    color: var(--white-title);
    cursor: pointer;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: opacity 0.4s ease;
    background-color: var(--grey);
    border: 1px solid white;
    margin: 0 0 20px;
    width: 240px;
}


/*PAGE FAQ*/

.titleTopFaq {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 60px auto 50px;
    text-align: center;
}

.titleTopFaq .star {
    width: 40px;
    align-self: center;
    margin-bottom: 20px;
}

.boxQuestion {
    margin: 0 auto 110px;
    max-width: 600px;
    overflow: hidden;
}

.boxQuestion h2 {
    font-family: "Black Han Sans", serif;
    font-family: "Unbounded", serif;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 24px;
    text-align: left;
    margin: 0;
}

[dir='rtl'] .boxQuestion h2 {
    text-align: right;
}

.toggle-section {
    border-bottom: 2px solid white;
    margin-top: 2em;
}

.toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.toggle-content {
    max-height: 0;
    margin: 1em 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.toggle-content a {
    color: white;
}

.toggle-icon {
    transition: transform 0.2s ease-out;
    width: 20px;
}

.toggle-icon.expanded {
    transform: rotate(180deg);
    transition: transform 0.2s ease-out;
}

/*MENTIONS LEGALES*/

.titleTopMentions {
    text-align: center;
    margin: 60px auto 50px;
}

#mentions {
    display: flex;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto 80px;
    width: 70%;
    padding: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#mentions .boxRight {
    width: 100%;
    margin: 0 0 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#mentions .boxLeft {
    background: url(../img/desabo/1.jpg) no-repeat 50% / cover;
    height: 350px;
    width: calc(100vw / 2);
    border-radius: 10px;
}

#mentions p {
    color: #d5d4d4;
    margin: 10px 0;
    font-weight: 300;
    font-size: 15px;
}

.mentions-texte a {
    color: #cccccc;
}

/*PAGE FAQ*/

/*PAGE SAV*/

.titleTopSav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 60px auto 0px;
    text-align: center;
}

#smallTitle {
    font-size: 27px;
    font-weight: 400;
    line-height: 35px;
    margin: 0 auto;
}

.titleTopSav .star {
    display: flex;
    align-self: center;
    margin-bottom: 20px;
}

#facturation {
    display: flex;
    background: rgb(31 31 31 / 49%);
    border-radius: 30px;
    border: #ffffff2e 1px solid;
    margin: 0 auto;
    width: 70%;
    padding: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: left;
}

[dir='rtl'] #facturation {
    text-align: right;
}

#facturation .boxLeft {
    background: url(../img/sav/1.webp) no-repeat 50% / cover;
    height: 350px;
    width: calc(100vw / 3);
    border-radius: 10px;
}

#facturation .boxRight {
    width: 50%;
    margin: 0 30px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#facturation .boxRight h2 {
    text-align: left;
}

[dir='rtl'] #facturation .boxRight h2 {
    text-align: right;
}

/*PAGE ACCESSIBILITE*/

.accessibility {
    padding: 20px;
}

.accessibility h2 {
    text-align: left;
}

.accessibility h1 {
    padding: 15px 0;
}
.accessibility_list {
    margin: 0 0 2em;
    display: block;
}

.accessibility_list li {
    color: var(--light-border);
    list-style-type: disclosure-closed;
}

.accessibility_list li a, .accessibility_list li a:visited, .accessibility_list li a:hover, .accessibility_list li a:active{
    color: var(--light-border);
}

/***************MEDIAQUERIES*****************/

@media screen and (min-width: 100px) and (max-width:900px) {

    /*    HOMEPAGE*/

    .logoBg {
        display: none;
    }

    .menuBurger {
        display: block;
        width: 27px;
    }

    .top {
        background: url(../img/bg/bg.png) no-repeat 50% / cover;
    }

    .top .boxBestImg {
        background: url(../img/bgtop.png) no-repeat center / 220%;
        height: 90vh !important;
    }

    .top .best {
        width: 100%;
        background: linear-gradient(360deg, rgb(21 22 23) 20%, rgba(0, 0, 0, 0) 70%);
        padding: 0px 30px 60px 30px;
        justify-content: flex-end;
        height: 90vh;
    }

    .topTest .boxBestImg {
        background: url(../img/test/1.png) no-repeat top / 220%;
        height: 100vh !important;
    }

    .topTest .best {
        width: 100%;
        background: linear-gradient(360deg, rgb(21 22 23) 35%, rgba(0, 0, 0, 0) 70%);
        padding: 0px 30px 60px 30px;
        justify-content: flex-end;
        height: 100vh;
    }

    .best .star {
        width: 40px;
        align-self: left;
        margin-bottom: 20px;
    }

    .boxRight .star {
        width: 40px;
        align-self: center;
        margin-bottom: 20px;
    }

    p {
        color: #d5d4d4;
        margin: 15px auto;
        font-weight: 300;
        font-size: 13px;
        line-height: 18px;
    }


    h1 {
        font-size: 28px;
        width: 100%;
        line-height: 30px;
    }

    h2 {
        font-size: 21px;
        margin: 0 auto;
        line-height: 24px;
    }

    #star h2 {
        text-align: center;
    }

    [dir='rtl'] #star h2 {
        text-align: center;
    }

    .best p {
        margin: 15px 0;
        width: 90%;
        align-self: baseline;
    }

    nav {
        position: fixed;
        z-index: 100;
        padding: 30px;
        box-shadow: 0 3px 10px rgb(5 5 5 / 50%);
    }

    .nav-links1,
    .nav-links2 {
        display: none;
    }

    #language-options{
        top: 0;
    }

    #language-options li{
        margin: 0;
    }

    #populaire p {
        text-align: center;
        width: 100%;
        font-weight: 300;
        margin: 15px auto 0;
        font-size: 13px;
    }

    .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 200px !important;
    }

    .swiper-wrapper {
        width: 80% !important;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        border-radius: 8px;
    }

    .swiper-3d .swiper-slide-shadow-right,
    .swiper-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
        border-radius: 8px;
    }

    .boxRight {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    [dir='rtl'] .boxRight {
        margin: 0;
    }

    #star h1 {
        text-align: center;
    }

    .ctaCenter {
        margin: 0 auto;
    }

    .boxLeft {
        height: 190px;
        width: 100%;
        border-radius: 10px;
    }

    .boxLeftMobile {
        display: block;
        height: 190px;
        width: 100%;
        border-radius: 10px;
        background: url(../img/star/bg.jpg) no-repeat 50% / cover;
        margin: 15px auto 0;
    }

    #actus {
        border-radius: 10px;
        width: 90%;
    }

    .blocBloc {
        margin-top: 20px;
    }

    .bloc {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #17191a;
        padding: 20px 20px 0;
        margin-bottom: 20px;
        border-radius: 10px;
        border: 1px solid #ffffff3d;
    }

    #actus p {
        text-align: center;
        width: 100%;
    }

    .titre {
        font-size: 15px;
        color: white;
    }

    #live p {
        width: 100%;
    }

    .screen {
        width: 100%;
        margin: 0 auto;
        border-radius: 7px;
        border: 2px solid #69ee9c;
    }

    #live .ctaCenter {
        margin: 20px auto 0;
    }

    footer {
        display: flex;
        flex-direction: column;
    }

    .blocRight {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .blocLeft,
    .blocRight {
        width: 100%;
    }

    .starBg {
        display: block;
        background-color: #161616;
        width: 100%;
    }

    #sliderMobile {
        display: block;
    }

    #populaire {
        width: 90%;
    }

    #star {
        flex-direction: column-reverse;
        border-radius: 10px;
        width: 90%;
        padding: 30px;
    }

    #live {
        width: 90%;
    }

    .cristal {
        width: 170px;
        position: absolute;
        right: -45px;
        top: 10px;
    }

    .tromphee {
        width: 170px;
        position: absolute;
        left: -45px;
        top: 70px;
    }

    .game {
        width: 200px;
        position: absolute;
        right: -95px;
        top: 350px;
    }

    .sword {
        width: 110px;
        position: absolute;
        left: -25px;
        top: 270px;
    }

    .joystick {
        width: 230px;
        position: absolute;
        right: -85px;
        top: 1220px;
    }

    .manette {
        width: 330px;
        position: absolute;
        left: -75px;
        top: -110px;
    }

    .piece {
        width: 170px;
        position: absolute;
        right: -65px;
        top: 570px;
    }

    footer h3 {
        font-size: 20px;
        text-align: left;
        margin: 20px auto 5px;
        font-style: normal;
        font-weight: 600;
    }

    [dir='rtl'] footer h3 {
        text-align: right;
    }

    /*    PAGE DESABO*/

    section {
        padding: 60px 0 0;
        position: relative;
        overflow: hidden;
    }

    .last {
        padding: 60px 0 60px;
    }

    .titleTop {
        display: flex;
        flex-direction: column;
        width: 90%;
        padding: 90px 0 0;
        margin: 0 auto;
    }

    .titleTop p {
        color: #d5d4d4;
        margin: 15px auto 0;
        font-weight: 300;
        font-size: 13px;
        line-height: 18px;
    }

    #desabo {
        display: block;
        width: 90%;
    }

    #desabo .boxLeft {
        background: url(../img/desabo/1.jpg) no-repeat 0% 70% / cover;
        width: 100%;
        height: 200px;
    }

    #desabo .boxRight {
        width: 100%;
    }

    #desabo h2 {
        text-align: left;
        margin: 20px 0;
        width: 100%;
    }

    [dir='rtl'] #desabo h2 {
        text-align: right;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: start;
        margin: 0;
    }

    .step div {
        text-align: left;
    }

    [dir='rtl'] .step div {
        text-align: right;
    }

    h4 {
        margin: 10px auto;
    }

    #abonnement {
        width: 90%;
        padding: 30px;
    }

    [dir='rtl'] #abonnement {
        text-align: right;
    }

    .separator {
        height: 10px;
        width: 210px;
    }

    #engagement {
        width: 90%;
        padding: 30px;
        flex-direction: column;
    }

    #engagement .boxLeft {
        width: 100%;
        background: url(../img/desabo/2.jpg) no-repeat 50% / cover;
        height: 270px;
        border-radius: 10px;
        margin: 0 auto 30px;
    }

    #engagement .boxRight p {
        color: #d5d4d4;
        margin: 20px auto 0;
        font-weight: 300;
        text-align: left;
    }

    [dir='rtl'] #engagement .boxRight p {
        text-align: right;
    }

    #engagement .cta {
        margin: 20px 0 0;
    }

    .noMobile {
        display: none;
    }

    /*    MENTIONS*/

    #mentions {
        display: flex;
        flex-direction: column;
        background: rgb(31 31 31 / 49%);
        border-radius: 30px;
        border: #ffffff2e 1px solid;
        margin: 0 auto 50px;
        width: 90%;
        padding: 30px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    #mentions .boxLeft {
        background: url(../img/desabo/1.jpg) no-repeat 50% / cover;
        height: 250px;
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    #mentions .boxRight {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #mentions p {
        color: #d5d4d4;
        margin: 10px 0;
        font-weight: 300;
        font-size: 15px;
        text-align: left;
    }

    [dir='rtl'] #mentions p {
        text-align: right;
    }

    .titleTopMentions {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        padding: 80px 0 50px;
        margin: 0 auto;
        text-align: center;
    }

    .titleTopMentions .star {
        width: 40px;
        align-self: center;
        margin-bottom: 20px;
    }

    /*    PAGE SAV*/


    .titleTopSav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 100px 0 0;
        margin: 0 auto;
        text-align: center;
    }

    .titleTopSav .star {
        display: flex;
        align-self: center;
        margin-bottom: 20px;
    }

    #facturation {
        display: block;
        background: rgb(31 31 31 / 49%);
        border-radius: 30px;
        border: #ffffff2e 1px solid;
        margin: 0 auto;
        width: 90%;
        padding: 30px;
    }

    #smallTitle {
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }

    #facturation p {
        text-align: left;
    }

    [dir='rtl'] #facturation p {
        text-align: right;
    }

    #facturation .boxLeft {
        background: url(../img/desabo/1.jpg) no-repeat 50% / cover;
        height: 250px;
        margin: 20px 0 0;
        width: 100%;
        border-radius: 10px;
    }

    #facturation .boxRight {
        width: 100%;
        margin: 0 30px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    [dir='rtl'] #facturation .boxRight {
        margin: 0 0 0 30px;
    }

    /*    PAGE FAQ*/

    .boxQuestion h2 {
        font-family: "Black Han Sans", serif;
        font-family: "Unbounded", serif;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 20px;
        text-align: left;
        margin: 0;
    }

    [dir='rtl'] .boxQuestion h2 {
        text-align: right;
    }

    .titleTopFaq {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        margin: 0 auto;
        padding: 100px 0 50px;
        text-align: center;
    }

    .boxQuestion {
        margin: 0 auto 110px;
        max-width: 600px;
        overflow: hidden;
        width: 90%;
    }

    .titleTopFaq h2 {
        font-size: 19px;
        margin: 0 auto;
        line-height: 24px;
        font-weight: 500;
    }
}
