html {
    transition: all cubic-bezier(.46, .43, .1, .99) 1.0s;
}

body {
    margin: 0;
    background-color: #121212;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(0 0 0 / 40%);
}

::-webkit-scrollbar-thumb {
    background-color: #dfdfdf;
    border-radius: 10px;
}

.background {
    position: fixed;
    height: 100vh;
    background-image: url(/img/background.png);
    background-position: center;
    background-size: 75%;
    width: 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 700ms cubic-bezier(0.03, 0.98, 0.52, 0.99) 0s;

}

#grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vw;
    opacity: 0.3;
    z-index: 999999;
    pointer-events: none;
  }

.welcomeback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45%;
    height: max-content;
    outline: solid 1px #ffffff1a;
    outline-offset: -1px;
    border-radius: 21px;
    background-color: #1b181e;
    z-index: 99;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    box-shadow: 0px 4px 53.1px 0px #000;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a6;
    z-index: 89;
}

.welcomeback h1 {
    margin: 0;
    width: max-content;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.welcomeback p {
    margin: 0;
    width: 90%;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}


.header {
    position: relative;
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header h1 {
    background-image: linear-gradient(120deg, #b88cff 0%, #9045ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 110px;
    font-weight: bold;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    margin: 0;
    padding: 0;

}

.header h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    margin: 0;
    padding: 0;
    width: 35%;
    text-align: center;

    text-shadow: 0px 0px 20px #000;
}

.header .buttons {
    gap: 10px;
    display: flex;
    margin-top: 20px;
}

.header .buttons div {
    box-shadow: 0px 4px 53.1px 0px #000;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header video {
    object-fit: cover;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    filter: blur(10px);
    opacity: 0.2;
    animation: fade 2s cubic-bezier(.46, .43, .1, .99) forwards;
}

.button-primary {
    outline: solid 1px #ffffffb2;
    outline-offset: -1px;
    border-radius: 8px;
    background-color: #9264c7;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    cursor: pointer;
    width: max-content;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
}

.button-primary:hover {
    background-color: #9f75cd;
}

.button-secondary {
    outline: solid 1px #ffffffb2;
    outline-offset: -1px;
    border-radius: 8px;
    background-color: #fff;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    color: #9264c7;
    font-size: 20px;
    font-weight: 500;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    cursor: pointer;
    width: max-content;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
}

.button-secondary:hover {
    background-color: #ccc;
}


.offers {
    position: relative;
    width: 100%;
    height: max-content;
    background-color: #1b181e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 50px;
}

.offers .title {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    margin: 0;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 50px;
}

.offers .offers-list {
    height: 70%;
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.offers .offers-list .offer-item {
    width: 32%;
    height: 100%;


    border-radius: 11px;
    background-color: #fff;
    box-shadow: 0px 4px 53.1px 0px #000;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
    position: relative;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.offers .offers-list .offer-item.new {
    position: relative;
}

.offers .offers-list .offer-item.new::before {
    content: "NOUVEAU";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #9264c7;
    color: #fff;
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9px;
    font-size: 1rem;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
    z-index: 1;
}

.offers .offers-list .offer-item.new:hover::before {
    transform: scale(1.1) translate(-7px, 5px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.offers .offers-list .offer-item {
    width: 32%;
    height: 570px;


    border-radius: 11px;
    background-color: #fff;
    box-shadow: 0px 4px 53.1px 0px #000;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
    position: relative;
    background-position: center center;
    background-size: cover;
    overflow: hidden;

    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.offers .offers-list .offer-item.cg {
    position: relative;
}

.offers .offers-list .offer-item.cg::before {
    z-index: 1;
    content: "BIENTOT";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #9264c7;
    color: #fff;
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9px;
    font-size: 1rem;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;
}

.offers .offers-list .offer-item.cg:hover::before {
    transform: scale(1.1) translate(-7px, 5px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.offers .offers-list .offer-item .outline {
    outline: solid 1px #ffffff6e;
    outline-offset: -2px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    border-radius: 11px;
    pointer-events: none;
}

.offers .offers-list .offer-item:hover {
    transform: translateY(-10px);
    z-index: 2;
}

.offers .offers-list .offer-item .infos {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 11px 11px;
    background-image: linear-gradient(180deg, #0000 0%, #000f 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.offers .offers-list .offer-item .infos .name {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    margin: 0;
    padding: 0;
    margin-left: 20px;
}

.offers .offers-list .offer-item .infos .price {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    margin: 0;
    padding: 0;
    margin-left: 20px;
    margin-bottom: 10px;
}

.offers .offers-list .offer-item .infos .price span {
    color: #9747ff;
    font-weight: 500;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.offers .offers-list .offer-item .infos .button-primary {
    margin-bottom: 20px;
    margin-left: 20px;
}

.categories {
    position: relative;
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 50px;
}

.categories .subtitle {
    color: #9747ff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    margin-top: 50px;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.categories .title {
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.categories .categories-list {
    height: 70%;
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.categories .categories-list .category-item {
    outline: solid 1px #ffffff1a;
    outline-offset: -1px;
    border-radius: 21px;
    background-color: #1b181e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25%;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.2s;
    min-height: max-content;
    height: 365px;
}


.categories .categories-list .category-item>* {
    cursor: default;
}

.categories .categories-list .category-item:hover {
    transform: translateY(-10px);
    background-color: #222128;
}

.categories .categories-list .category-item i {
    color: #9264C7;
    font-size: 90px;
    padding-bottom: 30px;
    padding-top: 30px;
}

.categories .categories-list .category-item h1 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.categories .categories-list .category-item h2 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    margin-top: 20px;
    font-weight: 300;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    width: 75%;
    text-align: center;
    padding-bottom: 30px;
}

.ship {
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    width: 100%;
    text-align: center;
}

.faq {
    position: relative;
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 50px;
}

.faq .subtitle {
    color: #9747ff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    margin-top: 50px;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.faq .title {
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 50px;
    text-align: center;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

.faq .qlist {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.faq .qlist .qitem {
    outline: solid 1px #ffffff21;
    outline-offset: -1px;
    border-radius: 10px;
    background-color: #121212;
    transition: all cubic-bezier(.46, .43, .1, .99) 0.5s;

    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0;
}

.faq .qlist .qitem.show {
    background-color: #1b181e;
}

.faq .qlist .qitem:hover {
    background-color: #1b181e;
}

.faq .qlist .qitem .qheader {
    color: #fff;
    font-size: 1vw;
    font-weight: 500;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    padding: 15px;
    cursor: pointer;
}

.faq .ask {
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    width: 100%;
    text-align: center;
}

.faq .ask a {
    color: #9264c7;
    text-decoration: none;
}


.faq .qlist .qitem .qcontent {
    display: none;
    cursor: pointer;
    width: 95%;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
    margin: 0;
    margin-left: 2%;
    margin-top: -20px;
}

@media (max-width: 1544px) {
    .header h2 {
        width: 50%;
    }

    .offers .offers-list {
        width: 90%;
    }

    .background {
        background-size: 100%;
    }
}

@media (max-width: 1340px) {
    .offers .offers-list .offer-item .infos .price {
        font-size: 25px;
    }

    .offers .offers-list .offer-item .infos .name {
        font-size: 30px;
    }

    .offers .offers-list .offer-item .infos .button-primary {
        font-size: 15px;
    }

    .categories .categories-list {
        width: 90%;
    }

    .categories .categories-list .category-item h1 {
        font-size: 20px;
    }

    .categories .categories-list .category-item h2 {
        font-size: 17px;
    }

    .welcomeback {
        width: 85%;
    }

    .faq .qlist {
        width: 70%;
    }

    .faq .qlist .qitem .qheader {
        font-size: 1.6vw;
    }
}

@media (max-width: 1106px) {
    .offers .offers-list .offer-item {
        width: 45%;
    }
}

@media (max-width: 1000px) {
    .header h2 {
        width: 70%;
    }

    .categories {
        height: max-content;
        padding-bottom: 20px;
    }

    .offers .offers-list {
        height: 70%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }

    .offers .offers-list .offer-item {
        outline: none;
        height: 200px;
        width: 100%;
    }

    .offers .offers-list .offer-item .infos {
        height: 100%;
        background-color: #12121291;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .categories .title {
        font-size: 30px;
    }

    .faq .title {
        font-size: 1.6rem;
    }

    .categories .categories-list {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .categories .categories-list .category-item {
        height: max-content;
    }

    .categories .categories-list .category-item i {
        font-size: 65px;
    }

    .offers .offers-list .offer-item .infos .price {
        margin-left: 0;
        margin-bottom: 0;
    }

    .offers .offers-list .offer-item .infos .name {
        margin-left: 0;
    }

    .offers .offers-list .offer-item .infos .button-primary {
        margin-bottom: 0;
        margin-left: 0;
    }

    .background {
        background-size: 120%;
    }

}

@media (max-width: 808px) {
    .categories .categories-list .category-item {
        height: 65%;
    }

    .categories .categories-list .category-item h1 {
        font-size: 1rem;
    }

    .categories .categories-list .category-item h2 {
        font-size: 1rem;
        width: 99%;
    }

    .categories .categories-list .category-item i {
        font-size: 3rem;
    }

    .categories .title {
        font-size: 20px;
    }

    .categories .categories-list {
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }



    .categories .categories-list .category-item {

        width: 90%;
    }


    .faq .qlist {
        width: 80%;
    }

    .faq .qlist .qitem .qheader {
        font-size: 2vw;
    }


    .faq .qlist .qitem .qcontent {
        font-size: 2vw;
    }

}

@media (max-width: 720px) {
    .header h1 {
        font-size: 60px;
    }

    .header h2 {
        font-size: 19px;
    }

    .offers .title {
        font-size: 1.6rem;
    }

    .header .buttons {
        flex-direction: column;
    }

    .categories .categories-list .category-item h2 {
        width: 93%;
    }

    .categories .categories-list .category-item i {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .welcomeback p {
        text-align: center;
        font-size: 4vw;
    }

    .welcomeback h1 {
        font-size: 5vw;
    }

    .faq .title {
        font-size: 1rem;
    }
}


@media (max-width: 470px) {
    .header h1 {
        font-size: 3rem;
    }

    .header h2 {
        font-size: 1rem;
    }

    .header .button-primary {
        font-size: 1rem;
    }

    .offers .offers-list .offer-item.new::before {
        top: 5px;
        right: 5px;
        font-size: 0.8rem;
    }

    .faq .qlist {
        width: 90%;
    }

    .faq .qlist .qitem .qheader {
        font-size: 2.5vw;
    }


    .faq .qlist .qitem .qcontent {
        font-size: 2.5vw;
    }
}

@media (max-width: 598px) {
    
    .faq .qlist .qitem .qheader {
        font-size: 3vw;
    }

    .background {
        background-size: 140%;
    }
}

@media (max-width: 449px) { 
    .background {
        background-size: 170%;
    }
}


@media (max-height: 902px) {
    .offers .button-primary {
        padding: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .panel {
        height: 50vh;
    }
}


@media (max-height: 783px) {

    .offers .offers-list {
        height: 100%;

    }

    
    .offers .offers-list .offer-item {
        outline: none;
        height: 200px;
        width: 100%;
    }

    .offers .offers-list .offer-item .infos {
        height: 100%;
        background-color: #12121291;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }




    .panel {
        height: 60vh;
    }
}

@media (max-height: 608px) {
    .panel {
        height: 70vh;
    }
}

@media (max-width: 449px) {
    .offers .offers-list .offer-item .infos .price {
        font-size: 20px;
    }
}