*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

div {
    position: relative;
    display: flex;
    overflow: hidden;
}

b {
    font-size: inherit;
    font-weight: 600;
    color: var(--black);
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
}

img {
    pointer-events: none;
}

::-webkit-scrollbar {
    display: none;
}

:root {
    --black: #000;
    --black-1: #101010;
    --black-2: #202020;
    --grey: #707070;
    --white: #FFF;
    --white-1: #EFEFEF;
    --white-2: #CCC;
    --color: #561472;

    --padding: 40px;
    --container: 1460px;
    --container-margin: 50px;
    --marges: calc(100vw - 1460px);
    --marge: calc(var(--marges)/2);
}

::selection {
    background: rgba(86, 20, 114, 0.25);
}
::-moz-selection {
    background: rgba(86, 20, 114, 0.25);
}

body {
    position: relative;
    width: 100vw;
    height: fit-content;
    overflow-x: hidden;
    overflow-y: scroll;
}

.container {
    width: 100%;
    max-width: 1720px;
    height: 100%;
    margin: auto;
    padding: 0 50px;
}

.container > .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* <<< --- Scroll top --- >>> */

.scroll-top {
    cursor: pointer;
    display: none;
    position: fixed;
    bottom: 75px;
    right: 15vw;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    border-radius: 50%;
    z-index: 100;
}

.scroll-top.-active {
    display: flex;
}

.scroll-top.-stopped {
    position: absolute;
    bottom: 245px;
}

.scroll-top::before {
    content: "";
    position: absolute;
    bottom: 16px;
    width: 2px;
    height: 0;
    background-color: var(--color);
    transition: .2s ease;
    z-index: 110;
}

.scroll-top-icon {
    position: relative;
    display: flex;
    width: 16px;
    height: fit-content;
    transform: translateY(-1px);
    transition: .2s ease;
    color: var(--color);
}

@media (hover: hover) {
    .scroll-top:hover {
        border: 1px solid var(--color);
    }

    .scroll-top:hover::before {
        height: 16px;
    }

    .scroll-top:hover .scroll-top-icon {
        transform: translateY(-4px);
    }
}
@media screen and (max-width: 1960px) {
    .scroll-top {
        right: 100px;
    }
}
@media screen and (max-width: 1580px) {
    .scroll-top {
        right: 50px;
    }
}
@media screen and (max-width: 1470px) {
    .scroll-top {
        right: 25px;
    }
}
@media screen and (max-width: 1420px) {
    .scroll-top {
        right: 25px;
    }
}
@media screen and (max-width: 500px) {
    .scroll-top {
        right: 15px;
    }
}

/* <<< --- BG FIXED --- >>> */

#bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-image: url(../imgs/background.jpg);
    background-position: center;
    background-size: cover;
}

/* <<< --- HEADER --- >>> */

#header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 30px;
}

.header-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 30px;
}

.header-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.header-burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color);
    border-radius: 2px;
    transition: .25s ease;
}

.header-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    text-wrap: nowrap;
    line-height: 58px;
    height: 60px;
    width: fit-content;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    user-select: none;
    transition: .2s ease;
}
.header-link.active {
    color: var(--color);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--white);
    pointer-events: none;
}
.header-link:hover {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--white);
}


/* <<< --- BANNER --- >>> */

#banner {
    position: relative;
    width: 100vw;
    height: 780px;
    background-image: url(../imgs/background-home.jpg);
    background-position: center;
    background-size: cover;
    padding: 200px 0 80px 0;
}

#banner.main {
    height: 100vh;
    min-height: 940px;
    padding: 200px 0 100px 0;
}

#banner .content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-shrink: 0;
    overflow: hidden;
}

.banner-card {
    width: calc(100% - 780px - 50px);
    max-width: 500px;
    height: fit-content;
    margin: 0 70px;
    border-radius: 30px;
    user-select: none;
    pointer-events: none;
}

@media screen and (max-width: 1570px) {
    .banner-card {
        margin: 0;
    }
}

#banner.main .banner-card {
    max-width: 640px;
    margin: 0;
}

.banner-content {
    width: 780px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    gap: 30px;
    padding: 20px 0;
}

.banner-title-wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 20px;
}

