/******** general **********/
html {
    scroll-behavior: smooth;
    scrollbar-width: auto;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
 <   background-color: transparent; /* or add it to the track */
}

* {
    box-sizing: border-box;
}

body {
    box-sizing: border-box;
    font-family: 'Cormorant Infant', serif;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    position: relative;
    color: #282828;
}

@font-face {
    font-family: "Richaume";
    src: url("/storage/app/public/Richaume-Regular.ttf") format("truetype");
}

.noScroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, .title {
    font-family: 'Newsreader', serif;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}


.richaumeFont {
    font-family: "Richaume", cursive;
    word-spacing: 6px;
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
}

.hoverUnderline {
    position: relative;
}

.hoverUnderline::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 1px;
    background-color: #7D7D7D;
    width: 100%;
}

.hoverUnderline::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 1px;
    background-color: #ffffff;
    width: 100%;
    transition: 0.2s ease-in-out;
    transform-origin: right;
}

.hoverUnderline:hover::after {
    transform: scale(0);
}

.title.primary {
    font-size: clamp(1.1875rem, 1.0555rem + 0.4225vw, 1.5625rem);
}

.title.secondary {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}
.transparent{
    opacity: 0;
}
.bg-gold {
    background: #B69B56;
}

.bg-white {
    background: white;
}

.bg-fair-lan {
    background: #F5F5F5;
}

.bg-warm-lan {
    /*background: #BEB2A4;*/
    background: #CCC0A2;
}

.bg-grey {
    background: #D9D9D9;
}

.bg-gold-to-white {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), linear-gradient(180deg, #CCC0A2 27.08%, #F9F7F1 76.56%);
}

.color-white {
    color: white !important;
}

.color-gold {
    color: #B69B56 !important;
}

.color-dark {
    color: #646464 !important;
}

.color-black {
    color: black !important;
}

.seeMore {
    text-align: center;
    font-size: 21px;
    font-weight: 500;
    text-decoration-line: underline;
}

.pointer {
    cursor: pointer;
}

.relative {
    position: relative;
}

.main {
    position: relative;
}

.underline {
    text-decoration: underline;
}

.link {
    font-family: 'Cormorant Infant', serif;
    text-decoration: underline;
    line-height: 24px;
    font-style: italic;
    font-size: 19px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
}

.card {
    cursor: pointer;
}

.path {
    color: #7D7D7D;
    font-size: 16px;
}

#filter {
    height: 100%;
    width: 100%;
    z-index: 100;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.38);
    opacity: 0;
    display: none;
}

#filter.active {

    display: block;
    animation: 1s ease 0.2s normal forwards 1 fadeIn;
}

.goldenhover {
    position: relative;
}

.goldenhover::after {
    position: absolute;
    bottom: -10px;
    right: calc(50% - (5px / 2));
    content: "";
    background-color: #B69B56;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    transition: all 0.3s 0.3s ease-in-out;
    opacity: 0
}

.goldenhover:hover::after {
    bottom: -5px;
    opacity: 1
}

/*.icon:hover svg{*/
/*    stroke: #B69B56;*/
/*}*/
.container {
    width: min(100%, 1920px);
    padding-right: 96px;
    padding-left: 96px;
    margin: 0 auto;
}

.wideContainer {
    width: 100%;

}

.title.primary {
    font-size: clamp(1.1875rem, 1.0555rem + 0.4225vw, 1.5625rem);
}

