@font-face {
    font-family: 'Garet';
    src: url('../font/Garet-Book.ttf');
}

@font-face {
    font-family: 'Season';
    src: url('../font/Fontspring-DEMO-theseasons-lt.otf');
    /* src: url('../font/Fontspring-DEMO-theseasons-reg.otf'); */
}

:root {
    --bg-color: #18201E;
    --text-beige: #CFAF7E;
    --text-white: #FFFBF5;
    --light-green: #243535;
    --max-width: 1200px;
    --header-font: 'Season'
}

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

/* PRELOADER */

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s;
}

.preloader-logo img {
    opacity: 0;
    animation: fondu 2s ease-in-out forwards;
}

@keyframes fondu {
    0% {
        opacity: 0;
        width: 10rem;
    }

    100% {
        opacity: 1;
        width: 250px;
    }
}

/* Animation pour cacher le preloader */
.hide-preloader {
    opacity: 0;
    pointer-events: none;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 2rem;
}

.section__header {
    max-width: 450px;
    margin-inline: auto;
    font-size: 2.5rem;
    font-weight: 500;
    font-family: var(--header-font);
    color: var(--text-beige);
    line-height: 3rem;
}

.section__description {
    text-align: justify;
    max-width: 450px;
    margin-block: 1rem;
    margin-inline: auto;
    color: var(--text-white);
}

.btn {
    margin: 1rem;
    text-align: center;
    padding: 10px 0px 10px 2px;
    font-family: 'Garet';
    color: var(--text-beige);
    background-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-top: 1px solid var(--text-white);
    border-bottom: 1px solid var(--text-white);
    transition: all 0.5s ease;
    cursor: pointer;
}

.btn:hover {
    padding: 10px 15px;
    border: 1px solid var(--text-beige);
    box-shadow: 0 10px 6px rgba(0, 0, 0, 0.5);
}

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Garet', sans-serif;
    background-color: var(--bg-color);
}

/* NAVIGATION */
nav {
    position: fixed;
    isolation: isolate;
    width: 100%;
    z-index: 9;
    box-shadow: 0 7px 4px rgba(0, 0, 0, 0.5);
    background-color: var(--bg-color);
}

.nav__header {
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
}

.logo img {
    width: 40px;
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--text-beige);
    cursor: pointer;
}

.nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 2rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--light-green);
    transition: .5s;
    z-index: -1;
    transform: translateY(-100%);
}

.nav__links.open {
    transform: translateY(0);
}

.link a {
    color: var(--text-beige);
    transition: .3s;
}

.link a:hover {
    color: var(--text-white);
}

.nav__btns {
    display: none;
}

/*************** PAGE HOME ****************/