.banner-title {
    width: 100%;
    height: fit-content;
    font-family: 'Newsreader';
    font-size: 80px;
    font-weight: 400;
    font-style: italic;
    color: var(--color);
    line-height: 100px;
    text-align: left;
}
.banner-subtitle {
    width: 100%;
    height: fit-content;
    font-family: 'Newsreader';
    font-size: 50px;
    font-weight: 400;
    font-style: italic;
    color: var(--color);
    line-height: 60px;
    text-align: right;
}

.banner-description-wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 0;
}

.banner-description {
    width: 100%;
    height: fit-content;
    font-family: 'Newsreader';
    font-size: 34px;
    font-weight: 400;
    font-style: italic;
    color: var(--color);
    line-height: 50px;
    text-align: right;
}
.banner-subdescription {
    width: 100%;
    height: fit-content;
    font-size: 18px;
    font-weight: 400;
    color: var(--color);
    line-height: 40px;
    text-align: right;
}

.banner-logo-wrap {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 30px;
    padding: 20px 60px;
    background: linear-gradient(rgba(254, 252, 244, 0.5), rgba(255, 242, 219, 0.5));
    border: 1px solid var(--white);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    user-select: none;
}

.banner-logo {
    width: 140px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 0;
}

.banner-logo > img {
    width: 100%;
    height: fit-content;
    pointer-events: none;
    user-select: none;
}


/* <<< --- PAGE --- >>> */

#page {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
}

#page.main .content {
    gap: 60px;
    padding: 120px 0;
}
#page .content {
    gap: 120px;
    padding: 80px 60px 120px 60px;
}

.content-wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 80px;
}

.page-title {
    width: 100%;
    height: fit-content;
    font-family: 'Newsreader';
    font-size: 42px;
    font-weight: 500;
    line-height: 50px;
    color: var(--color);
    text-align: center;
    text-transform: uppercase;
}

.page-description {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    height: fit-content;
    font-family: 'Newsreader';
    font-style: italic;
    font-size: 30px;
    line-height: 40px;
    color: var(--color);
    text-align: center;
    padding-bottom: 60px;
}

.page-description .inter {
    font-size: 24px;
    font-weight: 500;
    font-family: 'inter';
    font-style: normal;
}

.page-card-item {
    width: 100%;
    height: fit-content;
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    border-radius: 30px;
    overflow: hidden;
}

.page-card-item.-infos {
    gap: 0;
    height: 520px;
}

.page-card-item > p,
.page-card-p-wrap > p,
.page-card-item .wrap > p {
    width: 100%;
    height: fit-content;
    font-size: 20px;
    line-height: 40px;
    color: var(--black);
    text-align: justify;
    text-align-last: left;
}

.page-card-cover-img {
    width: 420px;
    min-width: 420px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-card-item.-infos .page-card-cover-img {
    width: 280px;
    min-width: 280px;
    height: 100%;
}
#ayurveda .page-card-cover-img {
    height: 720px;
    background-image: url(../imgs/Dhanvantari.png);
}
#mon-approche .page-card-cover-img {
    height: 480px;
    background-image: url(../imgs/rendez-vous.jpg);
}
#types-desequilibres .page-card-cover-img {
    height: 520px;
    background-image: url(../imgs/pouls.jpg);
}
#qui-suis-je .page-card-cover-img {
    height: 560px;
    background-image: url(../imgs/photo-meylina.jpg);
}
#remerciements .page-card-cover-img {
    height: 720px;
    background-image: url(../imgs/booddha-gold.png);
}
#reservation-coordonnees .page-card-cover-img {
    background-image: url(../imgs/Dhanvantari-bg.png);
}
#lieu-consultation .page-card-cover-img {
    background-image: url(../imgs/Swarna-Akarshana-Bhairava.png);
}
#tarifs-moyens-paiement .page-card-cover-img {
    background-image: url(../imgs/Mahalakshmi.png);
}

.page-card-item > img {
    width: fit-content;
    height: 330px;
}

.page-card-item-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    padding: 25px 0;
}

.page-card-item-title {
    width: 100%;
    height: fit-content;
    font-size: 48px;
    font-weight: 500;
    font-family: 'Newsreader';
    line-height: 50px;
    color: var(--color);
}

