@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:wght@400;500;900&display=swap');
html {
    scroll-behavior: smooth;
}

* {
    --main-color: #F4B81C;
    --text-color: #666;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --main-width: 1300px
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Open Sans", sans-serif;
    scroll-behavior: smooth;
}

button {
    border: none;
    cursor: pointer;
}

#loader, #loaderGray, #loaderWhite {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    padding-top: 30vh;
    z-index: 1;
}

#loader {
    background-color: #0C1436;
}

#loaderGray {
    background-color: white;
}

.circle {
    width: 35px;
    height: 35px;
    border: 4px solid transparent;
    border-top-color: #0C0C0C;
    border-radius: 50%;
    animation: inscriptionButton-loading 1s ease infinite;
}

#loaderWhite .circle {
    border-top-color: lightgray;
}

@keyframes inscriptionButton-loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

/* ###################################################
                    Accueil
################################################### */

.ble {
    position: absolute;
    top: 2500px;
}

.ble2 {
    position: absolute;
    top: 3000px;
    right: 0;
}

.top-section .trace {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 200px;
}


.mobile-main-img {
    display: none;
}

section:not(.top-section, .grignage-section, .contenu-email) {
    max-width: var(--main-width) !important;
    margin: 0 auto;
}

section:not(.top-section, .grignage-section) {
   margin-bottom: 180px;
}

.top-section .test, .border-bottom {
    width: 100%;
    height: auto;
}

.border-bottom {
    transform: translateY(-11px);
}

.top-section .test2 {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100px;
    height: auto;
}