/* HEADER SECTION */
.header {
    background-image: url(../img/bg-marimar-dark.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    max-height: 100vh;
}

.header__container {
    padding-block: 8rem;
    display: grid;
    justify-items: center;
    gap: 6rem;
}

.header__container h1 {
    text-align: center;
    font-size: .9rem;
    color: var(--text-white);
    /* letter-spacing: 1px; */
}

.logo__header {
    margin-top: 1.8rem;
    max-width: 500px;
}

.header .btn {
    letter-spacing: .5rem;
}

.scroll {
    position: relative;
    top: -2rem;
    width: 64px;
}


/* OFFERS */

.offer__container,
.contact__container {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.offer__image img {
    /* width: max-content; */
    max-width: 400px;
    margin-inline: auto;
}

.offer__btn {
    margin: 3rem 0;
}

/* PRODUCTS */
.header__products,
.header__valeur {
    text-align: center;
}

.products__grid {
    margin-top: 2rem;
    padding: 2rem;
    max-width: 400px;
    margin: auto;
}

.product__card {
    margin-bottom: 2rem
}

.product__details {
    padding: 1rem;
}

.product__details {
    margin-inline: auto;
    color: var(--text-white);
    display: grid;
    justify-items: center;
    gap: 1rem;
    border: 1px solid var(--text-beige);
}

.product__details .btn {
    margin-bottom: 0;
}

/* VIDEO */
.vid__container {
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: url('../img/BG-VIDEO.png');
    background-size: cover;
    background-position: center;
    max-width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(24, 32, 30, 0.8);
}

video {
    height: 550px;
    /* height: auto; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--text-beige);
    padding: 1.5rem;
}

/* VALEUR */
.circle {
    width: 132px;
    height: 132px;
    background-color: transparent;
    border: 1px solid var(--text-beige);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.icon__section p {
    color: var(--text-white);
    text-align: center;
}

.header__valeur {
    max-width: 100%;
}


.valeur__grid {
    margin-top: 7rem;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
}

.icon__section {
    margin-bottom: 2rem;
}

.circle p {
    font-size: 1.5rem;
}


/* CONTACT */

.header__contact {
    text-align: center;
}

.contact__content {
    display: grid;
    text-align: center;
    border: 1px solid var(--text-beige);
    gap: 2rem;
    color: var(--text-white);
    padding: 1rem;
    /* min-width: 450px; */
    max-width: 450px;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    /* background: var(--light-green); */
    /* transition: all .5s ease; */
}

.contact__content h3 {
    letter-spacing: .4rem;
}

.contact__content i {
    font-size: 1.5rem;
    margin: 1rem;
    transition: color .5s ease;
}

.contact__content p,
.contact__content i {
    color: var(--text-beige);
}

.contact__content .social__icons {
    margin-top: 1rem;
}

.contact__image {
    /* margin: auto; */
    /* width: max-content; */
    max-width: 450px;
}

/* FOOTER SECTION */

.footer {
    color: var(--text-white);
    text-align: center;
    background-color: #2435355c;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

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

.footer__content a {
    color: var(--text-beige);
    transition: all .5s ease-in-out;
}

.footer__logo {
    max-width: 300px;
    padding: 2rem;
}

.info__col {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.copy {
    font-size: .6rem;
}

/*************** PAGE BOUTIQUE ****************/

/* HEADER SECTION */
.header__shop,
.header__about {
    background-image: url(../img/bg-marimar-dark.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* min-height: 70vh; */
}

.header__shop__container,
.about__container {
    padding-block: 8rem;
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 6rem;
}

.header__shop__container h2,
.about__container h2 {
    text-align: center;
    font-size: 1rem;
    color: var(--text-white);
    /* letter-spacing: .8rem; */
}

.header__shop__container h1,
.about__container h1 {
    text-align: center;
    margin-top: 2rem;
    font-size: 4rem;
}

.shop__products__grid {
    display: grid;
    margin-top: 2rem;
    justify-content: center;
    /* padding: 2rem; */
    /* max-width: 400px; */
    margin: auto;
    justify-items: center;
    gap: 2rem;
}

.grid-item {
    position: relative;
    width: 70vw;
    height: 70vw;
    padding: .5rem;
    border: solid 1px var(--text-beige);
}

.grid-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    transition: all .5s ease-in-out;
}

.overlay-prod {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    /* background-color: rgb(24, 32, 30, 0.8); */
}

.overlay-prod p {
    color: var(--text-beige);
    font-size: 2rem;
    margin: 0;
    font-family: Season;
    transition: all .5s ease-in-out;
}

.grid-item:hover img {
    opacity: 1;
}

.grid-item:hover .overlay-prod p {
    font-size: 4rem;
    color: var(--text-white);
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 1);
}

.shop__products__container p {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
}

.shop__products__container h2 {
    font-family: Season;
    font-size: 26px;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-beige);
}

.overlay-prod p {
    margin-bottom: 0;
}


/* PAGE PRODUIT */
.product__images__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-items: center;
}

.product__img {
    width: 23.5vw;
    height: 23.5vw;
    object-fit: cover;
}

.single__product {
    margin-top: 3rem;
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
}

.product__infos {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--text-white);
}

.retour a {
    color: var(--text-beige);
    transition: all .5s ease-in-out;
}

.information__container {
    color: var(--text-white);
    padding: 1.5rem;
    line-height: 2rem;
}

.info1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--text-beige);
}

.info1 p {
    margin-bottom: 0.5rem
}

.info2 {
    text-align: justify;
    line-height: 2rem;
    border-bottom: 1px solid var(--text-beige);
}

.info3,
.info4 {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--text-beige);
}

.info3 input,
.info4 input {
    height: 2rem;
    width: 3rem;
    background: transparent;
    color: var(--text-beige);
    border-top: 1px solid var(--text-white);
    border-bottom: 1px solid var(--text-white);
    font-family: Garet;
    font-size: 1rem;
}

.info3 input[type="number"] {
    text-align: center;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-beige);
    /* Remplacez #999 par la couleur de votre choix */
}