.page-card-item-description {
    width: 100%;
    height: fit-content;
    font-size: 28px;
    line-height: 50px;
    color: var(--black);
    text-align: justify;
    text-align-last: left;
}

.page-card-big-item {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    padding-top: 550px;
}

.page-card-big-item > img {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    width: fit-content;
    height: 600px;
}

.page-card-big-item-content {
    width: 100%;
    height: fit-content;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    border-radius: 30px;
    overflow: hidden;
}

.page-card-p-wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.page-card-p-list {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
}

.page-card-p-list-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 20px;
}

.page-card-p-list-item > img {
    width: fit-content;
    height: 30px;
    margin-top: 5px;
}

.page-card-p-list-item > span {
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    color: var(--black);
}

.page-card-item-infos {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    .page-title {
        cursor: default;
    }
    .wrap {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        gap: 50px;
    }
    .wrap.-payment {
        gap: 30px;
        user-select: none;
        pointer-events: none;
        svg, img {
            width: fit-content;
            height: 30px;
            color: var(--black);
            user-select: none;
            pointer-events: none;
        }
    }
    svg {
        width: fit-content;
        height: 60px;
        color: var(--color);
    }
}

.page-card-infos-description {
    width: 100%;
    height: fit-content;
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
}

.page-card-infos-price {
    width: 100%;
    height: fit-content;
    font-family: 'Newsreader';
    font-size: 64px;
    font-weight: 400;
    color: var(--color);
    line-height: 100px;
    text-align: center;
    cursor: default;
}

span > a, p > a {
    text-decoration: underline;
}
span > a:hover, p > a:hover {
    color: var(--color);
}

#vata, #pitta, #kapha {
    align-items: center;
}


/* <<< --- PRAKRTI --- >>> */

.prakrti-items-wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 50px;
}

.prakrti-items {
    width: fit-content;
    min-width: 250px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 0;
}

.prakrti-items-line {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.prakrti-items-line-img {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}
.prakrti-items-line img {
    width: fit-content;
    height: 40px;
}

.prakrti-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--black);
    line-height: 50px;
}
.prakrti-subtitle {
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--black);
    line-height: 50px;
    text-wrap: wrap;
    padding-left: 20px;
}

/* <<< --- BUT AYURVEDA --- >>> */

#but-ayurveda > img {
    width: 50%;
    height: fit-content;
}

.but-ayurveda-content {
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 30px;
}

.but-ayurveda-content > p {
    width: 100%;
    height: fit-content;
    font-size: 20px;
    line-height: 40px;
    color: var(--black);
    text-align: justify;
    text-align-last: left;
}

.but-ayurveda-list-wrap {
    width: 100%;
    height: fit-content;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
}

.but-ayurveda-list-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    gap: 20px;
}

.but-ayurveda-list-item > img {
    width: fit-content;
    height: 40px;
}

.but-ayurveda-list-item > span {
    font-size: 24px;
    font-weight: 400;
    line-height: 60px;
    color: var(--black);
}


/* <<< --- QUI SUIS-JE --- >>> */

#qui-suis-je .page-card-item {
    flex-direction: column;
    gap: 0;
}

#qui-suis-je .page-card-item .wrap {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 50px;
}


/* <<< --- FOOTER --- >>> */

#footer {
    position: relative;
    width: 100%;
    height: fit-content;
    background: #FEF9F4;
}
#footer .content {
    width: 100%;
    height: 270px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.footer-wrap {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}
.footer-wrap.-right {
    align-items: flex-end;
}

.footer-right {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    line-height: 40px;
    cursor: default;
}

.footer-wrap a {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    svg {
        width: 100%;
        max-width: 20px;
        height: 100%;
        max-height: 20px;
        color: var(--black);
    }
}
.footer-wrap a:hover svg {
    color: var(--color);
}

.footer-link {
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
    color: var(--black);
    line-height: 40px;
}
.footer-link:hover {
    color: var(--color);
}


/* <<< ============================ --- >>> */
/* <<< --- RESPONSIVE --- >>> */
/* <<< ============================ --- >>> */

body.-menu-open {
    overflow: hidden;
}

/* <<< --- 1024px : tablette / bascule menu burger --- >>> */

