body {
    background: var(--Blanc-cass-blanc-cass-50, #FFFEFC);
}

.bg-primary {
    background: #F5E1DA !important;
}

.bg-secondary {
    background: #E4EDE2 !important;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media(max-width:992px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.card {
    background-color: transparent;
    border: none;
}

.card .card-header,
.card .card-footer {
    background-color: transparent;
    border: none;
}

.btn-primary {
    border-radius: 30px;
    background: var(--Primary-primary-500, #EACACD) !important;
    color: var(--Rose-rose-900, #665151) !important;
    font-family: 'Optima', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 26.6px */
    border: none;
}

.panier .btn-primary {
    font-family: lato !important;
}

.btn-primary.fs-sm {
    font-size: 12px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--Primary-primary-500, #EACACD) !important;
    background-color: var(--Primary-primary-500, #EACACD) !important;
    color: var(--Rose-rose-900, #665151) !important;
    opacity: 0.7;
}

@media(max-width:992px) {
    .btn-primary {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .btn-primary {
        font-size: 14px;
    }
}

@media(max-width:570px) {
    .btn-primary {
        font-size: 13px;
    }
}

a {
    text-decoration: none !important;
}

/* Modifier l'icône du calendrier */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    background-image: url('../img/landing/calendar.png') !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: transparent;
    /* Cache l'icône par défaut */

}

input[type="time"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url('../img/landing/clock.png') !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: transparent;
    /* Cache l'icône par défaut */
}

/*-----------------------------------------------
hero
------------------------------------------------*/
.hero {
    background-image: url('../img/landing/unsplash_wbJ-3SDJ_-0.png');
}

.hero h1 {
    color: var(--Vert-sauge-vert-sauge-900, #465243);
    /* H1 */
    font-family: "Dancing Script";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 67.2px */
}

.hero p {
    color: var(--Vert-sauge-vert-sauge-900, #465243);
    /* H4 Bold */
    font-family: "Dancing Script";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 39.2px */
}

.hero small {
    color: var(--Vert-sauge-vert-sauge-900, #465243);
    /* Title1 */
    font-family: Lato;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 26.6px */
}

@media(max-width:992px) {
    .hero h1 {
        font-size: 35px;
    }

    .hero p {
        font-size: 20px;
    }

    .hero small {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .hero h1 {
        font-size: 25px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero small {
        font-size: 12px;
    }

    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/********************************************
section title
********************************************/
.section-title h2 {
    color: var(--Rose-rose-700, #AD8A8A);
    text-align: center;
    /* H1 Bold */
    font-family: "Dancing Script";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 67.2px */
}

@media(max-width:992px) {
    .section-title h2 {
        font-size: 38px;
    }
}

@media(max-width:768px) {
    .section-title h2 {
        font-size: 28px;
    }
}

@media(max-width:570px) {
    .section-title h2 {
        font-size: 25px;
    }
}

/*******************************************
card produit 
********************************************/
.nav-tabs {
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--Rose-rose-900, #665151);
    text-align: center;
    /* Title1 Bold */
    font-family: Lato;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 26.6px */
    background: var(--Vert-sauge-vert-sauge-700, #AD8A8A);
    color: #F6F9F6;
    border-radius: 30px;
    margin-right: 10px;
}

.nav-tabs .nav-link.active {
    border-radius: 30px;
    background: var(--Vert-sauge-vert-sauge-700, #778B72);
    color: #F6F9F6;
}

.card-produit .card-header img,
.card-produit .card-header video {
    border-radius: 30px 0px 0px 0px;
    width: 100%;
    max-width: 368px;
    height: 402.631px;
    object-fit: cover;
    margin-bottom: 10px;
    transition: opacity 1s ease-in-out, transform 1s ease;
    cursor: pointer;
}

.card-produit .card-header:hover img,
.card-produit .card-header:hover video {
    transform: scale(1.02);
}

.card-produit .card-header img {
    opacity: 1;
}

.card-produit .card-header video {
    opacity: 0;
}

.card-produit .card-header:hover img {
    opacity: 0;
}

.card-produit .card-header:hover video {
    opacity: 1;
    z-index: 2;
}


.card-produit .card-header h5 {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    /* H4 Bold */
    font-family: "Dancing Script";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 39.2px */
    margin-top: 0px;
    margin-bottom: 0px;
}

.card-produit .card-body p {
    color: var(--Vert-sauge-vert-sauge-900, #465243);
    /* Body */
    font-family: Lato;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 18.2px */
    margin-top: 0px;
    margin-bottom: 0px;
}

.card-produit .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-produit .card-footer p {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    /* H5 Bold */
    font-family: "Dancing Script";
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 32.2px */
    margin-top: 0px;
    margin-bottom: 0px;
}

@media(max-width:992px) {
    .nav-tabs .nav-link {
        font-size: 17px;
    }

    .card-produit .card-header h5 {
        font-size: 25px;
    }

    .card-produit .card-body p {
        font-size: 12px;
    }

    .card-produit .card-footer p {
        font-size: 20px;
    }
}

@media(max-width:768px) {
    .nav-tabs .nav-link {
        font-size: 16px;
    }

    .card-produit .card-header img,
    .card-produit .card-header video {
        height: auto;
        object-fit: contain;
        max-width: none;
    }

    .card-produit .card-header h5 {
        font-size: 20px;
    }

    .card-produit .card-body p {
        font-size: 12px;
    }

    .card-produit .card-footer p {
        font-size: 18px;
    }
}

@media(max-width:570px) {
    .nav-tabs .nav-link {
        font-size: 15px;
    }

    .card-produit .card-header img {
        height: 200px;
        max-width: none !important;
    }

    .card-produit .card-header h5 {
        font-size: 17px;
    }

    .card-produit .card-body p {
        font-size: 12px;
    }

    .card-produit .card-footer p {
        font-size: 14px;
    }
}

/******************************************
features
******************************************/
.features {
    position: relative;
}

.features .bg-image {
    position: absolute;
    width: 100%;
    height: 60%;
    top: 20%;
}

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

.features .text h5 {
    color: var(--Rose-rose-700, #AD8A8A);
    /* H2 Bold */
    font-family: "Dancing Script";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 56px */
}

.features .text p {
    color: var(--Rose-rose-700, #AD8A8A);
    /* Title1 Bold */
    font-family: Lato;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 26.6px */
}

.features .images {
    position: relative;
}

.features .images img {
    width: 230px;
    height: 305px;
    flex-shrink: 0;
    border-radius: 10px;
    background: lightgray 50% / cover no-repeat;
    object-fit: cover;
}

.features .images .image-1 {
    z-index: 2;
}

.features .images .image-2 {
    margin-top: -150px;
    margin-left: 50px;
    z-index: 1;
}

@media(max-width:992px) {
    .features .bg-image {
        height: 70%;
        top: 15%;
    }

    .features .text h5 {
        font-size: 30px;
    }

    .features .text p {
        font-size: 17px;
    }

    .features .images img {
        width: 50%;
        height: 205px;
        flex-shrink: 0;
        border-radius: 10px;
        background: lightgray 50% / cover no-repeat;
        object-fit: cover;
    }

    .features .images .image-2 img {
        width: 60%;
    }
}

@media(max-width:768px) {
    .features .bg-image {
        height: 100%;
        top: 0%;
    }

    .features .text h5 {
        font-size: 25px;
    }

    .features .text p {
        font-size: 15px;
    }
}

@media(max-width:570px) {

    .features .text h5 {
        font-size: 20px;
    }

    .features .text p {
        font-size: 13px;
    }

    .features .images {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .features .images img {
        width: 100%;
        height: 150px;
        flex-shrink: 0;
        border-radius: 10px;
        background: lightgray 50% / cover no-repeat;
        object-fit: cover;
    }

    .features .images .image-2,
    .features .images .image-1 {
        width: 50%;
    }

    .features .images .image-2 {
        margin-top: 50px;
        margin-left: -50px;
    }

    .features .images .image-2 img {
        width: 100%;
    }
}

/*************************************
comment ça marche 
******************************************/
.marche .image {
    display: flex;
    align-items: center;
    justify-content: start;
}

.marche .image img {
    width: 100%;
    object-fit: contain;
    border-radius: 30px;
}

.marche .text {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.marche .text h5 {
    color: var(--Rose-rose-700, #AD8A8A);
    /* H2 Bold */
    font-family: "Dancing Script";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 56px */
    margin-bottom: 2rem;
}

.marche .text ul {
    padding-left: 0px;
    list-style: none;
}

.marche .text ul li {
    margin-bottom: 2rem;
}

.marche .text ul li h6 {
    color: var(--Vert-sauge-vert-sauge-900, #465243);
    /* H4 Bold */
    font-family: "Dancing Script";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 39.2px */
}

.marche .text ul li p {
    color: var(--Vert-sauge-vert-sauge-900, #465243);
    /* Title2 */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

@media(max-width:992px) {
    .marche .text h5 {
        font-size: 30px;
    }

    .marche .text ul li h6 {
        font-size: 20px;
    }

    .marche .text ul li p {
        font-size: 14px;
    }
}

@media(max-width:768px) {
    .marche .text h5 {
        font-size: 25px;
    }

    .marche .text ul li h6 {
        font-size: 18px;
    }

    .marche .text ul li p {
        font-size: 12px;
    }
}

@media(max-width:570px) {


    .marche .text h5 {
        font-size: 20px;
    }

    .marche .text ul li h6 {
        font-size: 16px;
    }

    .marche .text ul li p {
        font-size: 12px;
    }
}

/**********************************
avis
**********************************/
.cardAvis {
    height: 100%;
}

.cardAvis .card-body {
    display: flex;
    align-items: flex-end;
    justify-content: start;
    height: 100%;
}

.cardAvis .miniBox {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #898989;
    background: #F5E1DA;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Rose-rose-100, #FCECEC);
    /* H4 Bold */
    font-family: "Dancing Script";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 39.2px */
}

.cardAvis .miniBox.bg-vert {
    background-color: var(--Vert-sauge-vert-sauge-100, #E4EDE2);
}

.cardAvis .userImg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #898989;
    background: lightgray 50% / cover no-repeat;
    margin-right: 10px;
    object-fit: cover;
}

.cardAvis.right .userImg {
    margin-right: 0px;
    margin-left: 10px;
}

.cardAvis.right .miniBox {
    margin-right: 0px;
    margin-left: 10px;
}

.cardAvis .box {
    padding: 15px 15px;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
}

.cardAvis.left .box {
    padding-left: 3rem;
}

.cardAvis .box img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    border: none;
    background: none;
    z-index: 1;
    margin-right: 0px;
}

.cardAvis .box p {
    color: #3A3A3A;
    /* Title2 */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
    z-index: 2;
    position: relative;
}

.cardAvis .box small {
    color: #606060;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    z-index: 2;
}

.cardAvis .box .stars {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.cardAvis .box .stars i {
    font-size: 1rem;
    color: #625556;
}

.uk-dotnav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.uk-light .uk-dotnav>*>* {
    background-color: #DCDCDC !important;
}

.uk-light .uk-dotnav>.uk-active>* {
    background-color: #5C6C58 !important;
}

@media(max-width:992px) {
    .cardAvis .userImg {
        width: 70px;
        height: 70px;
    }

    .cardAvis .miniBox {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    .cardAvis .box p,
    .cardAvis .box small {
        font-size: 15px;
    }

    .cardAvis .box .stars i {
        font-size: 0.8rem;
    }
}

@media(max-width:768px) {
    .cardAvis .userImg {
        width: 50px;
        height: 50px;
    }

    .cardAvis .miniBox {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .cardAvis .box p,
    .cardAvis .box small {
        font-size: 14px;
    }

    .cardAvis .box .stars i {
        font-size: 0.5rem;
    }
}

@media(max-width:570px) {
    .cardAvis .userImg {
        width: 30px;
        height: 30px;
    }

    .cardAvis .miniBox {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .cardAvis .box p,
    .cardAvis .box small {
        font-size: 13px;
    }

    .cardAvis .box .stars i {
        font-size: 0.5rem;
    }

    .cardAvis.left .box {
        padding-left: 1.5rem !important;
        padding-right: 15px !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        min-height: auto !important;
        height: fit-content !important;
    }

    .cardAvis.right .box {
        padding-left: 15px !important;
        padding-right: 1.5rem !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        min-height: auto !important;
        height: fit-content !important;
    }
}

/**************************************
about 
***************************************/
.cardIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cardIcon .card-header {
    border-radius: 35px 0px;
    background: var(--Vert-sauge-vert-sauge-100, #E4EDE2);
    width: 126px;
    height: 126px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardIcon .card-header img {
    width: 70%;
    object-fit: contain;
}

.cardIcon .card-body p {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    text-align: center;
    /* Title1 Bold */
    font-family: Lato;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 26.6px */
}

@media(max-width:992px) {
    .cardIcon .card-body p {
        font-size: 17px;
    }
}

@media(max-width:768px) {
    .cardIcon .card-body p {
        font-size: 15px;
    }
}

@media(max-width:570px) {
    .cardIcon .card-body p {
        font-size: 14px;
    }
}

/**************************************
PANIER 
***************************************/
.panier {
    width: 732px !important;
    max-width: 732px !important;
    background: var(--Primary-primary-50, #FDFAFA);
    box-shadow: -8px -8px 16px 0px rgba(180, 180, 180, 0.25);
}

.panier .btn-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EACACD;
    box-shadow: none !important;
}

.panier .btn-close svg {
    width: 12px !important;
    height: 12px !important;

}

.panier .btn-close svg line {
    stroke: #A68F92 !important;
    stroke-width: 2px !important;
}

.panier .titleBox h3 {
    color: var(--Primary-primary-700, #A68F92);
    /* H2 Bold */
    font-family: "Dancing Script";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 56px */
    margin-bottom: 0px;
    margin-top: 0px;
}

.panier .titleBox svg {
    width: 100% !important;
}

.panier .table th,
.panier .table .label {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    /* Title2 Bold */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 22.4px */
    border: none;
    background-color: transparent;
}

.panier .table tr td {
    border: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    vertical-align: middle;
    width: auto !important;
    background-color: transparent;
}

.panier .table tr td span {
    color: #000;
    border: none !important;
    /* H4 Bold */
    font-family: "Dancing Script";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 39.2px */
}

.panier .table tr td span strong {
    font-size: 20px;
}

.panier .table tr td .media {
    display: flex;
    align-items: center;
    justify-content: start;
}

.panier .table tr td .media img {
    width: 102.446px;
    height: 120.609px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 10px;
    background: lightgray 50% / cover no-repeat;
    margin-right: 10px;
}

.panier .table tr td .media h5 {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    font-family: "Dancing Script";
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 32.2px */
    margin-bottom: 0px;
    margin-top: 0px;
    text-wrap: wrap;
}

.panier .table tr td .media p {
    color: var(--Vert-sauge-vert-sauge-900, #465243);
    /* Body */
    font-family: Lato;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 18.2px */
    margin-bottom: 0px;
    margin-top: 0px;
}

.panier .table .input-group {
    border-radius: 20px;
    background: var(--Primary-primary-500, #EACACD);
    border: none;
    max-width: 100px;
    flex-wrap: nowrap !important;
}

.panier .table .input-group .input-group-text {
    background: transparent;
    border-radius: 20px 0px 0px 20px;
    padding-left: 5px !important;
    padding-right: 5px !important;
    border: none !important;
    box-shadow: none !important;
}

.panier .table .input-group input {
    background: transparent;
    border: none;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    box-shadow: none !important;
}

/* Pour Webkit (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/* Pour Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.panier .table tr td .btn.delete {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EACACD;
    padding: 0px 0px;
}

.panier .table tr.mobile {
    display: none;
}

.formulaire .input-group {
    border-radius: 20px;
    background: var(--Primary-primary-200, #F5E7E8);
    border: none;
    height: 64px;
}

.formulaire .input-group span {
    background: transparent;
    border-radius: 20px 0px 0px 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formulaire .input-group input {
    color: #000;
    /* Caption */
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 15.4px */
    background-color: transparent;
    border-radius: 20px 20px 0px 0px;
    border: none !important;
    box-shadow: none !important;
}

.formulaire .input-group textarea {
    color: #000;
    /* Caption */
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 15.4px */
    background-color: transparent;
    border-radius: 20px;
    border: none !important;
    box-shadow: none !important;
}

.formulaire .input-group input::placeholder,
.formulaire .input-group textarea::placeholder {
    color: #949494d8;
}

.formulaire .form-check {
    display: flex;
    align-items: center;
}

.formulaire .form-check label {
    color: #868686;
    /* Title2 */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.formulaire .form-check.radio label {
    font-family: "Dancing Script";
}

.formulaire .form-check input[type='checkbox'] {
    background-color: #F5E7E8;
    padding: 0px 0px;
    border-radius: 4px;
    margin-right: 10px;
}

.formulaire .form-check input[type='radio'] {
    background-color: #F5E7E8;
    padding: 0px 0px;
    border-radius: 50%;
    margin-right: 10px;
}

.formulaire .form-check input:checked {
    background-color: #000 !important;
    border-color: #000 !important;
    box-shadow: none !important;
}

@media(max-width:992px) {
    .panier .titleBox h3 {
        font-size: 30px;
    }

    .panier .table th,
    .panier .table .label {
        font-size: 14px;
    }

    .panier .table tr td .media img {
        width: 80.446px;
        height: 100.609px;
    }

    .panier .table tr td .media h5 {
        font-size: 18px;
    }

    .panier .table tr td .media p {
        font-size: 12px;
    }

    .panier .table tr td span {
        font-size: 16px;
    }

    .panier .table tr td span strong {
        font-size: 18px;
    }

    .formulaire .input-group input {
        font-size: 12px;
    }

    .formulaire .form-check label {
        font-size: 14px;
    }

    .formulaire .input-group {
        height: 53px;
    }
}

@media(max-width:768px) {
    .panier .titleBox h3 {
        font-size: 25px;
    }

    .panier .table th,
    .panier .table .label {
        font-size: 12px;
    }

    .panier .table tr td .media img {
        width: 70.446px;
        height: 80.609px;
    }

    .panier .table tr td .media h5 {
        font-size: 16px;
    }

    .panier .table tr td .media p {
        font-size: 12px;
    }

    .panier .table tr td span {
        font-size: 14px;
    }

    .panier .table tr td span strong {
        font-size: 16px;
    }

    .formulaire .input-group input {
        font-size: 12px;
    }

    .formulaire .form-check label {
        font-size: 12px;
    }

    .formulaire .input-group {
        height: 43px;
    }
}

@media(max-width:732px) {
    .panier {
        width: 100% !important;
    }

    .panier .table-responsive {
        width: 100%;
        overflow-x: auto !important;
        scrollbar-width: none;
        /* Firefox */
    }

    .panier .table-responsive::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .panier .table tr td .media {
        padding-right: 2rem !important;
    }

    .panier .table tr td .media p {
        width: 200px !important;
        flex-wrap: wrap !important;
    }

    .panier .table tr td span {
        text-wrap: nowrap !important;
    }
}

@media(max-width:570px) {
    .panier .titleBox h3 {
        font-size: 20px;
    }

    .panier .table th,
    .panier .table .label {
        font-size: 12px;
    }

    .panier .table tr td .media img {
        width: 50.446px;
        height: 70.609px;
    }

    .panier .table tr td .media h5 {
        font-size: 14px;
    }

    .panier .table tr td .media p {
        font-size: 12px;
    }

    .panier .table tr td span {
        font-size: 14px;
    }

    .panier .table tr td span strong {
        font-size: 14px;
    }

    .panier .table .input-group {
        width: 200px !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        height: 30px;
    }

    .panier .table .input-group .input-group-text {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .formulaire .input-group input,
    .panier .table .input-group input {
        font-size: 12px;
    }

    .formulaire .form-check label {
        font-size: 12px;
    }

    .formulaire .input-group {
        height: 43px;
    }

    .panier .table tr.web {
        display: none;
    }

    .panier .table tr.mobile {
        display: table-row;
    }

    .panier .table tr th:not(:first-child) {
        display: none;
    }
}

/**********************************
formulaire-section
**********************************/
.formulaire-section {
    background: var(--Vert-sauge-vert-sauge-50, #F6F9F6);
}

.formulaire-section .input-group {
    border-radius: 20px;
    background: #FFF;
    border: none;
    height: 64px;
}

.formulaire-section .input-group input {
    color: #000;
    /* Caption */
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 15.4px */
    box-shadow: none !important;
    border: none;
    background-color: transparent;
    border-radius: 0px 20px 20px 0px;
}

.formulaire-section .input-group input::placeholder {
    color: #A8A8A8;
}

.formulaire-section .input-group span {
    border: none;
    background-color: transparent;
    border-radius: 20px 0px 0px 20px;
}

.formulaire-section .images {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.formulaire-section .images img {
    width: 297.205px;
    height: 297.205px;
    border-radius: 15px;
    object-fit: cover;
}

.formulaire-section .images .image-2 {
    margin-top: 150px;
    margin-left: -100px;
}

@media(max-width:992px) {
    .formulaire-section .images img {
        width: 237.205px;
        height: 257.205px;
    }
}

@media(max-width:768px) {
    .formulaire-section .images {
        display: none;
    }
}

/************************************
section-faq
*************************************/
.faq img {
    width: 100%;
    max-width: 390px;
    max-height: 520px;
}

.faq-acc .accordion-button {
    color: var(--Primary-primary-900, #625556);
    /* H4 Bold */
    font-family: "Dancing Script";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 39.2px */
    border: none !important;
    background: transparent !important;
    padding-bottom: 0px;
}

.faq-acc .accordion-button:focus {
    background-color: transparent;
    box-shadow: none !important;
}

.faq-acc .accordion-body p {
    color: var(--Primary-primary-800, #816F71);

    /* Title2 */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

@media(max-width:992px) {
    .faq-acc .accordion-button {
        font-size: 25px;
    }

    .faq-acc .accordion-body p {
        font-size: 14px;
    }
}

@media(max-width:768px) {
    .faq-acc .accordion-button {
        font-size: 20px;
    }

    .faq-acc .accordion-body p {
        font-size: 12px;
    }
}

@media(max-width:570px) {
    .faq-acc .accordion-button {
        font-size: 18px;
    }

    .faq-acc .accordion-body p {
        font-size: 12px;
    }

    .faq .image {
        display: none;
    }
}

/************************************
card box
***********************************/
.cardBox img {
    width: 100px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 20px;
}

.cardBox h5 {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    text-align: center;
    /* Title1 Bold */
    font-family: Lato;
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 26.6px */
}

@media(max-width:992px) {
    .cardBox h5 {
        font-size: 18px;
    }
}

@media(max-width:768px) {
    .cardBox h5 {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .cardBox h5 {
        font-size: 15px;
    }

    .cardBox img {
        width: 80px;
        height: 76px;
    }
}

/***************************************
card-vide
************************************/
.card-vide img {
    width: 211px;
    height: 226px;
    max-width: 80%;
    flex-shrink: 0;
    object-fit: contain;
    margin-bottom: 20px;
}

.card-vide h5 {
    color: var(--Primary-primary-900, #625556);

    /* H2 */
    font-family: "Dancing Script";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 56px */
}

.card-vide h5.fs-sm {
    font-size: 30px;
}

.card-vide p {
    color: var(--Primary-primary-600, #D5B8BB);
    /* Title1 */
    font-family: Lato;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 26.6px */
}

.card-vide .text-2 {
    font-family: "Dancing Script";
    color: #000;
}

.card-vide p a {
    color: var(--Vert-sauge-vert-sauge-700, #778B72);
    font-family: "Dancing Script";
    text-decoration: underline;
}

.card-vide p a:hover {
    color: var(--Primary-primary-600, #D5B8BB) !important;
}

@media(max-width:992px) {
    .card-vide h5 {
        font-size: 30px;
    }

    .card-vide p {
        font-size: 16px;
    }

    .card-vide img {
        width: 171px;
        height: 176px;
    }
}

@media(max-width:768px) {
    .card-vide h5 {
        font-size: 25px;
    }

    .card-vide p {
        font-size: 14px;
    }

    .card-vide img {
        width: 171px;
        height: 176px;
    }
}

/*--------------------------------------
mentions légales
*--------------------------------------*/
.cardMentions h1 {
    color: var(--Rose-rose-700, #AD8A8A);
    text-align: left;
    /* H1 Bold */
    font-family: "Dancing Script";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    /* 67.2px */
}

.cardMentions p {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 33.6px */
}

.cardMentions p a {
    color: var(--Vert-sauge-vert-sauge-800, #5C6C58);
    text-decoration: underline !important;
}

@media(max-width:992px) {
    .cardMentions h1 {
        font-size: 30px;
    }

    .cardMentions p {
        font-size: 15px;
    }
}

@media(max-width:768px) {
    .cardMentions h1 {
        font-size: 25px;
    }

    .cardMentions p {
        font-size: 14px;
    }
}

@media(max-width:570px) {
    .cardMentions h1 {
        font-size: 20px;
    }

    .cardMentions p {
        font-size: 12px;
    }
}