.submit__btn {
    display: flex;
    text-align: center;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.submit__btn a {
    letter-spacing: 3px;

}

.information__container p {
    text-align: justify;
}

/* ABOUT PAGE */
.story__container {
    background-image: linear-gradient(#18201edd, #000000b5), url(../img/histoire.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* max-height: 100vh; */
    max-width: 100%;
}

.story__grid {
    display: grid;
    justify-content: center;
}

.section__subheader {
    font-family: Season;
    font-size: 24px;
    color: var(--text-beige);
    margin-top: 2rem;
}

.nos__val__content h2 {
    font-size: 48px;
    font-family: Season;
    color: var(--text-beige);
}

.conception__container {
    background-image: linear-gradient(#000000db, #18201edd), url(../img/conception.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* max-height: 100vh; */
    max-width: 100%;
}

.conception__content {
    display: grid;
    justify-items: center;
    text-align: center;
}

.conception__content h2,
.conception__content h3 {
    font-size: 32px;
    font-family: Season;
    color: var(--text-beige);
}

.concep__btns {
    margin-top: 2rem;
    display: grid;
}

.who__container {
    max-width: 450px;
    /* margin-block: 1rem; */
    /* margin-inline: auto; */
    color: var(--text-white);
    padding: 0rem 2rem;
}

.who__container img {
    margin-top: 2rem;
}


/* PAGE CONTACT */
.section__contact {
    color: var(--text-white);
}

.section__contact a {
    color: var(--text-beige);
}

.form__infos {
    display: grid;
    gap: 2rem;
}



.swal2-popup.swal2-toast.swal2-icon-success.swal2-show,
.swal2-popup.swal2-toast.swal2-icon-info.swal2-show,
.swal2-popup.swal2-toast.swal2-icon-error.swal2-show,
.swal2-popup.swal2-modal.swal2-icon-error.swal2-show,
.swal2-popup.swal2-modal.swal2-icon-info.swal2-show,
.swal2-popup.swal2-modal.swal2-icon-warning.swal2-show,
.swal2-popup.swal2-modal.swal2-icon-success.swal2-show {
    background: var(--light-green);
    border: 1px solid #CFAF7E;
    color: #FFFBF5;
}

.swal2-confirm.swal2-styled {
    background-color: #CFAF7E;
}

.swal2-popup {
    border: solid 1px #CFAF7E;
}

.swal2-timer-progress-bar {
    background: var(--bg-color);
}


@media (width > 500px) {
    .products__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0;
        max-width: 500px;

    }
}


/* MEDIA QUERIES */
@media (width > 768px) {


    @keyframes fondu {
        0% {
            opacity: 0;
            width: 10rem;
        }

        100% {
            opacity: 1;
            width: 500px;
        }
    }


    /* CART */
    .cart_num {
        position: absolute;
        font-size: 12px;
        margin-left: .3rem;
        color: var(--text-beige);
        margin-top: .5rem;
    }

    /* HEADER */
    .header {
        min-height: 90vh;
    }

    .header__container {
        /* padding-block: 5rem; */
    }

    .header__container h1 {
        letter-spacing: .8rem;
    }

    .section__header,
    .section__description {
        margin-inline-start: inherit;
    }

    /* NAVIGATION */
    nav {
        /* position: static; */
        padding: .5rem 3rem;
        max-width: 100vw;
        /* max-width: var(--max-width); */
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .link a:hover {
        color: var(--text-beige);
    }

    .link a.active {
        color: var(--text-beige);
    }

    .nav__header {
        flex: 1;
        padding: 0;
        background-color: transparent;
    }

    .nav__menu__btn,
    li.login,
    li.cart {
        display: none;
    }

    .nav__links {
        position: static;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none;
        gap: 3rem;
    }

    .nav__links a {
        color: var(--text-white);
    }

    .nav__btns {
        display: flex;
        flex: 1;
        gap: 2rem;
        font-size: 1.3rem;
    }

    .nav__btns span a {
        color: var(--text-white);
    }


    /* OFFERS */
    .offer__container {
        grid-template-columns: 2fr 1fr;
        align-items: center;
        text-align: left;
    }


    .offer__content {
        max-width: 500px;
        margin-left: 3rem;
    }

    .offer__btn {
        margin: 3rem 2rem;
    }

    /* PRODUCTS */
    .header__products {
        margin-inline-start: auto;
    }

    .products__grid {
        min-width: 100%;
    }

    .products__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .products__gridCol {
        display: flex;
        justify-content: space-around;
        min-width: 100%;
        gap: 1.5rem;
    }

    .product__details {
        margin-inline: auto;
        color: var(--text-white);
        display: grid;
        justify-items: center;
        gap: 1rem;
        border: 1px solid var(--text-beige);
    }

    .product__details h3 {
        letter-spacing: .4rem;
    }

    /* VALEUR */

    .header__valeur {
        max-width: 100%;
    }


    .valeur__grid {
        /* margin-top: 3rem; */
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .circle {
        width: 128px;
        height: 128px;
        background-color: transparent;
        border: 1px solid var(--text-beige);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 10px;
        transition: all 0.5s ease;

    }

    .icon__section:hover .circle {
        /* margin-top: -10px; */
        background-color: var(--light-green);
        box-shadow: 0 10px 6px rgba(0, 0, 0, 0.5);
    }

    .icon__section p {
        color: var(--text-white);
        text-align: center;
    }

    .circle p {
        font-size: 2rem;
    }

    /* CONTACT */
    .contact__container {
        grid-template-columns: 1fr 2fr;
        align-items: center;
        text-align: left;
    }

    .contact__content {
        min-width: 480px;
    }

    .contact__content i:hover {
        color: var(--text-white);
    }

    /* FOOTER SECTION */
    .footer {
        color: var(--text-white);
        text-align: center;
        background-color: #2435355c;

    }

    .footer__content {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 40vh;
    }

    .footer__content a {
        color: var(--text-beige);
        transition: all .5s ease-in-out;
    }

    .footer__content a:hover {
        color: var(--text-white);
    }

    .footer__logo {
        width: 30%;
        padding: 2rem;
    }

    .footer__infos {
        width: 70%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .info__col {
        display: grid;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }

    .info__col h2 {
        font-family: Season;
    }


    /*************** PAGE BOUTIQUE ****************/
    .header__shop__container h2,
    .about__container h2:nth-child(1) {
        letter-spacing: .8rem;
    }

    .shop__products__container p {
        padding: 0 3rem;
        text-align: center;
        margin-bottom: 4rem;
        color: var(--text-white);
    }

    .shop__products__container h2 {
        font-family: Season;
        font-size: 32px;
        padding: 0 2rem;
        text-align: center;
        margin-bottom: 2rem;
        color: var(--text-beige);
    }


    .shop__products__grid {
        display: grid;
        justify-items: center;
        grid-template-columns: repeat(2, 1fr);
        /* grid-auto-rows: auto; */
        gap: 2rem;
        padding: 0 3rem;
        /* border: 1px solid var(--text-beige); */
    }

    .grid-item {
        position: relative;
        width: 40vw;
        height: 40vw;
        padding: .5rem;
        border: solid 1px var(--text-beige);
    }

    .grid-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        opacity: 0.4;
        transition: all .5s ease-in-out;
    }

    .overlay-prod {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* z-index: -1; */
        /* background-color: rgb(24, 32, 30, 0.8); */
    }

    .overlay-prod p {
        color: var(--text-beige);
        font-size: 2rem;
        margin: 0;
        font-family: Season;
        transition: all .5s ease-in-out;
    }

    .grid-item:hover img {
        opacity: 1;
    }

    .grid-item:hover .overlay-prod p {
        font-size: 4rem;
        color: var(--text-white);
        text-shadow: 2px 1px 3px rgba(0, 0, 0, 1);
    }

    /* SINGLE PRODUCT */
    .product__container h1,
    .about__container h1 {
        margin-inline: unset;
    }

    .retour a {
        color: var(--text-beige);
        transition: all .5s ease-in-out;
    }

    .retour a:hover {
        color: var(--text-white);
    }

    .single__product {
        margin-top: 3rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .product__images__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .product__img {
        width: 16.5vw;
        height: 16.5vw;
        object-fit: cover;
    }

    .product__infos {
        padding: 0 2rem;
        display: grid;
        color: var(--text-white);
        gap: 0rem;
        margin-top: 0rem;
    }

    .info1 {
        display: flex;
        justify-content: space-between;
        height: fit-content;
        border-bottom: 1px solid var(--text-beige);
    }

    .info1 p {
        margin-bottom: 0.5rem
    }

    .info2 {
        text-align: justify;
        line-height: 2rem;
        border-bottom: 1px solid var(--text-beige);
    }

    .info3,
    .info4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--text-beige);
    }

    .info3 input,
    .info4 input {
        height: 2rem;
        width: 3rem;
        background: transparent;
        color: var(--text-beige);
        border-top: 1px solid var(--text-white);
        border-bottom: 1px solid var(--text-white);
        font-family: Garet;
        font-size: 1rem;
    }

    .info3 input[type="number"] {
        text-align: center;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

    input::placeholder,
    textarea::placeholder {
        color: var(--text-beige);
        /* Remplacez #999 par la couleur de votre choix */
    }

    .submit__btn {
        display: flex;
        text-align: center;
        margin-top: 2rem;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }

    .submit__btn a {
        letter-spacing: 3px;

    }

    .information__container {
        color: var(--text-white);
        padding: 3rem;
        line-height: 2rem;
    }

    .information__container p {
        text-align: justify;
    }


    /* PAGE ABOUT */

    .story__grid {
        display: block;
    }

    .story__container {
        background-image: linear-gradient(#18201edd, #000000b5), url(../img/histoire.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        max-height: 100vh;
        max-width: 100%;
    }

    .story__grid .row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        /* height: 30vh; */
    }

    .section__subheader {
        font-family: Season;
        font-size: 32px;
        color: var(--text-beige);
        margin-top: 0rem;

    }

    .story__content .section__description {
        max-width: 320px;
    }

    .nos__val__content {
        display: grid;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .nos__val__content h2 {
        font-size: 64px;
        font-family: Season;
        color: var(--text-beige);
    }

    .valeur__description {
        text-align: center;
        max-width: 100%;
    }

    .conception__container {
        background-image: linear-gradient(#000000db, #18201edd), url(../img/conception.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        max-height: 105vh;
        max-width: 100%;
    }


    .concep__logo img {
        margin-top: -4rem;
        max-width: 400px;
        display: inline;
    }

    .conception__content {
        max-width: 100%;
        display: grid;
        text-align: justify;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .conception__content h2 {
        margin-top: -6.5rem;
        margin-left: 5rem;
        font-size: 64px;
        font-family: Season;
        color: var(--text-beige);
    }

    .conception__content h3 {
        font-size: 32px;
        font-family: Season;
        color: var(--text-beige);
    }

    .concep__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5rem;
    }

    #p-center {
        text-align: center;
        padding: 0 4rem;
        margin-bottom: 5rem;
    }

    .concep__btns {
        display: flex;
        margin-top: 5rem;
        margin-bottom: 5rem;
        justify-content: center;
        align-items: center;
        gap: 6rem;
        /* width: 400px; */
    }

    /* PAGE WHO */

    .section__center {
        color: var(--text-white);
        text-align: center;
    }

    .who__container {
        max-width: 100%;
    }

    .who__container img {
        padding: 4rem;
        filter: saturate(0);
        /* border: solid 1px var(--text-beige); */
    }

    .concep__btns {
        margin-bottom: 2rem;
        margin-top: 0;
    }

    /* PAGE CONTACT */
    .section__contact p {
        color: var(--text-white);
    }

    .section__contact p a {
        color: var(--text-beige);
    }

    .form__contact input,
    .form__contact textarea {
        width: 450px;
        height: 3rem;
        background: transparent;
        color: var(--text-beige);
        border-top: 1px solid var(--text-white);
        border-bottom: 1px solid var(--text-white);
        font-family: Garet;
        font-size: 1rem;
    }

    .form__contact textarea {
        height: auto;
    }

    .form__infos {
        display: flex;
        margin-top: 3rem;
        padding: 2rem;
    }

    .form__contact {
        display: grid;
        justify-items: center;
        align-items: center;
        padding: 1rem;
    }

    .submit__contact .btn {
        margin-top: -10rem;
        letter-spacing: 8px;
    }

    .copy {
        font-size: .8rem;
    }


    /* CONNEXION PAGE */

    .card__container .card__login {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
        background: var(--light-green);
        border-radius: 1rem;
    }

    .card__login input {
        width: 450px;
        height: 3rem;
        background: transparent;
        color: var(--text-beige);
        /* border-top: 1px solid var(--text-white); */
        border-bottom: 1px solid var(--text-white);
        font-family: Garet;
        font-size: 1rem;
    }

    .faceA {
        background-image: linear-gradient(#232f2f, #1f25259f), url(./assets/img/contact.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .faceA,
    .faceB {
        text-align: center;
        padding: 3rem;
        display: grid;
    }

    .card__login h3 {
        font-family: Season;
        font-size: 32px;
        color: var(--text-beige);
    }

    .card__login p {
        color: var(--text-white);
    }

    .card__login .pwd-forget {
        color: var(--text-beige);
        font-size: .8rem;
        transition: all .3s ease-in-out;
    }

    .card__login a:hover {
        color: var(--text-white);
        font-size: .9rem;
    }

    .account__btn {
        display: grid;
    }







}