.top-section .trace path {
    stroke-dasharray: 1550;
    stroke-dashoffset: 1550;
    animation: dash 2s forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.border-container {
    position: relative;
    margin-top: 100px;
    pointer-events: none;
}

.accueil h2 {
    font-size: 45px;
}

.nous-container h2 {
    text-align: left;
}

.section-title {
    margin-top: 100px;
}

.section-desc {
    font-size: 20px;
}

.top-section .title-container {
    text-align: center;
    padding-top: 150px;
}

.top-section .top-section-title {
    width: 50vw;
}

.top-section .title-container p {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.top-section .title-container p:not(#rated) {
    max-width: 700px;
    margin: 20px auto 0 auto;
}

.top-section .title-container a {
    background-color: black;
    color: white;
    padding: 10px 50px;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 7px 7px 0 rgba(199, 199, 199, 1)
}

.top-section .title-container a:hover {
    background-color: #616161;
}

.top-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.start-btn-div {
    margin-top: 40px;
}

.nous-container {
    display: flex;
    justify-content: space-between;
}

.grignage-desc-para {
    display: flex;
    position: relative;
    height: 100%;
    margin-top: 20px;
}

.grignage-desc-para span {
    width: 20px;
    min-height: 100%;
    border-radius: 10px;
    background-color: #FFC452;
    margin-right: 20px;
}

.grignage-section {
    background-color: #FF7A00;
    transform: translateY(-10px);
    color: white;
}

.grignage-section img {
    width: 50%;
    margin-top: 20px;
}

.grignage-section > div {
    margin: 0 auto;
    max-width: var(--main-width);
}

.grignage-section .what-is-it {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-bottom: 40px;
    gap: 30px;
}

.grignage-section .video-p {
    margin-top: 20px;
}

.grignage-section .grignage-desc {
    max-width: 1000px;
    font-size: 20px;
}

.grignage-section a {
    text-decoration: none;
    color: white;
}

.how-it-work-section {
    text-align: center;
}

.how-it-work-section > div {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.how-it-work-section .hiw-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 20px;
}

.how-it-work-section div div {
    max-width: 300px;
    transition: .2s;
    cursor: pointer;
}

.how-it-work-section div div:hover {
    scale: 105%;
}

.benefice-section {
    text-align: center;
}

.benefice-section > div {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.benefice-section .benef-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 20px;
}

.benefice-section .section-desc {
    max-width: 500px;
    margin: 0 auto 30px auto;
}

.benefice-section div div {
    max-width: 300px;
    transition: .2s;
    cursor: pointer;
}

.benefice-section img {
    width: 100px;
    height: auto;
}

.benefice-section div div:hover {
    scale: 105%;
}

.contenu-email {
    text-align: left;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    max-width: 1100px !important;
    margin: 0 auto;
}

.contenu-email .title, .contenu-email .title-pc {
    font-size: 45px;
    font-weight: bold;
    margin: 0 0 10px 0 !important;
}

.contenu-email p {
    font-size: 20px;
    margin: 10px 0 40px 0;
    max-width: 600px;
}

.contenu-email button, .contenu-email a {
    background-color: black;
    color: white;
    padding: 18px 20px;
    border-radius: 50px;
    transition: .1s;
    font-size: 20px;
    border: none;
    text-decoration: none;
}

.contenu-email > div:nth-of-type(1) {
    text-align: left;
}

.country-mobile-version {
    display: none;
}

.test-email-container input {
    height: 50px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
    padding-left: 5px;
    border-radius: 10px;
    border: 2px solid black;
}

.test-email-container label {
    margin-bottom: 5px;
    font-size: 20px;
}

.test-email-error {
    margin: 0 0 20px 0 !important;
    color: crimson;
    display: none;
}

.confirm-test-email {
    display: none;
    margin: 20px 0;
    color: green;
}

.badge {
    margin: 0 !important;
}

.badge {
    color: #ff9815;
    font-weight: bold;
    cursor: pointer;
}

.need-premium {
    margin-bottom: 10px !important;
}

.badge .need-premium {
    margin-bottom: 10px !important;
}

.forfait-section {
    text-align: center;
}

.forfait-section > div {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px auto 100px auto;
}

.forfait-container > div {
    max-width: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    font-size: 18px;
    padding: 40px;
    position: relative;
    height: 580px;
    transition: .2s;
    cursor: pointer;
    text-align: center;
    color: black;
}

.forfait-container > div:hover {
    scale: 102%;
}

.forfait-container > div:nth-of-type(1) {
    background-image: url("../src/image/forfait1-image.svg");
}


.forfait-container > div:nth-of-type(2) {
    background-image: url("../src/image/forfait2-image.svg");
}

.forfait-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.forfait-container button {
    background-color: white;
    color: black;
    padding: 12px 0;
    width: calc(100% - 80px);
    font-size: 20px;
    border-radius: 10px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    transition: .2s;
}

.forfait-container button:hover {
    scale: 105%;
    background-color: #FFE7B8;
}

.forfait-container li {
    list-style: none;
    margin-bottom: 10px;
    text-align: left;
}

.forfait-container .unavailable {
    opacity: 50%;
}

.forfait-container li div {
    display: flex;
}

.forfait-container li img {
    fill: black;
    color: black;
    margin: 6px 15px 0 0;
    width: 15px;
    height: 15px;
}

.forfait-container .price-container span:nth-of-type(1) {
    font-weight: bold;
    font-size: 45px;
}

.forfait-container .price-container {
    margin: 20px 0;
}

.forfait-container .forfait2-image {
    position: absolute;
    top: -60px;
    right: -30px;
    rotate: 20deg;
}

.levels-section {
    text-align: center;
    margin-bottom: 200px;
}

.levels-section .levels-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 75px;
    flex-wrap: wrap;
}

.levels-section .levels-container  > div > div {
    display: flex;
    gap: 5px;
}

.levels-section .levels-container > div > img {
    width: 200px;
    height: auto;
    margin-bottom: 50px;
    transition: .2s;
}

.levels-section .levels-container > div > img:hover {
    scale: 105%;
}

.levels-section .level-title {
    font-size: 30px;
    font-weight: bold;
    margin-right: 10px;
}

.levels-section .level-desc {
    margin-top: 20px;
    max-width: 300px;
    text-align: left;
}


.levels-section .section-desc {
    max-width: 600px;
    margin: 0 auto;
}

.benefits-section {
    text-align: center;
    margin: 0 auto;
}

.benefits-section img {
    width: 100%;
    margin-top: 50px;
}

.stars-container {
    margin: 0 auto;
}

.stars-container > div {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.ratting img {
     width: 30px;

 }

.ratting {
    transform: translateY(50%);
}

.stars-container p {
    font-size: 20px;
    font-weight: 900;
}

.faq-section {
    text-align: center;
    margin-top: 100px;
}

.faq-section .question-container {
    margin: 0 auto;
}

.faq-section a {
    color: dodgerblue;
    text-decoration: none;
}

.faq-section .question-container > div {
    background-color: #f0f0f0;
    text-align: left;
    padding: 25px 25px;
    margin: 0 auto 15px auto;
    cursor: pointer;
    max-width: 1000px;
    border-radius: 10px;
}

.faq-section .section-desc {
    max-width: 700px;
    margin: 10px auto 40px auto;
}

.faq-section .question-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.faq-section img {
    width: 20px;
    height: auto;
}

.faq-section .question {
    font-weight: bold;
    font-size: 20px;
}

.faq-section .reponse-container {
    display: none;
    font-size: 18px;
    margin-top: 20px;
}

.title-mobile {
    display: none;
}

/* ###################################################
                    Header
################################################### */

header {
    padding: 20px 0;
    display: none;
    justify-content: center;
    width: 100%;
    font-size: 22px;
    font-weight: 400;
    position: fixed;
    z-index: 100;
    animation: showHeader .2s ease-in-out forwards;
    opacity: 0;
}

header ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    transition: .3s;
}

header .move {
    transform: translateX(0) !important;
    display: flex;
}

header a {
    text-decoration: none;
    color: black;
}

header span {
    font-weight: bold;
    font-size: 30px;
}

header .header-last a {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    transition: .1s;
}

header .header-last a:hover {
    scale: 105%;
}

@keyframes showHeader {
    100% {
        opacity: 1;
    }
}

header #sign-out {
    display: none;
}