@media screen and (max-width: 1260px) {
    .banner-card {
        display: none;
    }
    .banner-content {
        width: 100%;
    }
    .page-card-item > img {
        height: 200px;
    }
    .page-card-item > p {
        font-size: 16px;
        line-height: 30px;
    }
    .page-card-item-description {
        font-size: 20px;
        line-height: 40px;
    }
    .page-description {
        font-size: 24px;
        .inter {
            font-size: 20px;
        }
    }
}

@media screen and (max-width: 1024px) {
    .scroll-top.-stopped {
        bottom: 300px;
    }

    .banner-card {
        display: initial;
    }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 20px 20px 0 20px;
        justify-content: flex-end;
    }

    .header-burger {
        display: flex;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        z-index: 1100;
        transition: .2s ease;
    }
    .header-burger.-active {
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid var(--white);
    }
    .header-burger.-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .header-burger.-active span:nth-child(2) {
        opacity: 0;
    }
    .header-burger.-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1050;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background: linear-gradient(rgba(254, 252, 244, 0.9), rgba(255, 242, 219, 0.9));
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }
    .header-nav.-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-link {
        width: 80%;
        max-width: 320px;
        text-align: center;
    }

    .container {
        padding: 0 30px;
    }
    .container > .content {
        padding: 0 20px;
    }

    #banner,
    #banner.main {
        height: auto;
        min-height: unset;
        padding: 60px 0;
    }

    #banner .content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .banner-card,
    #banner.main .banner-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
    }

    .banner-content {
        align-items: center;
        gap: 24px;
        padding: 0;
    }

    .banner-title-wrap {
        align-items: center;
    }

    .banner-title {
        font-size: 48px;
        line-height: 56px;
        text-align: center;
    }
    .banner-subtitle {
        font-size: 26px;
        line-height: 34px;
        text-align: center;
    }

    .banner-description-wrap {
        align-items: center;
    }

    .banner-description {
        font-size: 22px;
        line-height: 32px;
        text-align: center;
    }
    .banner-subdescription {
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .banner-logo-wrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 16px 24px;
    }

    .banner-logo {
        width: 100px;
    }

    #page.main .content {
        gap: 40px;
        padding: 60px 20px;
    }
    #page .content {
        gap: 60px;
        padding: 60px 20px 80px 20px;
    }

    .content-wrap {
        gap: 40px;
    }

    .page-title {
        font-size: 30px;
        line-height: 38px;
    }

    .page-description {
        font-size: 22px;
        line-height: 32px;
        padding-bottom: 30px;
    }
    .page-description .inter {
        font-size: 18px;
    }

    .page-card-item {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    .page-card-item.-infos {
        height: auto;
    }

    .page-card-item > p,
    .page-card-p-wrap > p,
    .page-card-item .wrap > p {
        font-size: 17px;
        line-height: 30px;
    }

    .page-card-cover-img {
        width: 100%;
        min-width: unset;
        height: 240px;
        background-size: contain;
    }
    .page-card-item.-infos .page-card-cover-img {
        width: 100%;
        min-width: unset;
        height: 200px;
    }
    #ayurveda .page-card-cover-img {
        height: 320px;
    }
    #mon-approche .page-card-cover-img {
        height: 240px;
    }
    #types-desequilibres .page-card-cover-img {
        height: 260px;
    }
    #qui-suis-je .page-card-cover-img {
        height: 280px;
    }
    #remerciements .page-card-cover-img {
        height: 320px;
    }

    .page-card-item > img {
        width: auto;
        height: 200px;
        margin: 0 auto;
    }

    .page-card-item-content {
        padding: 0;
        gap: 16px;
    }

    .page-card-item-title {
        font-size: 32px;
        line-height: 38px;
    }

    .page-card-item-description {
        font-size: 18px;
        line-height: 30px;
    }

    .page-card-big-item {
        padding-top: 310px;
    }
    .page-card-big-item > img {
        height: 340px;
    }
    .page-card-big-item-content {
        padding: 24px;
        gap: 24px;
    }

    .page-card-p-list-item > span {
        font-size: 17px;
        line-height: 28px;
    }

    .page-card-item-infos {
        padding: 24px 0;
        gap: 30px;
    }
    .page-card-item-infos .wrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .page-card-item-infos .wrap.-payment {
        gap: 16px;
    }
    .page-card-item-infos svg {
        height: 44px;
    }

    .page-card-infos-description {
        font-size: 18px;
        line-height: 30px;
    }
    .page-card-infos-price {
        font-size: 44px;
        line-height: 64px;
    }

    .prakrti-items-wrap {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0;
    }
    .prakrti-items {
        max-width: 100%;
        width: 300px;
        align-items: flex-start;
        text-align: left;
    }
    .prakrti-items-line {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: flex-start;
    }
    .prakrti-items-line-img {
        justify-content: center;
    }
    .prakrti-items-line img {
        height: 32px;
    }
    .prakrti-title {
        font-size: 24px;
        line-height: 36px;
    }
    .prakrti-subtitle {
        font-size: 20px;
        line-height: 32px;
        padding-left: 0;
        text-align: center;
    }

    #but-ayurveda > img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .but-ayurveda-content {
        width: 100%;
    }
    .but-ayurveda-content > p {
        font-size: 17px;
        line-height: 30px;
    }
    .but-ayurveda-list-item > span {
        font-size: 18px;
        line-height: 34px;
    }

    #qui-suis-je .page-card-item .wrap {
        flex-direction: column;
        gap: 20px;
    }

    #qui-suis-je .page-card-item {
        gap: 20px;
    }

    #footer .content {
        flex-direction: column;
        height: auto;
        gap: 24px;
        padding: 40px 0;
        text-align: center;
    }
    .footer-wrap,
    .footer-wrap.-right {
        align-items: center;
    }
    .footer-wrap a {
        justify-content: center;
    }

}