.title.secondary {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.text {
    text-align: center;
    font-family: 'Cormorant Infant', serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.textRight{
    text-align: right;
}
.textLeft{
    text-align: left;
}
.btn, .btn.close {
    max-width: min(380px, 100%);
    padding: 7px 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    box-shadow: none;
    font-family: 'Cormorant Infant', serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    line-height: 25px;
    min-width: min(100%, 300px);
    transition: 0.3s ease-in-out;
}

.btn.golden {
    background-color: #B69B56;
    border: 1px solid #B69B56;
}

.btn.dark, .btn .light:hover {
    background-color: #363636;
    color: white;
    border: 1px solid #363636;
}

.btn.light, .btn.dark:hover {
    background-color: transparent;
    color: #363636;
    border: 1px solid #363636;
}

img {
    max-width: 100%;
}

.mx-auto {
    margin-left: auto;
}
.ml-auto{
    margin-left: auto;
}
.mr-auto{
    margin-right: auto;
}
.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb100 {
    margin-bottom: 100px;
}

.mb130 {
    margin-bottom: 130px;
}

.mb150 {
    margin-bottom: 150px;
}

.mb25 {
    margin-bottom: 25px;
}

.mt100 {
    margin-top: 100px;
}

.mt50 {
    margin-top: 50px;
}

.mt30 {
    margin-top: 30px;
}

.mt25 {
    margin-top: 25px;
}

.mt15 {
    margin-top: 15px;
}

.mt10 {
    margin-top: 10px;
}

.mt5 {
    margin-top: 5px;
}

.mr25 {
    margin-right: 25px;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml15 {
    margin-left: 15px;
}

.ml25 {
    margin-left: 25px;
}

.ml50 {
    margin-left: 50px;
}

.px-7pc {
    padding-right: 7%;
    padding-left: 7%;
}

.px-3vw {
    padding-right: 3vw;
    padding-left: 3vw;
}

.px-25 {
    padding-right: 25px;
    padding-left: 25px;
}

.px-50 {
    padding-right: 50px;
    padding-left: 50px;
}

.pt25 {
    padding-top: 25px;
}

.pt50 {
    padding-top: 50px;
}

.pt100 {
    padding-top: 100px;
}

.pb50 {
    padding-bottom: 50px;
}

.py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.w100 {
    width: 100%;
}

.h100 {
    height: 100%;
}

.maxContent {
    width: max-content !important;
}

.maxW100pc {
    max-width: 100%;
}

.maxW300px {
    max-width: 300px;
}

.maxW500px {
    max-width: 500px;
}

.maxW700px {
    max-width: min(700px, 100%);
}

.maxW900px {
    max-width: 900px;
}

.maxW1200px {
    max-width: 1200px;
}

.maxW1400px {
    max-width: 1400px;
}

.maxH90vh {
    max-height: 90vh;
}

.d-flex {
    display: flex;
}

.flex-gap-7 {
    gap: 7%;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.d-none {
    display: none;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}
.justify-content-space-around {
    justify-content: space-around;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-self-center {
    justify-self: center !important;
}

.justify-self-end {
    justify-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.uppercase {
    text-transform: uppercase;
}

.regCase {
    text-transform: none !important;
}

.left {
    text-align: left !important;
}

.center {
    text-align: center !important;
}

.justify {
    text-align: justify;
}

.fs-17 {
    font-size: 17px !important;
}

/******** fin general **********/


/******** loader **********/
.lds-ellipsis {
    margin-top: 150px;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #B69B56;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/******** end loader **********/
/******** HEADER **********/
.banner {
    position: relative;
    padding: 16px 50px;
    font-size: 15px;
    z-index: 1000;
}

.banner .close {
    position: absolute;
    margin: 16px 50px;
    top: 0;
    right: 0;
    display: none;
}

.header {
    position: relative;
    background-color: white;
    font-family: 'Newsreader', serif;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.header .logo {
    position: relative;
    margin: auto;
    text-transform: none;
    width: max-content;
    transform: translate(-101px, -2px);
}

/*.header .logo img{*/
/*    object-fit: contain;*/
/*    width: 100%;*/
/* }*/
.header .logo .title, .shop .logo .title {
    font-size: 28px;
    color: #282828;
    text-transform: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.header > .top {
    padding: 16px 50px 0;
    z-index: 1000;
    background: white;
    display: flex;
    height: 55px;
    overflow: hidden;
    position: inherit;
    transition: all 0.2s ease-in-out;
}

.header > .top > .left {
    display: flex;
    gap: 10px;
    /*position: absolute;*/
    padding: 0 50px 0 0;
    top: 0;
    left: 0;
    z-index: 10000;
    height: 60px;
    justify-content: center;
    align-items: center;
}

.header > .top > .left .item {
    cursor: pointer;
    transition: 0.2s ease-in-out;
    text-align: center;
    width: 65px;
    position: relative;
}

.header > .top > .left .item:hover {
    font-weight: 400;
}

.header .floatRight, .header > .top .right {
    position: absolute;
    padding: 0 50px;
    top: 0;
    right: 0;
    z-index: 10000;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header > .top .right {
    display: none;
    position: relative;
}

.flag svg {
    max-width: 25px;
}

.header .floatRight .wrapper, .header > .top .right .wrapper {

    position: relative;
    display: flex;
    justify-content: flex-end;
}

.header .floatRight .icon, .header > .top .right .wrapper .icon {

    margin-left: 25px;
    cursor: pointer;
}

.header .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    /*padding-top: 15px;*/
    position: relative;
    z-index: 1000;
    background: white;
}

.header .nav > .wrapper {
    max-width: 660px;
    display: flex;
    z-index: 1000;
    height: 100%;
}

.header .nav .item {
    width: 133px;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/*.header .nav > .wrapper >.item {*/
/*    width: 133px;*/
/*}*/
.header .nav .item:hover > span {
    font-weight: 400;
}
.header .nav > .wrapper > .item:hover > span {

    width: 133px;
}

.header .nav .item span {
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.header .nav .item > span::after {
    position: absolute;
    bottom: -10px;
    right: calc(50% - (5px / 2));
    content: "";
    background-color: #B69B56;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    transition: all 0.3s 0.3s ease-in-out;
}

.header .nav .item:hover span::after, .header .nav .item.active > span::after {
    bottom: 3px;
}

.header .submenu {
    position: absolute;
    cursor: default;
    width: 100%;
    z-index: 101;
    top: 60px;
    right: 0;
    transition: height 0.5s 0.5s ease-in;
    height: 0;
    overflow: hidden;
    background-color: white;
}

.submenu-bg {
    background-color: white;
    width: 100%;
    z-index: 100;
    top: 116px;
    right: 0;
    transition: height 0.5s 0.5s ease-in;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.header.sticky.small .submenu-bg {
    top: 80px;
}

.separator {
    height: 1px;
    background-color: #dbdbdb;
    width: 80%;
    margin: auto;
    z-index: 1000;
    position: relative;
    opacity: 0;

}

.separator.active {
    opacity: 1;
}

.header .nav .item:hover .submenu {
    height: auto;
}

.submenu-bg.active {
    height: 255px;
}

.submenu-bg.active.tall {
    height: 450px;
}

.header .submenu .content {
    display: none;
}

.header .nav .item:hover .submenu .content {
    display: block;
    animation: 1s ease 0.2s normal forwards 1 fadeIn;
    opacity: 0;
    width: 100%;
}

.header .submenu > .wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .submenu .wrapper .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.header .nav .item .submenu .content .top::before {
    position: absolute;
    height: 1px;
    background-color: #dbdbdb;
    width: 80vw;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    content: "";
    opacity: 0;
}

.header .nav .item:hover .submenu .content .top::before {
    opacity: 1;
}

.header .submenu .wrapper .top .cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.header .submenu .wrapper .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 0;
    position: relative;
}

.header > .bottom::before {
    position: absolute;
    height: 1px;
    background-color: #dbdbdb;
    width: 80vw;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    content: "";
    opacity: 0;
}

.header .nav .item:hover .submenu .content .bottom::before {
    opacity: 1;
}

.header .bottom .title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.header .bottom .items {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.header .bottom .item, .sideNav .collections .item {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.header .bottom .item .name, .sideNav .collections .name {
    font-family: Cormorant Infant, serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: none;
}

.header .bottom .item .author span, .sideNav .collections span {
    font-family: Cormorant Infant, serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    margin-right: 5px;
}

.header .bottom .item .author, .sideNav .collections .author {
    font-size: 11px;
    font-weight: 300;
    width: max-content;
}

.header .card .imgWrapper {
    position: relative;
    height: 130px;
    width: 130px;
    overflow: hidden;
}

.header .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.header .top .card .title {
    font-size: 13px;
    font-weight: 400;
    max-width: 130px;
    margin-bottom: 10px;
    transition: 0.2s ease-in-out;
    margin-top: 15px;
}

.header .top .card:hover .title {
    /*font-weight: 500;*/
}

.header .top .card:hover img {
    transform: scale(1.1);
}

.header.sticky {
    position: sticky;
    width: 100vw;
    top: 0;
    right: 0;
    z-index: 100
}

.header.sticky.small > .top {
    height: 0;
    padding: 0;
}

.header.sticky.small > .logo {
    height: 0;
    padding: 0;
}

[name="cartIcon"] .circle {
    height: 17px;
    width: 17px;
    bottom: -5px;
    right: -9px;
    background-color: white;
    color: #282828;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    position: absolute;
    border-radius: 50%;
    padding-top: 3px;
    opacity: 1;
    transition: 0.2s ease-in-out;
}

[name="cartIcon"] .circle span {
    transition: 0.2s ease-in-out;
}

div[name="cartIcon"][data-cart-stock="0"] path:first-child {
    fill: transparent;
}

div[name="cartIcon"][data-cart-stock="0"] path {
    fill: #616161;
}

div[name="cartIcon"][data-cart-stock="0"] .circle {
    opacity: 0;
}

/** sidenav **/
.sideNav, .sideCart {
    display: flex;
    flex-direction: column;
    position: fixed;
    background-color: white;
    top: 0;
    z-index: 1001;
    height: 100vh;
    width: 100%;
    transform: translateX(-100vw);
    transition: 0.7s ease-in-out;
    transform-origin: left;
    left: 0;
    font-family: 'Newsreader', serif;
}

.sideNav.active {
    transform: translateX(0vw);
}

.sideNavFilter {
    position: absolute;
    background-color: #0006;
    opacity: 0;
    height: 100%;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.sideNavFilter.active {
    display: block;
    animation: 1s ease 0.2s normal forwards 1 fadeIn;
}

.sideNav .close {
    position: absolute;
    height: 75px;
    left: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sideNav > .wrapper .top {
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 75px;
}

.sideNav .logo .title {
    font-size: 23px;
    font-weight: 400;
    color: #282828;
    text-transform: none;
}

.sideNav > .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

.sideNav .bottom {
    background-color: #B69B56;
    padding: 22px 40px;
    width: 100%;
    flex: calc(30% - 75px);
}

.sideNav .bottom .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.sideNav .bottom .item {
    display: flex;
    margin: 8px 0;
    align-items: center;
    cursor: pointer;
}

.sideNav .bottom .item .icon {
    margin-right: 15px;
}

.sideNav .bottom .label {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.sideNav .center {
    width: 100%;
    /*height: 100%;*/
    flex: calc(60% - 75px);
    padding: 20px 0;
}

.sideNav .center .item {
    position: relative;
    opacity: 0;
    transform: translateX(0);
    /*height: 75px;*/
    width: 100%;
    font-family: 'Newsreader', serif;
    font-size: 16px;;
    font-weight: 300;;
    text-transform: uppercase;
    padding: 23px 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sideNav .appearing {
    opacity: 0;
    transform: translateX(0);
}

.sideNav .center .wrapper {
    display: none;
    flex-direction: column;
}

.sideNav.active .center .wrapper.main {
    display: flex;
}

.sideNav.active .center .wrapper.main .item:nth-child(1), .wrapper.active .appearing:nth-child(1) {
    animation: 1s ease 200ms normal forwards 1 fadeIn, 1s ease 200ms normal forwards 1 slideInRight;
}

.sideNav.active .center .wrapper.main .item:nth-child(2), .wrapper.active .appearing:nth-child(2) {
    animation: 1s ease 220ms normal forwards 1 fadeIn, 1s ease 220ms normal forwards 1 slideInRight;
}

.sideNav.active .center .wrapper.main .item:nth-child(3), .wrapper.active .appearing:nth-child(3) {
    animation: 1s ease 240ms normal forwards 1 fadeIn, 1s ease 240ms normal forwards 1 slideInRight;
}

.sideNav.active .center .wrapper.main .item:nth-child(4), .wrapper.active .appearing:nth-child(4) {
    animation: 1s ease 260ms normal forwards 1 fadeIn, 1s ease 260ms normal forwards 1 slideInRight;
}

.sideNav.active .center .wrapper.main .item:nth-child(5), .wrapper.active .appearing:nth-child(5) {
    animation: 1s ease 280ms normal forwards 1 fadeIn, 1s ease 280ms normal forwards 1 slideInRight;
}

.sideNav.active .center .wrapper.main .item:nth-child(6), .wrapper.active .appearing:nth-child(6) {
    animation: 1s ease 450ms normal forwards 1 fadeIn, 1s ease 450ms normal forwards 1 slideInRight;
}

.sideNav .center > .wrapper > .item.hasChildren::after {
    position: absolute;
    right: 40px;
    margin: auto;
    background-image: url("/storage/app/public/rightArrow.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: " ";
    display: block;
    height: 18px;
    width: 18px;
}

.sideNav .center .wrapper.children {
    display: flex;
    position: absolute;
    height: calc(100% - 75px);
    top: 75px;
    left: 0;
    width: 100%;
    background: white;
    transform: translateX(-100vw);
    transition: transform 0.7s ease-in-out;
    overflow-y: scroll;
    padding: 24px;
}

.sideNav .center .wrapper.children.active {
    /*animation:1s ease 200ms normal forwards 1 slideInRight;*/
    transform: translateX(0vw);
}

.sideNav .back {
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    padding-left: 38px;
}

.sideNav .back::before {
    position: absolute;
    left: 0;
    margin: auto;
    background-image: url("/storage/app/public/rightArrow.svg");
    transform: rotate(180deg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: " ";
    display: block;
    height: 18px;
    width: 18px;
}

.sideNav .cards {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 12px;
}

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

.sideNav .card .imgWrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.sideNav .card .imgWrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    max-height: 180px;
    margin-bottom: 15px;
}

.sideNav .card .imgWrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.sideNav .card .title {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    height: 67px;
    overflow: hidden;
}

.sideNav .wrapper.children .link {
    margin: 5px 0 25px;
    text-align: left;
}

.sideNav .wrapper.children .collections .title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0 15px;
}

.sideNav .center .collections .item {
    align-items: flex-start;
    padding: 10px 0;
}

.sideNav .line {
    background-color: #d7d7d7;
    width: 100%;
    margin: 10px 0;
    z-index: 1000;
    padding: 1px 0 0 0;
}

/** end sidenav **/
/** sidecart **/
.sideCart {
    transform: translateX(100vw);
    transform-origin: right;
    max-width: min(500px, 100vw);
    left: unset;
    right: 0;
    z-index: 10000;
    overflow-y: scroll;
}

.sideCart.active {
    transform: translateX(0);
}

.sideCart .top {
    height: 75px;
    border-bottom: 2px solid #B69B56;
    padding: 20px 0;
}

.sideCart .close {
    position: absolute;
    height: 75px;
    right: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sideCart .cartContent {
    border-bottom: 2px solid #B69B56;
    padding: 20px 0 35px;
}

.sideCart .cartContent .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5%;
    grid-template-rows: 200px;
}

.sideCart .item .left img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sideCart .right .title {
    text-align: left;
    font-size: 17px;
}

.sideCart .right {
    font-size: 17px !important;
    font-family: Cormorant Infant, serif;
    padding: 15px 0;
}

.sideCart .name {
    font-style: normal;
    font-weight: 400
}

.sideCart .right .price {
    font-weight: 300;
}

.sideCart .right .quantity {
    color: #4d4d4d;
    font-weight: 600;
}

.sideCart .right .quantity .less, .sideCart .right .quantity .more {
    padding: 5px;
    font-size: 20px;
}

.sideCart .right .remove {
    font-weight: 700;
    width: max-content;
}

.sideCart .right .remove::after {
    width: 100%;
    height: 1px;
    background: #000;
    bottom: 0;
    left: 0;
    content: "";
    position: absolute;
}

.sideCart .total {
    font-size: 25px;
    font-weight: 300;
}

.sideCart .total span.price {
    font-weight: 500;

}

.sideCart .removeCart {
    font-size: 15px;
    color: #2f2f2f;
    text-decoration: underline;
    margin-top: 25px;
    cursor: pointer;
}

/** end sidecart **/
/******** fin HEADER **********/
/******** product cards **************/
.productCard {
    padding: 25px;
    border: 1px solid transparent;
    transition: 0.3s ease-in;
}

.productCard .btn {
    opacity: 0;
    transition: 0.3s ease-in;
}

.productCard:hover {
    border: 1px solid #848484;
    cursor: pointer;
}

.productCard:hover .btn {
    opacity: 1;
}

.productCard .imgWrapper {
    height: 250px;
    width: 250px;
    background: #F5F5F5;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    /*padding: 15px;*/
}

.productCard .imgWrapper img {
    height: 100%;
    width: 100%;
    /*object-fit: contain;*/
    object-fit: cover;
}

.productCard .tagBoutique {
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 5px 15px;
    color: #616161;
    font-family: 'Cormorant Infant', serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.productCard .title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    word-break:break-word;
}

.productCard .subtitle {
    color: #363636;
    font-family: "Cormorant Infant", serif;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
}

.productCard .price {
    text-align: center;
    color: #363636;
    font-family: "Cormorant Infant", serif;
    font-size: 14px;
    font-weight: 700;
}

.price .oldPrice {
    color: grey;
    display: inline;
    width: max-content;
}

.price .oldPrice::before {
    position: absolute;
    height: 8%;
    width: 100%;
    content: "";
    top: 50%;
    left: 0;
    background: grey;
    display: block;
    opacity: 0.5;
}

.price .promo {
    color: #B69B56;
    font-weight: 700;
    /*color: white;*/
    /*background-color: #B69B56;*/
    /*background-color: #464646;*/
    /*padding: 1px 8px;*/
}

/******** end product cards **********/

/******** about **************/
.about .hero .left {
    max-height: min(392px, 90vh);
    width: 100%;
}

.about .hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 19% 81%;
}

.about .history img {
    object-fit: cover;
    object-position: 50% 83%;
}

.about .right img {
    max-height: 700px;
}

.about .canditate {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background: url("/storage/app/public/marion-richaume-golden-texture-5-cropped.jpg") no-repeat;
    background-color: rgba(0, 0, 0, 0);
    background-color: #e5e2dd;
    background-size: cover;
}

.about .rightbox {
    padding: min(7vw, 80px);
    right: -49%;
    position: relative;
    margin-bottom: -50px;
    z-index: 10;
}

.about .leftbox {
    padding: min(7vw, 80px);
    right: -16%;
    position: relative;
    z-index: 9;
}

/*.about .canditate .image2 img {*/
/*    object-position: -4% -117%;*/
/*    height: 79%;*/
/*    transform: translateY(20%);*/
/*}*/
/*.about  .canditate .image1 img {*/
/*    transform: scale(-1, 1) translate(-15%, 5%);*/
/*    left: 3%;*/
/*    height: 106%;*/
/*}*/
/******** end about **********/
/******** richaume**********/
.richaume .hero{
    overflow: hidden;
    width: 100%;
    position: relative;
}

.richaume .hero > img{
    width: 100%;
    object-fit: cover;
    max-width: 1550px;
    max-height: min(65vh, 616px);
    min-height: min(76vh, 500px);
}
.richaume .hero .logo{
    max-width: min(400px, 100%);
    object-fit: contain;
    position: absolute;
    margin: auto;
    padding: 0 15px;
}
.richaume .hero .title{
    z-index: 2;
    font-size: clamp(1rem, 10vw, 3.7rem);
    line-height: 34px;
    position: absolute;
    margin: auto;
}
.richaume .square{
    height: 270px;
    width: 270px;
    cursor:pointer;
    overflow: hidden;
    margin: 5px;
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.square div:nth-child(2){
    font-size: clamp(17px, 2.5vw,1.5rem);
    text-align: center;
    padding: 6px;
}
.richaume #histoire .title,.richaume #engagement .title,.richaume #grange .title{
    padding-right: 3vw;
    padding-left: 3vw;
}
.richaume #histoire img, .richaume #grange img{
    object-position: left;
}
.richaume #engagement img{
    object-position: right;
}
.richaume .square .wrapper{
    background-image: url("/storage/app/public/MARBLE1.jpg");
    padding: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 0.1s ease-in;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content:"";

}
.richaume .square:hover .wrapper {
    transform: scale(1.2);
}

.richaume .square:nth-child(2) .wrapper{
    background-image: url("/storage/app/public/MARBLE2.jpg");
}
.richaume .square:nth-child(3) .wrapper{
    background-image: url("/storage/app/public/MARBLE3.jpg");
}
.richaume .section{
    gap: 3vw;
}
.richaume .section img{
    width: min(700px, 100vw);
    height: min(80vh, 500px);
    object-fit: contain;
}
.richaume .section .text{
    padding-right: 3vw;
    padding-left: 3vw;
}
/******** end richaume **********/

/******** resources **********/
.resources .partner {
    margin: 50px;
}

.resources .partner .title {
    text-transform: none;
    text-decoration: underline;
    font-size: 16px;
}

.resources .partner img {
    height: 150px;
    object-fit: contain;
    max-width: 300px;
}

/******** end resources **********/

/******** SCROLLUP **************/
.scrolldown.hide {
    display: none;
}

.scrolldown {
    cursor: pointer;
    animation: scrollupappears 500ms 3S forwards;
    opacity: 0;
    position: fixed;
    transition: 0.5s ease-in;
    bottom: 50px;
    right: 20px;
    z-index: 10;
    border-radius: 50%;
    border: 1px solid #B69B56;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fffc;
    overflow: hidden;
}

.scrolldown .arrow {
    margin: auto;
    transition: 0.2s ease-in;
    animation: arrow 900ms 3500ms forwards;
}


@keyframes arrow {
    0% {
        transform: translateY(0)
    }
    20% {
        transform: translateY(-7px)
    }
    40% {
        transform: translateY(7px)
    }
    60% {
        transform: translateY(-4px)
    }
    80% {
        transform: translateY(4px)
    }
    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
    0% {
        transform: translateY(0)
    }
    20% {
        transform: translateY(-7px)
    }
    40% {
        transform: translateY(7px)
    }
    60% {
        transform: translateY(-4px)
    }
    80% {
        transform: translateY(4px)
    }
    100% {
        transform: translateY(0)
    }
}

@keyframes scrollupappears {

    0% {
        top: 110vh;
        opacity: 0;
    }
    100% {
        top: 85vh;
        opacity: 1;
    }

}

@-webkit-keyframes scrollupappears /*Safari and Chrome*/
{

    0% {
        top: 110vh;
        opacity: 0;
    }
    100% {
        top: 85vh;
        opacity: 1;
    }
}


/******** END SCROLLUP **************/

/******** HOME **************/
.home .hero {
    max-height: 72vh;
    width: 100%;
    object-fit: cover;
    /*object-position: center;*/
    object-position: 50% 88%;
}

.home .productSelection {
    gap: 4%;
}

.home .productCard .imgWrapper {
    background: transparent;
}

.home .productCard:hover {
    border: 1px solid transparent;
}

.home .tagBoutique {
    position: relative;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    width: max-content;
    margin: 0 auto 15px;
    background: #F5F5F5;
}

.home .price {
    display: none;
}

.sectionMarion .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    max-height: min(500px, 70vh);
}

.sectionMarion .first {
    grid-area: 1 / 1 / 4 / 2;
}

.sectionMarion .second {
    grid-area: 1 / 2 / 4 / 4;
    padding: 0 max(4vw, 30px);
}

.sectionMarion .second img {
    max-width: min(80%, 375px);
}

.sectionMarion .title {
    color: #171717;
    font-weight: 500;
}

.sectionMarion .first img, .sectionMarion .third img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.sectionMarion .third img {
    object-position: 50% 19%;
}

.sectionMarion .third {
    grid-area: 1 / 4 / 4 / 6;
}

.sectionMarion .fourth {
    padding-top: 15px;
    padding-bottom: 15px;
}

.sectionMarionShop .top {
    max-height: min(456px, 70vw);
    background: linear-gradient(101deg, rgba(182, 155, 86, 0.50) 79.83%, rgba(228, 228, 228, 0.00) 112.49%);
    padding: 0 min(7.5%, 98px);
    height: 500px;
}

.sectionMarionShop .imgWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sectionMarionShop img {
    object-fit: contain;
    height: 100%;
    width: 100%;
    padding: min(9vh, 5%);
    max-width: 750px;
    margin: auto;
    opacity: 0.5;
}

.sectionGrange .item {
    height: 500px;
}

.sectionGrange .item .right, .sectionGrange .item .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.sectionGrange .item:nth-child(1), .sectionGrange .item:nth-child(4) {
    background: #F5F5F5;
}

.sectionGrange .item:nth-child(2) {
    background: #CCC0A2;
}

.sectionGrange .item:nth-child(5) {
    background: #B69B56;
    color: white !important;
}

.sectionGrange img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
}

.sectionJoinUs .left {
    flex: 2;
}

.sectionJoinUs .right {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    grid-template-rows: repeat(9, 1fr);
}

.sectionJoinUs .right img {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.sectionJoinUs .right .imgWrapper:nth-child(1) {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 10;
    grid-column-end: 8;
}

.sectionJoinUs .right .imgWrapper:nth-child(2) {
    grid-row-start: 2;
    grid-column-start: 9;
    grid-row-end: 9;
    grid-column-end: 14;
}

/******** end HOME **********/
/******** Recrutement *******/
.recrutement.hero {
    min-height: min(50vh, 450px);
    max-height: 600px;
}

.recrutement .hero .left {
    flex: 1;
    max-height: 500px;
}

.recrutement .hero .right img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.recrutement .hero .right {
    flex: 2;
    max-height: 500px;
}

.recrutement .project .right {
    flex: 4;

}

.recrutement .project .left {
    flex: 5;
}

.recrutement .conditions .right {
    flex: 5;
}

.recrutement .conditions .left {
    flex: 2;
}

.recrutement .conditions .condition {
    position: relative;
    padding: 20px 0;
    max-width: min(calc(100% - 40px), 500px);
}

.recrutement .conditions .condition::after {
    position: absolute;
    content: "";
    width: 378px;
    max-width: 65vw;
    height: 1px;
    background-color: #D7D7D7;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.recrutement .conditions .conditionWrapper:last-child::after {
    display: none;
}

.recrutement .conditions .condition span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.recrutement .conditions .condition span::before {
    position: absolute;
    content: "";
    background-color: #B69B56;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    left: -20px;
    top: 50%;
}

.recrutement .conditions .condition span::after {
    position: absolute;
    content: "";
    background-color: #B69B56;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    right: -20px;
    top: 50%;
}

.canditate {
    background: linear-gradient(262deg, #B69B56 -58.53%, #F5F5F5 64.84%);
    position: relative;
    overflow: hidden;
}

.canditate .title + .text {
    z-index: 10;
}

.canditate .image1 {
    position: absolute;
    content: "";
    height: 100%;
    width: 25%;
    left: 0;
    top: 0;
    z-index: 0;
}

.canditate .image1 img {
    object-fit: contain;
    height: 100%;
    object-position: top;
}

.canditate .image2 img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
}

.canditate .image2 {
    position: absolute;
    content: "";
    height: 100%;
    width: 30%;
    right: 0;
    top: 0;
    z-index: 0;
}

.recrutement .posts {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(400px, 1fr));
}

.recrutement .post {
    max-height: 400px;
}

.recrutement .post img {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.recrutement #oldies .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    padding: 15px;
}

.recrutement #oldies .post:hover > .overlay {
    opacity: 1;
}

.recrutement #oldies .overlay .btn {
    color: white !important;
    border: 1px solid white !important;
}

/******** end Recrutement *******/
/******** Boutique **************/
.shop .hero {
    min-height: min(50vh, 450px);
    max-height: 600px;
}

.shop .hero .left {
    flex: 1;
    max-height: 500px;
}

.shop .hero .left img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.shop .hero .right {
    flex: 2;
}

.shop .filterBy {
    color: #584A4A;
    font-size: 17px;
    font-weight: 400;
    height: 21px;
}

.shop .dropdown {
    color: #252525;
    font-family: Newsreader,serif;
    font-size: 16px;
    font-weight: 500;
    height: 21px;
}

.shop .dropdown svg {
    margin-left: 5px;
}

/*options*/
.shop .optionsContainer {
    position: absolute;
    top: 22px;
    background-color: white;
    height: 130px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    left: 0;
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    transition: all 0.3s 0.5s ease-in-out;
    overflow: hidden;
    box-shadow: -1px 7px 5px 0 rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: -1px 7px 5px 0 rgba(0, 0, 0, 0.14);
    -moz-box-shadow: -1px 7px 5px 0 rgba(0, 0, 0, 0.14);
}

.shop .optionsContainer.active {
    transform: scaleY(1);
}

.shop .optionsContainer > .wrapper {
    opacity: 0;
}

.shop .optionsContainer.active > .wrapper {
    animation: 1s ease 450ms normal forwards 1 fadeIn;
}

.shop .option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #363636;
    font-family: Newsreader,serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    height: 30px;
}

.shop .option .close {
    position: absolute;
    top: 0;
    right: 0;
}

.shop .option .square {
    width: 10px;
    height: 10px;
    border: 2px solid #363636;
    margin-right: 8px;
}

.shop .optionsContainer .list {
    height: 110px;
    flex: auto;
}

.shop .option.selected .square {
    border: #B69B56;
    background-color: #B69B56;
}

/*end options*/
.shop .optionsContainer .unselect {
    flex: 1
}

.shop .optionsContainer .unselect .btn {
    font-family: Newsreader, serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    border: 1px solid #000;
    background: #FFF;
    color: black;
    padding: 10px;
    width: 176px;
}

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

.selectedOption span {
    color: #363636;
    font-family: Newsreader, serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-left: 5px;
    /*margin-top: 6px;*/
}

.results {
    height: 23px;
}

.shop .productCard .imgWrapper {
    height: 293px;
    width: 100%;
}

.shop .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.shop .filterSmart {
    gap: 15px;
}

.shop .filterSmart .btn {
    text-transform: none;
}

.shop .filterSmartMenu {
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    right: 0;
    background-color: white;
    transform: translateX(-100vw);
    transition: transform 0.5s ease-in-out;
    z-index: 10000;
}

.shop .filterSmartMenu.active {
    transform: translateX(0);
}

.shop .filterSmartMenu .top {
    border-bottom: 7px solid #B69B56;
    height: 90px;
}

.shop .filterSmartMenu .top .close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.shop .filterSmartMenu .middle {
    max-height: calc(100vh - 260px);
}

.shop .filterSmartMenu .option {
    margin: 15px 0;
}

.shop .filterSmartMenu .wrapper[name$="Options"] {
    display: none;
}

.shop .filterSmartMenu .wrapper[name$="Options"].active {
    display: flex;
}

/******** end Boutique **************/
/******** Créateur **************/
.creator .hero > .right {
    justify-content: center;
    align-items: center;
    display: flex;
}

.creator .hero > .right > img {
    object-fit: cover;
    /*width: 100%;*/
    object-position: 78% 46%;
    height: min(73vh, 800px);
}

.creator .hero .contact .title {
    font-family: 'Newsreader', serif;
    font-size: 13px;
    font-weight: 400;
    /*text-decoration-line: underline;*/
    text-transform: uppercase;
    margin-right: 15px;
}

.creator .hero .contactWrapper .contact:first-child {
    margin-top: 15px !important;
}

.creator .moreAbout > .left {
    flex: 3;
}

.creator .moreAbout > .right {
    flex: 4;
    padding-right: 7%;
}

.creator .moreAbout > .left > img {
    height: min(70vh, 800px);
    width: min(576px, 100%);
    /*max-height: 55vh;*/
    object-fit: cover;
    object-position: center;
}

.creator .social {
    margin: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 14vw;
}

/* start 26/02/2024*/
.creator .timeline {
    max-width: unset;
    width: min(500px, 100%);
}

/* end 26/02/2024*/
.creator .timeline .line {
    display: flex;
    margin-bottom: 50px;
    color: white;
    z-index: 1;
    position: relative;
}

.creator .timeline .line .left {
    flex: 2;
    text-align: right !important;
    padding-right: 3%;
    font-size: 17px;
    font-weight: 700;
}

.creator .timeline .line .middle {
    flex: 1;
    padding: 0 3%;
    display: flex;
    justify-content: center;
}

.creator .timeline .line .right {
    flex: 5;
    text-align: left;
    padding-left: 3%;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
}

.creator .timeline::before {
    position: absolute;
    content: "";
    height: 100%;
    background-color: #D9D9D9;
    width: 5px;
    top: 0;
    /* start 26/02/2024 */
    left: 33%;
    /*end 26/02/2024 */
    z-index: 0;
}

.creator .titleAlign .left {
    flex: 1;
}

.creator .titleAlign .right {
    flex: 3;
    padding: 0 3%;
    display: flex;
    justify-content: left;
}

.creator .posts {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
}

.creator .post {
    max-height: 300px;
}

.creator .post img {
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.creator .market .wrapper {
    border: 1px solid #B69B56;
    background: #FFFCF7;
    max-width: min(95%, 694px);
    padding: 40px;
}

.creator .market .item {
    margin: 15px 0;
}

.creator .market .item .dot {
    height: 5px;
    width: 5px;
    margin-right: 10px;
    background-color: #B69B56;
    border-radius: 50%;
    display: inline-block;
}
/******** end Créateur **************/
/******** atelier de la lune **************/
/*.atelier.main .hero{
    max-height: 65vh;
    width: 100%;
    object-fit: cover;
    max-width: 1550px;
}
.main.atelier .story{
    gap: 5vw;
}
*/
.atelier.main .hero {
    /*max-height: 65vh;*/
    width: 100%;
    object-fit: cover;
    max-width: 1550px;
    /*min-height: 76vh;*/
    max-height: min(65vh, 616px);
    min-height: min(76vh, 500px);
}
.atelier.main.grange .hero {
    object-position: 10% 90%;
}
.main.atelier .story .text {
    line-height: 26px;
}

.main.atelier .story.boutique {
    gap: 5vw;
    background: linear-gradient(to bottom, transparent 30%, #F5F5F5 30%, #F5F5F5 70%, transparent 70%, transparent 100%);
}

.main.atelier .story {
    gap: 5vw;
}

.main.atelier .story .left {
    padding: 4vw 0;
    flex: 0.45;
    max-height: 100%;
    overflow: hidden;
    min-height: min(50vh, 450px);
}

.main.atelier .story .left img {
    object-fit: contain;
    max-width: 100%;
    max-height: min(500px, 60vh);
    min-height: 378px;
}

.main.atelier .story .right {
    flex: 0.45;
    padding: 90px min(5vw, 100px);
    max-width: 750px;
}

.main.atelier .expo {
    margin-top: 20vh;
    max-width: 1500px;
}

.main.atelier .expo .left {
    flex: 63%;
    background-image: linear-gradient(to right, #ccc0a2 18%, white 18%, white 19%, #ccc0a2 19%, #ccc0a2 21%, white 21%, white 22%, #ccc0a2 22%, #ccc0a2 23%, white 23%);
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding-left: 10vw;
    padding-right: 2vw;
}

.main.atelier .expo .right {
    flex: 37%;
    max-height: 433px;
}

.main.atelier .expo .date {
    padding: 15px;
    font-weight: 800;
}

.main.atelier .expo .right img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.main.atelier .contact .right {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(7, 1fr);
}

.main.atelier .contact .right .imgWrapper:nth-child(1) {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-row-end: 6;
    grid-column-end: 5;
}
.main.atelier .contact .right .imgWrapper:nth-child(1) img{
    object-fit: cover;
    height: 100%;
    object-position: 20% 50%;
}
.main.atelier .contact .right .imgWrapper:nth-child(2) {
    grid-row-start: 4;
    grid-column-start: 6;
    grid-row-end: 7;
    grid-column-end: 10;
}

.main.atelier .contact .ref, .contact .reference .subtitle {
    font-family: 'Newsreader', serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration-line: underline;
    text-transform: uppercase;
    margin-right: 15px;
    display: inline-block;
}

.main.atelier .contact .text {
    font-size: 18px;
}

/******** end atelier de la lune **************/
/******** Events **************/
.events .posts {
    display: grid;
    gap: 5vw;
    grid-template-columns:1fr 1fr;
}

.events .post {
    max-width: 100vw;
    opacity: 0;
}

.events .post:nth-child(1) {
    animation: 1s ease 200ms normal forwards 1 fadeIn, 1s ease 200ms normal forwards 1 slideInTop;
}

.events .post:nth-child(2) {
    animation: 1s ease 350ms normal forwards 1 fadeIn, 1s ease 350ms normal forwards 1 slideInTop;
}

.events .post:nth-child(3) {
    animation: 1s ease 500ms normal forwards 1 fadeIn, 1s ease 500ms normal forwards 1 slideInTop;
}

.events .post:nth-child(4) {
    animation: 1s ease 650ms normal forwards 1 fadeIn, 1s ease 650ms normal forwards 1 slideInTop;
}

.events .post:nth-child(5) {
    animation: 1s ease 800ms normal forwards 1 fadeIn, 1s ease 800ms normal forwards 1 slideInTop;
}

.events .post:nth-child(2) {
    animation: 1s ease 950ms normal forwards 1 fadeIn, 1s ease 950ms normal forwards 1 slideInTop;
}

.events .post .imgWrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    max-height: min(90vh, 500px);
}

.events .post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/******** end events **************/
/******** Contact **************/
.main.contact.hero {
    min-height: min(50vh, 450px);
    max-height: 600px;
}

.main.contact .hero .left {
    flex: 3;
    max-height: 500px;
}

.main.contact .hero .left img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: 50% 88%;
    display: block;
}

.main.contact .hero .right {
    flex: 2;
}

.main.contact #sectionMail {
    overflow: hidden;
    padding: 0;
    height: 0;
    transition: all 0.7s ease-in-out;
}

.main.contact #sectionMail.open {
    height: 1001px;
    padding-bottom: 50px;
    min-height: max-content;
}

.main.contact .reference .right .text {
    color: #646464;
    margin-top: 11px;
}

.main.contact .reference .right .adresse {
    font-weight: 700;
}

.main.contact .map {
    max-width: 100vw;
    overflow: hidden;
    height: 400px;
    width: 464px;
}

.main.contact .mail .top {
    border-top: 10px solid #B69B56;
    border-bottom: 1px solid #D9D9D9;
}

.main.contact .mail .mailWrapper {
    width: min(722px, 100%);
}

.main.contact .mailWrapper .closeMail {
    right: 0;
    position: absolute;
    cursor: pointer;
}

.main.contact .mailWrapper .form {
    width: min(392px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.main.contact input[type=radio] {
    accent-color: #616161;
    width: max-content;
}

.main.contact .formLine {
    padding: 0 15px;
}

.main.contact .form .formLine .label, .main.contact .form .formLine label, .main.contact .form .formLine input::placeholder, .main.contact .form .formLine input {
    color: #616161 !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "Cormorant Infant", serif;
    font-size: 17px;
}

.main.contact .form .formLine input[type=text], .main.contact .form textarea, .main.contact .form select, .main.contact select option {
    outline: none;
    border: none;
    border-bottom: 1px solid #656565;
    padding-bottom: 10px;
    width: 100%;
    font-family: "Cormorant Infant", serif;
    font-size: 17px;
    background-color: transparent;
}

.alert-danger, .main.contact .alert-success {
    position: fixed;
    top: 142px;
    left: 0;
    right: 0;
    z-index: 99;
    max-width: 100%;
    font-size: 17px;
    transition: all 0.5s ease-in-out;
}

.alert.hide {
    transform: translateY(-150px);
    opacity: 0;
}

.main.contact .form textarea {
    border: 1px solid #656565;
    resize: none;
}

.main.contact .form button {
    border-radius: 0;
    outline: none;
    /*border-style: none;*/
}

/******** end Contact **************/
/******** event **************/

.event .hero .right {
    opacity: 0;
    animation: 1s ease 250ms normal forwards 1 fadeIn, 1s ease 250ms normal forwards 1 slideInLeft;
}

.event .hero .left {
    opacity: 0;
    animation: 1s ease 550ms normal forwards 1 fadeIn, 1s ease 550ms normal forwards 1 slideInRight;
}

.event .hero img {
    max-height: min(80vh, 700px);
}

/******** end event **************/

/******** 404 ************* */
.notFound img {
    max-height: min(50vh, 200px);

    /*filter: brightness(136%) hue-rotate(227deg) contrast(76%); broken image 1 */
    filter: brightness(108%) hue-rotate(0) contrast(70%) saturate(0) sepia(69%); /*broken image 3*/
    transform: rotate(-11deg);
}

/******** end 404 ************* */

/********  Owl Dot **************/
.owl-dot span {
    background: transparent !important;
    border: 1px solid #B69B56 !important;
}

.owl-dot.active span {
    background: #B69B56 !important;
}

/********  end Owl Dot **************/
/********  Produit **************/
.product .return a {
    font-size: 20px;
    font-weight: 300;
    width: max-content;
}

.product .smartCarousel {
    height: min(100vw, min(600px, calc(100vh - 120px)));
    width: 100%;
}

.product .smartCarousel .item a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.product .smartCarousel .item a {
    height: min(100vw, min(600px, calc(100vh - 120px)));
    display: flex;
}

.product .lgCarousel .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5%;
    grid-template-rows:19vw;
}
.product .lgCarousel{
    height: max-content;
}

.product .contentContainer {
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr;*/
    /*grid-gap: 7%;*/
}

.product .lgCarousel .defaultWrapper {
    height: min(100%, 672px);
    max-height: calc(50vw - 130px);
    margin-bottom: 5%;
}

.product .lgCarousel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.product .subname {
    font-size: 20px;
    /*font-style: italic;*/
    font-weight: 300;
    text-transform: none;
}

.product .quantity {
    border-bottom: 1px solid black;
    border-top: 1px solid black;
    font-style: italic;
    font-size: 17px;
    font-weight: 500;
    max-width: min(100%, 380px);
    padding: 10px 0;
}

.product .quantity .sign {
    padding: 0 10px;
    cursor: pointer;
}

.product .quantity span {
    font-size: 20px;
}

.product .price {
    color: #0C0C0C;
    font-size: 25px;
    font-weight: 700;
}

.product .description .subtitle {
    color: #000;
    font-size: 17px;
    font-weight: 600;
    text-transform: none;
}

div[name="maxStockMessage"] {
    color: indianred;
    font-size: 17px;
    opacity: 0;
}

div[name="maxStockMessage"].visible {
    opacity: 1;
}

/******** end Produit **************/

/******** animations **********/
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes appear {
    from {
        display: none;
    }
    to {
       display: block;
    }
}
@keyframes slideInRight {
    from {
        transform: translateX(-400px)
    }
    to {
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(400px)
    }
    to {
        transform: translateX(0)
    }
}

@keyframes slideInTop {
    from {
        transform: translateY(400px)
    }
    to {
        transform: translateX(0)
    }
}

/******** end animations **********/
/******** pagination **********/
ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li {
    list-style: none;
    color: #3a3a3a;
    margin: 0 3px;
    padding: 5px;
    font-size: 18px;
}

.pagination li.disabled {
    color: #9a9a9a;
}

.pagination li.active {
    color: #B69B56;
    font-weight: 500;
}

/******** end pagination **********/
/******** LEADER **********/
.leaderSection {
    position: absolute;
    left: 0;
    background-color: white;
    padding: 20px;
    max-height: 123px;
    top: 166px;
    z-index: 1;
    width: 100%;
    transition: ease-in 200ms;
   opacity: 1!important;
}

.leaderSection img {
    max-height: 100%;
}

.leaderSection.hide {
    top: -150px;
    transform: translateY(-166px);
}

/******** end leader **********/
/******** CGV **********/
.cgv a {
    text-decoration: underline;
    cursor: pointer;
}
.cgv a:hover {
    text-decoration: none;
}
/******** end CGV **********/

/******** FOOTER **********/
.footer {
    z-index: 50;
}

.footer .top {
    color: #7D7D7D;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    border-top: 2px solid #B69B56;
    border-bottom: 6px solid #B69B56;
    padding: 30px 12px;

}

.footer .top .page {
    font-weight: 600;
}

.footer .dot {
    height: 5px;
    width: 5px;
    margin: 0 22px;
    background-color: #B69B56;
    border-radius: 50%;
}

.footer .sponsors {
    border-top: 1px solid #D4D4D4;
    border-bottom: 1px solid #D4D4D4;
}

.footer .sponsors .wrapper {
    padding: 20px 0;
}

.footer .sponsors img {
    object-fit: contain;
    height: 100px;
    margin: 20px;
}

.footer .credits {
    margin: 10px;
    color: #7D7D7D;
    font-weight: 300;
    font-size: 14px;
}

.footer .middle .right img {
    max-height: 55px;
    object-fit: contain;
    padding: 0 25px;
    max-width: 80vw;
}

.footer .middle .left {
    min-width: min(100%, 900px);
}

.footer .column {
    padding: 20px;
}

.footer .title {
    font-size: 18px;
    color: #171717;
    font-weight: 400;
    text-align: left;
}

.footer .item {
    margin-top: 24px;
    color: #171717;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.footer .socials svg {
    height: 30px;
    margin-right: 15px;
    cursor: pointer;
}

/******** fin FOOTER **********/


/******** Media queries **********/
@media screen and (max-width: 1425px) {
    .event .return {
        padding-left: 25px;
    }

    .about .leftbox, .about .rightbox {
        right: unset;
        bottom: unset;
        margin: auto;
        margin-bottom: 100px;
    }

}

@media screen and (max-width: 1199px) {
    .sectionJoinUs .left {
        flex: 2;
    }

    .flex-xl-column {
        flex-direction: column;
    }

    .recrutement .canditate .image2 {
        display: none;
    }

    .recrutement .canditate {
        padding-top: 150px;
    }
}

@media screen and (max-width: 1190px) {
    .reference .left > div, .reference .right > div {
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 991px) {
    .flex-lg-column {
        flex-direction: column;
    }

    .title {
        font-size: 21px;
    }

    .footer .title {
        font-size: 18px;
    }

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

    .banner .close {
        margin: 16px 5vw 0 0;
    }

    .header > .top .left, .header .nav {
        display: none;
    }

    .header > .top, .header.sticky.small > .top {
        padding: 16px 5vw;
        height: 75px;
    }

    .header .top .right {
        display: flex;
    }

    .header .floatRight {
        display: none;
    }

    .header .logo {
        margin: 0;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .logo .title, .shop .logo .title {
        font-size: 23px;
    }

    .header .top {
        justify-content: space-between;
    }

    .header > .top .right {
        margin: 0;
        height: auto;
        padding: 0;
    }

    .header > .top .right .wrapper .icon {
        margin-left: 0;
    }

    .banner {
        padding: 16px 10vw 16px 5vw;
    }

    .container {
        padding-right: 0;
        padding-left: 0;
    }

    .tablet-smart-px-7pc {
        padding-right: 7%;
        padding-left: 7%;
    }

    .creator .timeline::before {
        left: 35.1%;
    }

    .productCard .imgWrapper {
        height: 200px;
        width: 200px;
    }

    .home .productSelection {
        gap: 0;
    }

    .shop .hero .right .btn {
        background-color: transparent;
        color: black;
        text-transform: none;
        text-decoration: underline;
        font-family: 'Cormorant Infant', serif;
        font-size: 18px;
        font-weight: lighter;
        border: none;
        margin-top: 10px;
    }

    .event .hero .left {
        animation: 550ms ease 250ms normal forwards 1 fadeIn, 500ms linear 250ms normal forwards 1 slideInTop;
    }

    .event .hero .right {
        animation: 550ms ease 550ms normal forwards 1 fadeIn, 400ms linear 550ms normal forwards 1 slideInTop;
    }

    .text-sm-center, .text-sm-center p, .text-sm-center span {
        text-align: center;
    }

    .mx-sm-auto {
        margin: auto;
    }

    .leaderSection {
        top: 125px;
    }
    .richaume .section .left, .richaume .section .right{
        align-items: center!important;
        justify-content: center!important;
    }
    .richaume .section .title,    .richaume .section .text{
        text-align: center!important;
    }
    .richaume .section img {
        object-position: center!important;
    }
}

@media screen and (max-width: 767px) {
    .flex-md-column {
        flex-direction: column;
    }

    .align-items-md-center {
        align-items: center;
    }

    .justify-content-md-center {
        justify-content: center;
    }

    .mb-sm-20 {
        margin-bottom: 20px;
    }

    .productCard .imgWrapper {
        height: 250px;
        width: 250px;
        margin-bottom: 0;
    }

    .home .productCard .imgWrapper {
        background: #F5F5F5;
    }

    .home .tagBoutique {
        background-color: white;
        top: -35px;
        margin: 0 auto !important;
    }

    .productCard .btn {
        opacity: 1;
        background: white;
        color: #B69B56;
    }

    .shop .productCard .btn {
        margin-right: auto;
        margin-left: auto;
    }

    .shop .productCard .title {
        margin-top: 25px;
    }

    .home .tagBoutique {
        margin: 15px auto;
    }

    .sectionMarion .first {
        grid-area: 1 / 1 / 4 / 3;
    }

    .sectionMarion .second {
        grid-area: 1 / 3 / 4 / 6;
    }

    .sectionGrange .item {
        padding: 7%;
    }

    .sectionGrange img {
        margin-bottom: 25px;
        height: 415px;
    }

    .sectionGrange .item {
        height: unset;

    }

    .shop .hero {
        max-height: unset;
    }

    .creator .moreAbout > .right {
        padding-right: 0;
    }

    .events .posts {
        grid-template-columns:1fr;
    }

    /*.events .post .imgWrapper{*/
    /*    height: 350px;*/
    /*}*/
    .main.atelier .expo .left {
        padding: 12vh 0 2vh;
        background-image: url("/storage/app/public/Turquoise Green-Marion Richaume-M&O2024-4-stripped-up.jpg");
        background-size: 100% 500px;
    }

}

@media screen and (max-width: 664px) {

    .leaderSection {
        top: 143px;
    }
}

@media screen and (max-width: 575px) {
    /* breakpoint = XSM */
    .link {
        font-size: 17px;
    }

    .title {
        font-size: 18px;
        line-height: 25px;
    }

    .text {
        font-size: 17px;
    }

    .title.secondary {
        font-size: 17px;
    }

    .d-xsm-flex {
        display: flex;
    }

    .d-xsm-none {
        display: none;
    }

    .flex-xsm-column {
        flex-direction: column;
    }

    .flex-xsm-column-reverse {
        flex-direction: column-reverse;
    }

    .px-xsm-0 {
        padding-right: 0;
        padding-left: 0;
    }

    .mb-xsm-15 {
        margin-bottom: 15px;
    }

    .mt-xsm-5 {
        margin-top: 5px;
    }

    .mb-xsm-20 {
        margin-bottom: 20px;
    }

    .productCard .btn {
        border: none;
        text-transform: none;
        text-decoration: underline;
        padding-top: 0;
    }

    .productSelection .productCard .subtitle {
        margin: 0;
    }

    .productSelection .productCard .btn {
        margin-top: 0;
    }

    .sectionMarion .second {
        padding: 0;
        grid-area: 1 / 3 / 4 / 6;
    }

    .sectionMarion .first {
        grid-area: 1 / 1 / 4 / 3;
    }

    .sectionGrange img {
        height: 315px;
    }

    .productCard .imgWrapper {
        /*height: 190px;*/
        /*width: 190px;*/
    }

    .sideCart .cartContent {
        padding-right: 15px;
        padding-left: 15px;
    }

    .sideCart .total {
        font-size: 20px;
    }

    .sideCart .right {
        padding: 0;
    }

    .recrutement .canditate .image1 {
        display: none;
    }

    .recrutement .canditate {
        padding-top: 100px;
    }

    .main.atelier .contact .right .imgWrapper:nth-child(2) {
        display: none;
    }

    .main.atelier .contact .right .imgWrapper:nth-child(1) {
        grid-row-start: 2;
        grid-column-start: 3;
        grid-row-end: 7;
        grid-column-end: 10;
    }
}

@media screen and (max-width: 375px) {
    /*.sideNav .card .imgWrapper{*/
    /*    height: 135px;*/
    /*    width: 135px;*/
    /*}*/
    .sideNav .center .wrapper.children {
        padding: 12px;
    }

    .main.atelier .contact .contactWrapper .text {
        font-size: 16px;
        display: inline;
    }

    .main.atelier .contact .contactWrapper {
        align-items: flex-start;
    }
}

@media screen and (max-width: 347px) {
    .leaderSection {
        top: 162px;
    }
}

@media (min-width: 769px) {
    .sideNav {
        width: 50vw;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    /* breakpoint = SM */
    .d-sm-none {
        display: none;
    }

    .flex-sm-column {
        flex-direction: column;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    /* breakpoint = MD */
    .d-md-none {
        display: none;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse;
    }


}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    /* breakpoint = L */
    .d-l-none {
        display: none;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
    /* breakpoint = XL */
    .d-xl-none {
        display: none;
    }
}

@media screen and (min-width: 1400px) {
    /* breakpoint = XXL */
    .d-xxl-none {
        display: none;
    }
}

/******** fin Media queries **********/