header #header-dashboard-btn {
    display: none;
}

header .active {
    color: #ffd762;
}

header nav {
    width: 100%;
    padding-inline: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .menu_btn {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    appearance: none;
    display: none;
    outline: none;
    cursor: pointer;
}

header .menu_btn span{
    width: 100%;
    height: 2px;
    background-color: darkgray;
    border-radius: 5px;
}

header .menu_btn span:nth-child(3) {
    width: 70%;
}

header .header-logo {
    display: none;
    height: 30px;
    width: auto;
}

/* ###################################################
                    Compte
################################################### */

.signPage main a {
    text-decoration: none;
    color: #FF7A00;
}

.signPage main {
    padding: 70px 0;
}

.signPage {
    font-family: "Open Sans", sans-serif;
}

.signPage h1 {
    margin-bottom: 30px;
}

.signPage .container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.signPage .input-container {
    max-width: 500px;
    text-align: center;
}

.signPage .input-container > div > div:not([class="checkbox"]) {
    height: 90px;
    text-align: left;
}

.signPage .input-container .error {
    position: absolute;
    color: #cd3d64;
    display: none;
}

.signPage input, select  {
    width: 100%;
    height: 33px;
    background-color: #d8e0f0;
    border-radius: 5px;
    border: none;
    padding-left: 5px;
    font-weight: normal;
    font-size: 16px;
    outline-color: #A0CFFF;
    max-width: 100%;
    margin: 5px 0 2px;
}

.signPage .checkbox {
    margin-bottom: 25px;
    display: flex;
    text-align: left;
}

.signPage .container hr {
    margin: 0 0 20px 0
}

.signPage .notSubscribe {
    margin-bottom: 20px;
}

.signPage main button  {
    background-color: #FF7A00;
    height: 50px;
    width: 100%;
    font-size: 20px;
    border-radius: 10px;
    color: white;
    margin: 20px 0 50px 0;
    position: relative;
}

.inscriptionButton-loading span{
    visibility: hidden;
    opacity: 0;
}

.inscriptionButton-loading:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: inscriptionButton-loading 1s ease infinite;
}

@keyframes inscriptionButton-loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.invalid-account-error {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    text-wrap: nowrap;
}

.signPage .checkbox input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.iti {
    display: block;
    margin-bottom: 7px;
}

.signPage .iti__selected-flag {
    top: 6px;
    height: 33px !important;
    border-radius: 4px;
    transition: .3s;
}

input#phone {
    top: 6px;
}

.iti__country-list {
    border-radius: 4px !important;
    z-index: 999 !important;
    box-shadow: 0 0 16px 0 rgb(0 0 0 / 8%) !important;
    border: 1px solid #ececec !important;
    width: 270px !important;
}

.signPage #progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    margin: 20px auto;
    background-color: #ccc;
    border-radius: 10px;
    height: 6px;
}

.signPage .step {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    text-align: center;
    color: white;
    font-size: 14px;
    line-height: 40px;
    position: relative;
}