/* <<< --- 640px : mobile --- >>> */

@media screen and (max-width: 640px) {

    #header {
        padding: 16px 16px 0 16px;
    }
    .header-burger {
        width: 52px;
        height: 52px;
    }
    .header-link {
        font-size: 18px;
        padding: 0 22px;
        height: 52px;
        line-height: 50px;
    }

    .container {
        padding: 0 16px;
    }
    .container > .content {
        padding: 0 10px;
    }

    #banner,
    #banner.main {
        padding: 110px 0 50px 0;
    }

    .banner-title {
        font-size: 36px;
        line-height: 42px;
    }
    .banner-subtitle {
        font-size: 20px;
        line-height: 28px;
    }
    .banner-description {
        font-size: 18px;
        line-height: 28px;
    }
    .banner-subdescription {
        font-size: 14px;
        line-height: 24px;
    }
    .banner-logo-wrap {
        gap: 14px;
        padding: 14px 16px;
    }
    .banner-logo {
        width: 80px;
    }

    #page.main .content {
        padding: 50px 16px;
    }
    #page .content {
        padding: 50px 16px 60px 16px;
    }
    .content-wrap {
        gap: 30px;
    }

    .page-title {
        font-size: 24px;
        line-height: 32px;
    }
    .page-description {
        font-size: 18px;
        line-height: 28px;
        padding-bottom: 24px;
    }
    .page-description .inter {
        font-size: 16px;
    }

    .page-card-item,
    .page-card-big-item-content {
        padding: 18px;
        gap: 18px;
    }

    .page-card-item-title {
        font-size: 26px;
        line-height: 32px;
    }

    .page-card-big-item {
        padding-top: 220px;
    }
    .page-card-big-item > img {
        height: 240px;
    }

    .page-card-infos-price {
        font-size: 34px;
        line-height: 50px;
    }

    .prakrti-title {
        font-size: 20px;
        line-height: 30px;
    }
    .prakrti-subtitle {
        font-size: 17px;
        line-height: 28px;
    }

    .but-ayurveda-list-item > span {
        font-size: 16px;
        line-height: 30px;
    }

}

/* <<< --- 400px : petits mobiles (jusqu'à 375px) --- >>> */

@media screen and (max-width: 400px) {

    .container {
        padding: 0 12px;
    }
    .container > .content {
        padding: 0;
    }

    .header-link {
        width: 90%;
        font-size: 17px;
        padding: 0 18px;
    }

    .banner-title {
        font-size: 30px;
        line-height: 36px;
    }
    .banner-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    .banner-logo {
        width: 70px;
    }

    .page-card-item-title {
        font-size: 22px;
        line-height: 28px;
    }

    .page-card-infos-price {
        font-size: 28px;
        line-height: 42px;
    }

}