.signPage .step span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -130%);
    white-space: nowrap;
    color: black;
}

.signPage .forgetmdp-text {
    text-align: left;
    margin-bottom: 20px;
}

.signPage .code-input {
    height: 100px;
    width: 50px;
    font-size: 40px;
    text-align: center;
    background-color: #d8e0f0;
    border-radius: 5px;
    border: none;
}

.signPage #resend-email {
    color: #FF7A00;
    cursor: pointer;
}

.email-confirm p:first-of-type {
    margin-bottom: 10px;
}

.email-confirm p:last-of-type {
    margin-top: 20px;
}

.code-input input[type="number"] {
    -moz-appearance: textfield;
}

.code-input input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ###################################################
              Termes d'utilisation
################################################### */

.terms {
    background-color: white;
}


.terms main {
    letter-spacing: .3px;
    line-height: 35px;
    padding: 100px 0;
}

.terms h1 {
    font-size: 30px;
    margin-bottom: 50px;
}

.terms main img {
    margin: 0 auto;
}

.terms main span {
    font-weight: bold;
    display: inherit;
    font-size: 22px;
    color: black;
}

.terms main a {
    color: dodgerblue;
}

.terms .title-bar {
    width: 500px;
    margin-top: 460px;
    position: fixed;
    top: -300px;
    left: 6%;
    z-index: 10;
}

.terms .title-bar a {
    text-decoration: none;
    display: block;
    text-align: left;
    color: #ccc;
}

.terms .container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.terms .container-text {
    margin: 0 auto;
    text-align: center;
    max-width: 700px;
}

.terms .container-termes p, span {
    text-align: left;
}

.terms .container-termes {
    margin-top: 20px;
}


.terms .container-termes p {
    margin: 1px 0 50px 0;
}

.terms .title-bar a.active {
    color: #000; /* Couleur au clic (noir) */
}



/* ###################################################
                    Contact
################################################### */

.contact-bg {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
}

.contact div {
    padding-top: 300px;
    text-align: center;
    margin: 0 auto;
}

.contact main p {
    font-size: 25px;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.contact h1 {
    font-size: 40px;
}

.contact h1 a {
    text-decoration: none;
    color: black;
}

/* ###################################################
                    Bienvenue
################################################### */

.bienvenue main {
    padding-top: 200px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.bienvenue main div {
    max-width: 1000px;
    margin: 0 auto;
}

.bienvenue h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}

.bienvenue p {
    font-size: 24px;
    margin-bottom: 50px;
}

.bienvenue main button {
    background-color: black;
    color: white;
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 25px;
    transition: .2s;
}

.bienvenue svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}

.bienvenue path {
    stroke-dasharray: 2800;
    stroke-dashoffset: 2800;
    animation: dash 2s forwards;
}

.bienvenue .big {
    stroke-dasharray: 2800;
    stroke-dashoffset: 2800;
    animation: dash 3s forwards;
}

.bienvenue @keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

/* ###################################################
                       Forfait
################################################### */

.forfait .forfait-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.forfait {
    text-align: center;
}

.forfait h1 {
    font-size: 35px;
}

.forfait main {
    padding-top: 100px;
}

.forfait .forfait-desc-containter {
    font-size: 24px;
    margin: 10px 0 30px;
}

.forfait .paiement-secure {
    max-width: 700px;
    font-size: 12px;
    opacity: 70%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}

.forfait .paiement-secure .title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

/* ###################################################
               Confirmation paiement
################################################### */

.greenRec {
    background-color: #A9FFB2;
    height: 188px;
    width: 440px;
}

.greenRec p {
    color: #105106;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    margin: auto;
    transform: translateY(75%);
    max-width: 300px;
}

.greenRec img {
    position: absolute;
    margin-top: 15px;
    margin-left: 20px;
    width: 42px;
    height: auto;
}

.validDiv {
    display: flex;
    justify-content: space-between;
    margin: 50px auto 80px auto;
    text-align: left;
}

.infoPrix {
    transform: translateY(15px);
}

.prix {
    font-size: 38px;
    font-weight: bold;
}

.info {
    font-size: 15px;
    margin-bottom: 5px;
}

.reponse {
    font-size: 20px;
    margin-bottom: 10px;
}

.confirm-paiement .container {
    max-width: 700px;
    padding-top: 150px;
    margin: 0 auto;
    text-align: center;
}

.confirm-paiement .container h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.confirm-paiement .container a {
    background-color: black;
    color: white;
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 25px;
    text-decoration: none;;
}

.confirm-paiement .container > p {
    font-size: 22px;
}

.dh-text {
    margin-bottom: 40px;
}

.premium {
    color: #ff9815;
    font-weight: bold;
}

/* ###################################################
                    Tableau de bord
################################################### */

.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 130px;
}

.dashboard .dashboard-btn-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.dashboard .dashboard-btn-container button {
    background-color: #F0F0F0;
    border-radius: 10px;
    width: 100%;
    color: black;
    font-size: 30px;
    height: 60px;
    font-weight: bold;
    transition: .2s;
}

.dashboard .dashboard-btn-container .active {
    background-color: #F0DDC6;
    color: #CC8E4E;
}

.dashboard-container {
    width: 100%;
    background-color: #F0F0F0;
    border-radius: 20px;
    height: 100%;
    margin-top: 50px;
    padding: 20px 50px 50px 50px;
}

.dashboard h2 {
    font-size: 45px;
    margin-bottom: 30px;
}

.dashboard .title {
    font-size: 30px;
    font-weight: bold;
}

.dashboard .dashboard-container button {
    padding: 10px 20px;
    font-size: 20px;
    background-color: black;
    border-radius: 10px;
    color: white;
    position: relative;
}

.dashboard .dashboard-container #dashboard-compte > div:first-of-type button {
    background-color: white;
    color: black;
    font-size: 16px;
    height: 100%;
}

#dashboard-images, #dashboard-recette {
    display: none;
}

.dashboard #dashboard-compte .desc {
    font-size: 22px;
    max-width: 500px;
    margin: 5px 0 20px 0;
}

.dashboard #dashboard-compte > div:last-of-type {
    margin-top: 50px;
}

.flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 10px;
}

#images-list img {
    max-width: 100%;
}

#images-list div {
    flex: 0 0 calc(25% - 10px);
    max-width: 100%;
    height: auto;
    cursor: pointer;
    position: relative;
}

#images-list div p {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 100%;
    color: white;
    font-size: 20px;
}

.dashboard #dashboard-compte table {
    width: 100%;
    border-collapse: separate;
    margin-bottom: 10px;

    border-spacing: 0 10px;
}

.dashboard #dashboard-compte tr{
    background-color: white;
    border-radius: 20px;
}

.dashboard #dashboard-compte td {
    padding: 10px;
}

.dashboard .creation-date {
    font-size: 20px;
    margin-bottom: 40px;
}

.dashboard .has-not-abonnement {
    display: none;
}

#dashboard-recette {
    font-size: 20px;
}

#recette-header {
    position: relative;
    color: white;
    border-radius: 10px;
    padding: 20px 20px 100px 30px;
    background-size: cover;
    background-position: center;
}

#recette-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
    border-radius: 10px;
}

.recette-header-content {
    position: relative;
    z-index: 1;
}

#recette-name {
    font-size: 70px;
    font-weight: bold;
}

.recette-pays-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

#recette-pays-img {
    height: 30px;
    width: auto;
    background-size: cover;
    background-position: center;
}

#recette-pays {
    font-size: 25px;
}

#recette-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

#recette-desc {
    margin-bottom: 50px;
}

.recette-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

#etapes-list {
    margin-top: 20px;
    padding-left: 25px;
}

#etapes-list li {
    margin-bottom: 20px;
}


#dashboard-recette ul {
    list-style: none;
    padding: 0;
}

#dashboard-recette ul span {
    font-weight: bold;
    margin-right: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal p {
    font-size: 20px;
    margin-bottom: 20px;
}

.modal h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px 50px 50px;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.modal button {
    font-size: 20px;
    background-color: #F0DDC6;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    color: #CC8E4E;
    border-radius: 10px;
    position: relative;
}

.modal .modal-close {
    background-color: #d8e0f0;
    color: white;
}

.modif-modal input {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    font-size: 20px;
    padding-left: 10px;
}

.modal-button-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}

.email-confirmation {
    display: none;
}

#modal-resend-code {
    cursor: pointer;
}

#dashboard-compte h2 span {
    font-size: 22px;
    margin-left: 10px;
}

.badge-basic {
    color: #616161;
}

.badge-premium {
    color: #ff9815;
}

#dashboard-compte .circle {
    margin-left: auto;
    margin-right: auto;
}

.no-images, .no-premium-recette {
    color: #616161;
    font-size: 20px;
    text-align: center;
    margin: 50px 0 80px;
}

.image-container {
    display: none;
}

.num-images-container {
    font-size: 20px;
}

#ingredient-list {
    max-width: 1000px;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 50px;
}

#ingredient-list tr td:first-of-type {
    font-weight: bold;
    padding-right: 50px;
}

#ingredient-list tbody tr td {
    border-bottom: 1px solid #B1B1B1  !important;
}

.iti, .iti--allow-dropdown {
    width: 100% !important;
}

.dashboard .iti__selected-flag {
    top: 2px !important;
    height: 33px !important;
    border-radius: 4px;
    transition: .3s;
}

/* ###################################################
                    Footer
################################################### */

footer {
    background-color: #FF7A00;
    width: 100%;
    position: sticky;
    bottom: 0;
    top: 100%;
    display: block;
    padding: 50px 0 10px 0;
    margin-top: 100px;
    color: white;
}

footer > div {
    display: flex;
    max-width: var(--main-width);
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

footer a {
    text-decoration: none;
    color: white;
}

footer .footer-title {
    font-size: 100px;
    font-weight: bold;
}

footer .footer-desc {
    font-size: 25px;
}

footer .footer-nav-container a {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

footer > p {
    text-align: center;
    margin-top: 100px;
}

@media screen and (max-width: 992px) {

    h1 {
        font-size: 32px !important;
    }

    /* ###################################################
                    Accueil
    ################################################### */

    .pc-main-img {
        display: none;
    }

    .mobile-main-img {
        display: block;
    }

    .accueil h2 {
        font-size: 33px;
    }

    .pain-container {
        display: none;
    }

    .top-section > div {
        width: 100%;
        text-align: center;
    }

    .border-container {
        margin-top: 70px;
    }

    .stars-container > div {
        margin-bottom: 5px;
    }

    .nous-container {
        display: block;
    }

    .section-title {
        margin-top: 50px ;
    }

    .forfait-container > div {
        padding: 20px;
        margin-bottom: 15px;
        height: 550px;
    }

    .top-section a {
        margin-left: 0;
        font-size: 20px;
        padding: 10px 40px !important;
    }

    .grignage-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .grignage-section, .forfait-section, .service-section {
        padding: 0 20px;
    }

    .grignage-section .what-is-it {
        display: block;
        margin-top: 250px;
    }

    .grignage-section img {
        width: 80%;
        float: right;
    }

    iframe {
        width: 100%;
        height: calc(100vw - 50vw);
        margin: 10px 0;
    }

    .ble2 {
        display: none;
    }

    .ble {
        display: none;
    }

    .trace {
        display: none;
    }

    .forfait-section > div {
        display: block;
    }

    .forfait2-image {
        display: none;
    }

    .grignage-section .grignage-desc {
        font-size: 16px;
    }

    .grignage-desc:first-of-type p {
        text-align: center;
    }

    section:not(.top-section, .grignage-section, .contenu-email) {
       margin: 0 20px !important;
    }

    section:not(.top-section, .grignage-section) {
        margin-bottom: 150px;
    }

    .contenu-email {
        margin: 0 20px !important;
        display: block;
    }

    .contenu-email .title {
        font-size: 28px;
        line-height: 1.2;
        text-wrap: nowrap;
    }

    .levels-section .levels-container > div > img {
        margin-bottom: 10px;
    }

    .levels-section .levels-container {
        margin: 60px 0;
    }

    .how-it-work-section {
        padding-bottom: 100px !important;
    }

    .contenu-email > div:first-of-type .earth-image {
        display: none;
    }

    .country-mobile-version {
        display:flex;
    }

    .contenu-email .earth-image {
        width: 34vw;
    }

    .country-mobile-version p {
        margin: 0;
    }

    .country-p {
        margin-top: 10px !important;
    }

    .contenu-email .title-pc {
        display: none;
    }

    .nous-container h2 {
        text-align: center;
    }


    /* ###################################################
             Footer
 ################################################### */

    footer .footer-title {
        font-size: 35px;
    }

    footer .footer-desc {
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: bold;
    }

    footer > div{
        display: block;
    }

    footer {
        position: inherit;
        padding: 10px 20px 10px 20px;
        text-align: center;
    }

    footer > p {
        margin-top: 50px;
    }

    footer .footer-nav-container {
        margin-top: 20px !important;
    }

    /* ###################################################
                   Dashboard
   ################################################### */

    .dashboard-container {
        padding: 20px 25px 50px;
        margin-top: 20px;
    }

    .dashboard .dashboard-btn-container {
        gap: 10px;
        padding: 0 20px;
    }

    .dashboard .dashboard-btn-container button {
        font-size: 20px;
    }

    .dashboard #dashboard-compte table {
        font-size: 12px;
    }

    .dashboard .dashboard-container table button {
        padding: 0;
    }

    #images-list div {
        flex: 0 0 calc(50% - 10px);
    }

    .flex-grid {
        gap: 10px;
    }

    #images-list div p {
        font-size: 15px;
    }

    .dashboard {
        padding-top: 90px;
    }

    .contenu-email-img {
        width: 100%;
    }

    .contenu-email {
        padding-bottom: 70px;
    }

    .top-section-title {
        width: 100% !important;
    }

    .top-section .title-container {
        padding-top: 90px;
    }

    .top-section .title-container p:not(#rated) {
        font-size: 18px;
        max-width: 350px;
    }

    .top-section .title-container p {
        font-size: 13px;
    }

    .ratting img {
        width: 16px;
    }

    .grignage-desc-para p {
        text-align: left !important;
    }

    .title-mobile {
        display: block;
    }

    .contenue-email-title {
        text-align: center;
    }

    /* ###################################################
                Bienvenue
    ################################################### */

    .bienvenue main {
        padding-top: 140px;
        margin: 0 20px;
    }

    .bienvenue p {
        font-size: 20px;
    }

    /* ###################################################
            SignPage
    ################################################### */

    .signPage main {
        padding: 50px 0;
    }

    /* ###################################################
                Contact
    ################################################### */

    .contact h1 {
        font-size: 20px !important;
    }

    .contact main p {
        font-size: 25px;
    }

    .contact main {
        padding: 0 20px;
    }

    .contact div {
        padding-top: 150px;
    }

    /* ###################################################
                Forfait
    ################################################### */

    .forfait .paiement-secure {
        max-width: 700px;
        font-size: 16px;
        opacity: 70%;
        margin: 50px auto 50px auto;
        position: inherit;
        left: 0;
        transform: translateX(0);
        bottom: 0;
        padding: 0 20px;
    }

    .forfait .forfait-desc-containter {
        font-size: 20px;
    }

    /* ###################################################
              Confirmation paiement
  ################################################### */

    .validDiv {
        display: block;
        margin: 50px auto 40px auto;
        text-align: left;
    }

    .confirm-paiement main {
        padding: 0 20px 50px;
    }

    .greenRec {
        width: 100%;
    }

    .infoPrix {
        margin: 0 auto;
        text-align: center ;
    }

    .confirm-paiement .container {
        padding-top: 80px;
    }

    /* ###################################################
                    Termes d'utilisation
    ################################################### */

    .terms .title-bar {
        display: none;
    }

    .terms h1 {
        font-size: 25px !important;
    }

    .terms main {
        padding: 50px 20px;
    }

    /* ###################################################
                    Header
    ################################################### */

    header nav {
        padding-inline: 20px;
    }

    header ul {
        flex-direction: column;
        justify-content: flex-start;
        background-color: #FF7A00;
        width: 250px;
        height: 100vh;
        display: none;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
        transform: translateX(140%);
        padding-top: 100px;
        transition: 0.3s;
    }

    header a {
        color: white;
    }

    header .menu_btn {
        z-index: 1000;
        display: block;
    }

    header .menu_btn > span {
        z-index: 1000;
        display: block;
        margin-top: 5px;
        transition: .3s;
    }

    header .menu_btn.activeMenu>span:nth-child(2) {
        display: none;
    }

    header .menu_btn.activeMenu>span:nth-child(3) {
        width: 100%;
        transform: rotate(45deg) translateY(-5px);
    }

    header .menu_btn.activeMenu>span:nth-child(1) {
        transform: rotate(-45deg) translateY(5px);
    }

    header .header-logo {
        display: block;
    }

    header .header-title {
        display: none;
    }
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}