/* 
------JeLoueMonSiteWeb.Com------
--------------2022--------------
---------------v6---------------
-------------ENGINE-------------
-------------TULIA-------------- 
----------MOBILE-FIRST----------
*/

/* 
----------
CONFIG 
----------
*/

:root {
  --light-text: #f7ebe7;
  --dark-text: #131313;
  --primary: #bd1622;
  --secondary: #c26017;
  --primary-font: "SourceSerifPro";
  --secondary-font: "Futura";
  --primary-bg: #f7ebe7;
  --secondary-bg: #d5b1a5;
  --dark-bg: #131313;
  --radius: 5px;
  --gap: 40px;
}

/* 
----------
FONTS 
----------
*/

/* latin */
@font-face {
  font-display: fallback;
  font-family: "Futura";
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/futura_light_bt.woff2) format("woff2"),
    url(./fonts/futura_light_bt.ttf) format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-display: fallback;
  font-family: "Futura";
  font-style: normal;
  font-weight: 600;
  src: url(./fonts/futura_medium_bt.woff2) format("woff2"),
    url(./fonts/futura_medium_bt.ttf) format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-display: fallback;
  font-family: "SourceSerifPro";
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/sourceserifpro-regular.woff2) format("woff2"),
    url(./fonts/sourceserifpro-regular.ttf) format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-display: fallback;
  font-family: "SourceSerifPro";
  font-style: normal;
  font-weight: 600;
  src: url(./fonts/sourceserifpro-bold.woff2) format("woff2"),
    url(./fonts/sourceserifpro-bold.ttf) format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-display: fallback;
  font-family: "SourceSerifPro";
  font-style: normal;
  font-weight: 800;
  src: url(./fonts/sourceserifpro-black.woff2) format("woff2"),
    url(./fonts/sourceserifpro-black.ttf) format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* 
----------
STANDARD 
----------
*/

html,
* {
  scroll-behavior: smooth;
}

body {
  background: var(--primary-bg);
  font-family: var(--primary-font);
  margin: 0;
  padding: 0;
}

main {
  padding-bottom: 50px;
}

section {
  margin: auto;
  overflow: initial;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-family: var(--primary-font);
  font-weight: 800;
  margin: 20px 0;
}

h1 {
  font-size: 12vw;
  opacity: 0.7;
}

h2 {
  font-size: 9vw;
}

.home h2 {
  opacity: 0.4;
  font-size: 10vw;
}

h3 {
  font-size: 7vw;
}

p {
  color: var(--dark-text);
  font-family: var(--primary-font);
  font-size: 15px;
  margin: 20px 0;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--secondary);
}

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

svg {
  height: 10%;
}

.ico15,
.ico33 {
  object-fit: contain;
  height: initial;
  width: 15%;
}

.ico15 {
  width: 15%;
}

.ico33 {
  width: 33%;
}

label {
  color: var(--dark-text);
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin: 20px 0 5px;
  text-transform: uppercase;
}

input[type="text"],
input[type="mail"],
input[type="tel"],
input[type="password"],
textarea {
  border: none;
  border-radius: var(--radius);
  background: #fff;
  font-size: 18px;
  padding: 15px;
  font-family: var(--primary-font);
  width: calc(100% - 30px);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

input.error,
textarea.error {
  border-color: #c00;
  box-shadow: 0 0 5px #c004;
}

textarea {
  height: 100px;
}

.btn,
.btn-primary,
button,
input[type="submit"] {
  background: var(--primary);
  border-radius: var(--radius);
  border: none;
  color: var(--light-text);
  cursor: pointer;
  display: inline-block;
  font-family: var(--primary-font);
  font-size: 18px;
  padding: 7px 15px;
  font-weight: 800;
  text-decoration: none;
}

.btn-secondary {
  background: var(--secondary);
  border: none;
  color: var(--light-text);
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--primary-font);
  padding: 7px 15px;
  text-decoration: none;
}

.btn_contact,
.btn_facebook,
.btn_instagram,
.btn_linkedin,
.btn_location,
.btn_phone,
.btn_pinterest,
.btn_youtube {
  position: relative;
  padding-left: 40px;
}

.btn_contact::before,
.btn_facebook::before,
.btn_instagram::before,
.btn_linkedin::before,
.btn_location::before,
.btn_phone::before,
.btn_pinterest::before,
.btn_youtube::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: calc(100% - 14px);
  left: 7px;
  position: absolute;
  width: 30px;
}

.btn_contact::before {
  background-image: url(./images/ico_contact.svg);
}

.btn_facebook::before {
  background-image: url(./images/social_facebook.svg);
}

.btn_instagram::before {
  background-image: url(./images/social_instagram.svg);
}

.btn_linkedin::before {
  background-image: url(./images/social_linkedin.svg);
}

.btn_location::before {
  background-image: url(./images/ico_location.svg);
}

.btn_phone::before {
  background-image: url(./images/ico_phone.svg);
}

.btn_pinterest::before {
  background-image: url(./images/social_pinterest.svg);
}

.btn_youtube::before {
  background-image: url(./images/social_youtube.svg);
}

.address {
  margin: 20px 0;
  padding: 20px 20px 20px 80px;
  background: url("images/ico_location_primary.svg") no-repeat 15px center /
    40px;
  font-size: 18px;
}

.phone {
  margin: 20px 0;
  padding: 20px 20px 20px 80px;
  background: url("images/ico_phone_primary.svg") no-repeat 15px center / 35px;
  font-size: 18px;
}

hr {
  border-bottom: 1px solid var(--primary-bg);
  border-left: none;
  border-right: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

.block {
  background: var(--primary-bg);
  border-radius: var(--radius);
  box-shadow: 0 0 45px rgba(72, 72, 72, 0.15);
  overflow: hidden;
  position: relative;
}

.success_box {
  background: #090;
  border-radius: var(--radius);
  color: var(--light-text);
  display: none;
  height: 30px;
  margin: 20px auto;
  overflow: hidden;
  padding: 10px;
  width: 100%;
}

.error_box {
  background: #900;
  border-radius: var(--radius);
  color: var(--light-text);
  display: none;
  height: 30px;
  margin: 20px auto;
  overflow: hidden;
  padding: 10px;
  width: 100%;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.pointer {
  cursor: pointer;
}

.hide-sm {
  display: none;
}

.hide {
  display: none;
}

.waiting {
  transition: all ease 0.5s;
}

.finished,
.waiting.active {
  opacity: 0.5;
  filter: blur(1px);
  pointer-events: none;
}

#confirmCart .block {
  transition: all ease 0.5s;
}

.stripeContainer,
#formCard {
  padding: 0 !important;
  width: 100% !important;
}

/* 
----------
GRID 
----------
*/

.flex-frame1 {
  max-width: 1800px;
}

.flex-frame2 {
  max-width: 1400px;
}

.flex-frame3 {
  max-width: 900px;
}

.flex-frame4 {
  max-width: 550px;
}

.flex-frame1,
.flex-frame2,
.flex-frame3,
.flex-frame4 {
  width: calc(100% - 80px);
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  overflow: hidden;
}

.frame1 {
  max-width: 1800px;
}

.frame2 {
  max-width: 1400px;
}

.frame3 {
  max-width: 900px;
}

.frame4 {
  max-width: 550px;
}

.frame1,
.frame2,
.frame3,
.frame4 {
  display: grid;
  gap: var(--gap);
  grid-auto-rows: auto;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  padding: 20px;
  width: calc(100% - 40px);
}

.frame1 > *,
.frame2 > *,
.frame3 > *,
.frame4 > * {
  grid-column: auto / span 4;
}

.col1 {
  grid-column: auto / span 1 !important;
}

.col2 {
  grid-column: auto / span 1 !important;
}

.col3 {
  grid-column: auto / span 1 !important;
}

.col4 {
  grid-column: auto / span 2 !important;
}

.col5 {
  grid-column: auto / span 2 !important;
}

.col6 {
  grid-column: auto / span 2 !important;
}

.col7 {
  grid-column: auto / span 2 !important;
}

.col8 {
  grid-column: auto / span 2 !important;
}

.col9 {
  grid-column: auto / span 3 !important;
}

.col10 {
  grid-column: auto / span 3 !important;
}

.col11 {
  grid-column: auto / span 3 !important;
}

.row1 {
  grid-row: auto / span 1;
}

.row2 {
  grid-row: auto / span 2;
}

.row3 {
  grid-row: auto / span 3;
}

.row4 {
  grid-row: auto / span 4;
}

.row5 {
  grid-row: auto / span 5;
}

.row6 {
  grid-row: auto / span 6;
}

.row7 {
  grid-row: auto / span 7;
}

.row8 {
  grid-row: auto / span 8;
}

.row9 {
  grid-row: auto / span 9;
}

.row10 {
  grid-row: auto / span 10;
}

.row11 {
  grid-row: auto / span 11;
}

.row12 {
  grid-row: auto / span 12;
}

.p1 {
  padding: 10px;
}

.p2 {
  padding: 20px;
}

.p3 {
  padding: 30px;
}

.p4 {
  padding: 40px;
}

.p5 {
  padding: 50px;
}

/* 
----------
HEADER 
----------
*/

header {
  position: relative;
  z-index: 99;
}

.prehead {
  position: fixed;
  z-index: 3;
  background: var(--primary);
  width: 100%;
  height: 22px;
  left: 0;
  top: 0;
  color: var(--primary-bg);
  font-size: 14px;
  font-family: var(--secondary-font);
  line-height: 22px;
}

.header_logo img {
  height: 80px;
  object-fit: contain;
  width: 200px;
  left: 0;
  top: 50px;
  position: fixed;
  z-index: 3;
  border-radius: 5px;
  right: 0;
  margin: auto;
}

.burger {
  background: var(--primary);
  top: 22px;
  left: 0;
  cursor: pointer;
  padding: 20px;
  position: fixed;
  z-index: 7;
}

.btn_header {
  bottom: initial;
  left: initial;
  position: fixed;
  right: 20px;
  top: 27px;
  z-index: 9;
}

#header_container {
  padding-top: 30vh;
}

.btn_card {
  background: transparent;
}
.btn_card img {
  object-fit: contain;
  height: 35px;
  width: 35px;
}

.mt15 {
  margin-top: 150px;
}
/* 
----------
NAV 
----------
*/

.nav_bar {
  background: var(--light-text);
  border: 3px;
  height: 1px;
  transition: ease all 0.3s;
  width: 18px;
}

.nav_bar.bottom_bun {
  margin-top: 4px;
}

.nav_open .nav_bar {
  background: var(--light-text);
}

.nav_open .nav_bar.top_bun {
  transform: rotate(45deg) scale(1.5) translateX(2.4px);
}

.nav_open .nav_bar.bottom_bun {
  transform: rotate(-45deg) scale(1.5) translateX(2.4px);
}

header nav {
  background: var(--primary-bg);
  backdrop-filter: blur(3px);
  -wekkit-backdrop-filter: blur(3px);
  display: flex;
  height: 100vh;
  left: -100vw;
  overflow: initial;
  position: fixed;
  top: 22px;
  opacity: 0;
  width: 100vw;
  transition: ease 0.5s;
  z-index: 5;
}

header nav > div {
  flex-direction: column;
  justify-content: center !important;
}

.nav_open nav {
  left: 0;
  opacity: 1;
}

header nav a {
  color: var(--primary);
  font-size: 28px;
  font-weight: 400;
  opacity: 0;
  transform: rotateX(-50deg);
  padding: 20px;
  transition: opacity ease 0.3s, transform ease 0.4s;
  text-decoration: none;
}

header nav a.show {
  opacity: 1;
  transform: rotateX(0deg);
}

/* 
----------
HOME 
----------
*/

.hero {
  background: #222;
  height: 80vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.gradient {
  mask-image: linear-gradient(#fff0 70%, #000);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gradient:after {
  content: "";
  background: linear-gradient(#0000 33%, #000);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero .heroContainer {
  position: relative;
  bottom: 0;
  left: 0;
  color: #fff;
  height: 75vh;
  width: 100%;
  z-index: 2;
}

.container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("images/forme.svg") no-repeat left center / contain;
  mask-image: linear-gradient(-90deg, #fff0 50%, #ffff);
  z-index: -1;
}

.heroContainer .title {
  text-transform: uppercase;
  position: absolute;
  margin-bottom: 0;
  bottom: 0;
  width: 95vw;
  color: var(--primary-bg);
  padding-left: 5vw;
  bottom: -3.4vw;
}

.heroContainer .title span {
  font-family: var(--secondary-font);
  color: var(--primary);
  display: block;
  padding-left: 5vw;
  margin-left: -5vw;
}

.heroContainer h1.title {
  font-size: 10vw;
  line-height: 8vw;
  font-family: var(--primary-font);
  opacity: 1;
}

.heroContainer h1.title span {
  font-size: 4.5vw;
  padding-bottom: 1.5vw;
  text-align: left;
  position: relative;
  top: 4px;
}

.heroLink {
  display: flex;
  flex-direction: column;
  position: absolute;
  color: var(--primary);
  bottom: 0;
  left: 0;
  width: 50%;
  height: 120px;
  background: var(--primary-bg);
  z-index: 2;
  margin: auto;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
  justify-content: space-evenly;
  padding: 30px 0;
  font-weight: 600;
  border-radius: var(--radius);
  transition: ease 0.5s;
}

.heroLink img {
  height: 50px;
  object-fit: contain;
}

.bgSlide {
  position: absolute;
  top: 0;
  transition: ease opacity 0.8s;
  opacity: 0;
}

.bgSlide.active {
  opacity: 1;
}

.bigLink {
  display: flex;
  flex-direction: column;
  color: var(--primary);
  bottom: 0;
  right: 0;
  height: 120px;
  background: var(--primary-bg);
  z-index: 2;
  margin: auto;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
  justify-content: space-evenly;
  padding: 30px 0;
  font-weight: 600;
  border-radius: var(--radius);
  box-shadow: 0 0 45px rgba(72, 72, 72, 0.1);
  transition: ease 0.5s;
  width: 100%;
}

.linkRed {
  background: var(--primary);
  color: var(--primary-bg);
}

.bigLink img {
  height: 50px;
  object-fit: contain;
}

.bigLink.fixed {
  transform: translateY(0px);
}

.photoRef img {
  transition: ease opacity 1.2s;
  opacity: 0;
}

.photoRef img.visible {
  opacity: 1;
}

.photoRef img {
  box-shadow: 0 0 50px rgba(61, 61, 61, 0.15);
  height: initial;
  object-fit: initial;

  position: absolute;
  transition: all 0.5s ease;
  width: 80%;
  margin: 50px auto;
  left: 0;
  right: 0;
}

.ref p {
  font-size: 18px;
  margin: 50px 0;
}

.ref h2 {
  font-family: var(--secondary-font);
  color: var(--primary);
  font-size: 8vw;
  margin: 100px 0 30px;
}

.comeTop.animate,
.animate .comeTop {
  opacity: 0;
  transform: translateY(50px);
  transition: all ease 0.7s;
}

.comeTop.animate.show,
.animate.show .comeTop {
  opacity: 1;
  transform: translateY(0px);
}

.comeLeft.animate,
.animate .comeLeft {
  opacity: 0;
  transform: translateX(-100px);
  transition: all ease 0.7s;
}

.comeLeft.animate.show,
.animate.show .comeLeft {
  opacity: 1;
  transform: translateX(0px);
}

.comeRight.animate,
.animate .comeRight {
  opacity: 0;
  transform: translateX(100px);
  transition: all ease 0.7s;
}

.comeRight.animate.show,
.animate.show .comeRight {
  opacity: 1;
  transform: translateX(0px);
}

.block.primary {
  background: var(--primary);
  color: var(--primary-bg);
}

.block .titleBlock {
  color: var(--primary-bg);
  margin: 24px 8px 8px;
  font-weight: 600;
  font-size: 18px;
}

.block a {
  border-radius: 0;
  display: block;
  margin-bottom: 0;
  padding: 8px 0;
  text-align: center;
  width: 100%;
}

.blockZ589 {
  margin-top: -40px;
  padding-top: 0px;
  padding-bottom: 50px;
  position: relative;
  z-index: 9;
}

img.map {
  width: 85vw;
  position: absolute;
  right: -25vw;
  height: 800px;
  top: -40px;
  left: initial;
  z-index: 1;
}
.gradient_map {
  width: 85vw;
  position: absolute;
  right: -25vw;
  height: 800px;
  top: -40px;
  left: initial;
  z-index: 2;
  background: linear-gradient(transparent 50%, var(--primary-bg));
}

.blockZ788 {
  top: 20%;
  left: 0;
  margin: auto;
  position: absolute;
  width: 50%;
  z-index: 2;
}

.blockZ79 {
  top: 50%;
  right: 0;
  margin: auto;
  position: absolute;
  width: 50%;
  z-index: 2;
}

.linkCatHome {
  width: 23%;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  padding: 1%;
  color: #000;
}

.linkCatHome img {
  object-fit: contain;
  height: 80px;
  width: 90px;
  display: inline-block;
}

.linkCatHome span {
  display: block;
}

.linkCat {
  background: var(--primary);
  color: var(--light-text);
  border-radius: var(--radius);
  margin-right: var(--gap);
  padding: calc(var(--gap) / 5) calc(var(--gap) / 2);
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.lineOpeningTimes {
  display: flex;
  gap: 50px;
}

.lineOpeningTimes p {
  font-size: 18px;
  margin: 15px 0;
}

.lineOpeningTimes p:first-child {
  color: #666;
}

.lineOpeningTimes .openingHours {
  font-weight: bold;
}

section.horizontalScroll {
  display: flex;
  overflow-x: auto;
  margin: -6.5vw 0 80px;
  padding: 3vw;
}

section.horizontalScroll .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

section.horizontalScroll::-webkit-scrollbar {
  display: none;
}

section.horizontalScroll {
  position: relative;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.horizontalScroll .card {
  margin: 15px;
  width: calc(80vw - 30px);
  max-width: 380px;
}

.goRight {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--primary-bg));
  cursor: pointer;
  height: 96%;
  width: 20%;
  right: 0;
  transition: all ease 0.2s;
}

@keyframes goright {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(15px);
  }
  40% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

.goRight::after {
  content: "";
  background: url(images/arrow-right-primary.svg) no-repeat center center /
    cover;
  color: var(--primary);
  font-size: 24px;
  font-weight: bold;
  margin: auto;
  inset: 0;
  position: absolute;
  height: 20px;
  width: 20px;

  animation-name: goright;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.sectionContact .block {
  padding-top: 50px;
  padding-bottom: 100px;
  text-align: center;
}

.sectionContact .block * {
  color: var(--light-text);
}

.sectionContact .block h3 {
  text-align: center;
  letter-spacing: 10px;
}

.sectionContact .block h3 span {
  display: block;
  text-transform: uppercase;
  font-family: var(--primary-font);
  font-size: 25px;
  letter-spacing: 0px;
}

.sectionContact .block p {
  margin: 30px 0;
}

.sectionContact .block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50vh;
  width: 100%;
  background: url("images/forme.svg") no-repeat center bottom / contain;
  z-index: 1;
  opacity: 1;
  mask-image: linear-gradient(-90deg, #0000, #ffff);
}

.card {
  padding: 0;
  position: relative;
}

.card .content {
  text-align: center;
  padding: 35px 25px;
}

.card .title,
.cardInCart .title {
  color: var(--dark-text);
  font-family: var(--primary-font);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cardInCart .title {
  font-size: 22px;
  margin-bottom: 0px;
  height: 34px;
  display: flex;
  align-items: start;
  justify-content: start;
  text-decoration: none;
  text-align: left;
  line-height: 20px;
  overflow: hidden;
}

.btn-add {
  background: var(--primary);
  border-radius: 0;
  cursor: pointer;
  font-size: 18px;
  left: 0;
  margin-bottom: 0;
  position: relative;
  text-align: center;
  user-select: none;
  width: calc(100% - 30px);

  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}

.btn-add::before {
  content: "";
  background: url("images/ico_addcard.svg") no-repeat center center / contain;
  display: block;
  position: absolute;
  inset: 0;
  left: 10px;
  right: initial;
  margin: auto;
  height: 30px;
  width: 30px;
}

.btn-add.added {
  background: var(--primary-bg);
  color: var(--primary);
}

.btn-add.added::before {
  background: url("images/ico_incard.svg") no-repeat center center / contain;
}

.quantityControls {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 25px;
}

.quantityControls span {
  padding: 0 8px;
  font-size: 22px;
}

.card .price,
.card .new_price,
.cardInCart .price,
.cardInCart .new_price {
  font-size: 18px;
  margin: 0;
}

.card .price strong,
.card .new_price strong,
.cardInCart .price strong,
.cardInCart .new_price strong {
  font-weight: 600;
  font-size: 26px;
}

.card .old_price,
.cardInCart .old_price {
  position: absolute;
  width: 100%;
  text-decoration: line-through;
  margin: -10px 0 0;
  padding: 0;
  left: 0;
}

.card img {
  height: 300px;
  width: 100%;
}

.clickAll {
  cursor: pointer;
}

#header_container .card,
#header_container .card.hide {
  box-shadow: 0 0 350px 50px #000;
  position: absolute;
  width: 95%;
  margin: auto;
  max-width: 500px;
  left: 10%;
  top: 33vh;
  opacity: 0;
  transform: translateX(20px);
  transition: ease all 0.8s;
}

.buttonContainer {
  background: linear-gradient(transparent 50%, var(--primary-bg));
  position: fixed;
  pointer-events: none;
  position: fixed;
  pointer-events: none;
  bottom: 0;
  width: 100%;
  padding: 100px 0 30px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.btn-float {
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  pointer-events: all;
  font-size: 1.5em;
  padding-left: 70px;
  padding-right: 30px;
  bottom: 10px;
  right: 10px;
  width: initial;
}

.btn-float.added {
  padding-right: 10px;
}

.btn-float .quantityControls {
  position: relative;
  margin-left: 50px;
  display: inline-block;
}

/* 
----------
PAGES 
----------
*/

.page section.title {
  margin-top: 10vh;
  margin-bottom: 5vh;
}

input.search,
input.search:hover,
input.search:focus,
input.search:active {
  border: none;
  background: #fff;
  font-size: 24px;
  padding: 15px;
  font-family: var(--primary-font);
  width: calc(100% - 30px);
}

input.search::placeholder {
  color: #999;
}

.productInfoContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0;
  padding: 0 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.productInfoContainer .infoTitle strong {
  color: var(--primary);
  font-weight: bold;
  font-size: 24px;
}

.productDescription {
  font-size: 18px;
}

.collectionImage {
  object-fit: contain;
  max-height: 80px;
  max-width: 150px;
}

#cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0009;
  z-index: 9999;
  align-items: center;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  overflow: hidden;
  opacity: 0;
  transition: ease 0.8s;
}

#cart.show {
  pointer-events: all;
  opacity: 1;
}

#cart > .content {
  background: var(--primary-bg);
  border-radius: var(--radius);
  position: relative;
  margin: 5vh auto;
  height: 90vh;
  max-width: 450px;
  overflow: hidden;
  transform: translateX(25vw);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.8s;
  width: 90vw;
}

#cart.show .content {
  transform: translateX(0);
}

#cart > .content > * {
  padding: 10px 30px;
}

#cart > .content .footer {
  position: absolute;
  bottom: 0;
  padding: 0;
  left: 0;
  width: 100%;
}

#cart > .content .footer a {
  background: url("images/ico_confirm.svg") no-repeat 94% center / auto 75%
    var(--primary);
  border-radius: 0;
  font-size: 28px;
  width: calc(100% - 45px);
  padding-left: 30px;
}

.closeCart {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  height: 30px;
  width: 30px;
  background: url("images/ico_close.svg") no-repeat center center / contain;
}

.cardInCart {
  display: flex;
  height: 130px;
  margin: 25px 0;
  gap: 20px;
  position: relative;
  align-items: stretch;
}

.cardInCart:not(.block) {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
}

.cardInCart img {
  object-fit: cover;
  height: 100%;
  width: 30%;
}

.cardInCart:not(.block) img {
  width: 20%;
}

.cardInCart .quantityControls {
  position: absolute;
  right: 0;
  top: initial;
  bottom: 10px;
  left: 0;
  text-align: center;
}

.cardInCart .quantityControls span {
  font-size: 18px;
}

#cart .total {
  padding: 30px;
}

#cart .total p {
  font-size: 24px;
}

#cart .total p strong {
  float: right;
}

#cart .body {
  max-height: calc(100% - 300px);
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

#cart .body::after {
  content: "";
  background: linear-gradient(transparent, var(--primary-bg));
  position: absolute;
  bottom: 170px;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  height: 20%;
  width: 100%;
}

#cart .body > div:last-child {
  margin-bottom: 180px;
}

#cart .body::-webkit-scrollbar {
  display: none;
}

.lineTable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.lineTable p {
  font-size: 18px;
  margin: 0 !important;
  min-width: 90px;
}

.lineTable p:last-child {
  text-align: right;
}

.timeList {
  padding: 0;
}

.timeList li {
  list-style: none;
  font-size: 18px;
  padding: 8px;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
}

.timeList li.selected:not(.disabled) {
  background: var(--primary);
  color: var(--primary-bg);
}

.timeList li.disabled {
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}

.priceWeight {
  height: 22px;
  margin: 0;
}

/* 
----------
FOOTER 
----------
*/

aside.reviews {
  margin-bottom: -120px;
}

aside.reviews.flex-frame1 {
  max-width: initial;
  width: 95%;
}

.review {
  border-radius: var(--radius);
  margin: 30px;
  background: var(--primary-bg);
  box-shadow: 0 0 30px #0001;
  padding: 15px 25px;
  position: relative;
  flex: 1;
  z-index: 1;
}

.review p {
  font-size: 16px;
  margin: 30px;
}

.review .author {
  text-align: right;
  font-size: 14px;
  color: #999;
}

.review .stars {
  display: flex;
  justify-content: space-evenly;
  margin-top: -40px;
}

.review .star {
  background: url("./images/star.svg") no-repeat center center / contain;
  height: 40px;
  width: 40px;
}

footer {
  background: var(--secondary-bg);
  margin-top: 50px;
  padding-top: 50px;
}

footer .logo_footer {
  height: 200px;
  object-fit: contain;
  width: 200px;
}

footer .main_footer {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  flex-direction: column;
  padding-bottom: 50px;
}

footer .main_footer > * {
  width: 85%;
  text-align: justify;
}

footer nav {
  align-items: center;
  background: transparent;
  display: flex;
  flex-direction: column;
}

footer nav a {
  color: #fff;
  font-size: 16px;
  padding: 10px;
  text-decoration: none;
}

footer p {
  color: #fff;
}

footer .social_link {
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .social_link li {
  padding: 10px;
}

footer .legal {
  background: #111;
}

footer .legal p,
footer .legal a {
  color: #999;
  font-size: 12px;
  padding: 5px 0;
  text-align: center;
  text-decoration: none;
}

/* 
----------
THEME RESPONSIVE 
----------
*/

.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

@media screen and (max-width: 320px) {
  .sm-hide {
    display: none;
  }

  .frame1,
  .frame2,
  .frame3,
  .frame4 {
    grid-template-columns: repeat(1, 1fr);
  }

  .frame1 > *,
  .frame2 > *,
  .frame3 > *,
  .frame4 > * {
    grid-column: auto / span 1 !important;
  }

  .sm-col1 {
    grid-column: auto / span 1 !important;
  }

  .sm-col2 {
    grid-column: auto / span 1 !important;
  }

  .sm-col3 {
    grid-column: auto / span 1 !important;
  }

  .sm-col4 {
    grid-column: auto / span 1 !important;
  }
}

@media screen and (min-width: 321px) and (max-width: 640px) {
  .sm-hide {
    display: none;
  }

  .sm-col1 {
    grid-column: auto / span 1 !important;
  }

  .sm-col2 {
    grid-column: auto / span 2 !important;
  }

  .sm-col3 {
    grid-column: auto / span 3 !important;
  }

  .sm-col4 {
    grid-column: auto / span 4 !important;
  }

  .celRef {
    position: relative;
    overflow: hidden;
    height: 500px;
  }

  .review {
    display: none;
    width: 100%;
  }

  .review:first-child {
    display: initial;
  }

  .horizontalScroll .btn-add {
    text-align: right;
  }
}

@media screen and (min-width: 640px) {
  .frame1,
  .frame2,
  .frame3,
  .frame4 {
    grid-template-columns: repeat(8, 1fr);
  }

  .frame1 > *,
  .frame2 > *,
  .frame3 > *,
  .frame4 > * {
    grid-column: auto / span 8;
  }

  .col3 {
    grid-column: auto / span 2 !important;
  }

  .col4 {
    grid-column: auto / span 2 !important;
  }

  .col5 {
    grid-column: auto / span 4 !important;
  }

  .col6 {
    grid-column: auto / span 4 !important;
  }

  .col7 {
    grid-column: auto / span 4 !important;
  }

  .col8 {
    grid-column: auto / span 6 !important;
  }

  .col9 {
    grid-column: auto / span 6 !important;
  }

  .col10 {
    grid-column: auto / span 7 !important;
  }

  .col11 {
    grid-column: auto / span 7 !important;
  }

  .header_logo img {
    width: 120px;
    left: 50px;
    top: 14px;
    right: initial;
  }

  #cart > .content {
    margin: 5vh 5vh 5vh auto;
  }

  .blockZ589 {
    margin-top: 80px;
    padding-top: 50px;
  }

  h1 {
    font-size: 7vw;
  }

  .hero {
    height: calc(65vh + 123px);
    overflow: initial;
  }

  .hero .heroContainer {
    height: 60vh;
  }

  .heroContainer h1.title {
    font-size: 8vw;
  }

  .heroContainer h1.title span {
    font-size: 2.5vw;
    text-align: right;
  }

  .cardInCart {
    height: 120px;
  }

  .cardInCart .quantityControls {
    right: 8px;
    left: initial;
    bottom: 30px;
    text-align: right;
  }

  h2 {
    font-size: 6vw;
  }

  .home h2 {
    opacity: 0.4;
    font-size: 6vw;
  }

  h3 {
    font-size: 4vw;
  }

  .goRight {
    display: none;
  }

  .productDescription h2 {
    font-size: 3vw;
  }

  header nav > div {
    padding-left: 50px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  .md-hide {
    display: none;
  }

  .md-col1 {
    grid-column: auto / span 1 !important;
  }

  .md-col2 {
    grid-column: auto / span 2 !important;
  }

  .md-col3 {
    grid-column: auto / span 3 !important;
  }

  .md-col4 {
    grid-column: auto / span 4 !important;
  }

  .md-col5 {
    grid-column: auto / span 5 !important;
  }

  .md-col6 {
    grid-column: auto / span 6 !important;
  }

  .md-col7 {
    grid-column: auto / span 7 !important;
  }

  .md-col8 {
    grid-column: auto / span 8 !important;
  }

  .celRef {
    overflow: hidden;
    height: 500px;
  }

  .review {
    display: none;
    width: 100%;
  }

  .review:first-child {
    display: initial;
  }
}

@media screen and (min-width: 1224px) {
  .frame1,
  .frame2,
  .frame3,
  .frame4 {
    grid-template-columns: repeat(12, 1fr);
  }

  .frame1 > *,
  .frame2 > *,
  .frame3 > *,
  .frame4 > * {
    grid-column: auto / span 12;
  }

  .col2 {
    grid-column: auto / span 2 !important;
  }

  .col3 {
    grid-column: auto / span 3 !important;
  }

  .col4 {
    grid-column: auto / span 4 !important;
  }

  .col5 {
    grid-column: auto / span 5 !important;
  }

  .col6 {
    grid-column: auto / span 6 !important;
  }

  .col7 {
    grid-column: auto / span 7 !important;
  }

  .col8 {
    grid-column: auto / span 8 !important;
  }

  .col9 {
    grid-column: auto / span 9 !important;
  }

  .col10 {
    grid-column: auto / span 10 !important;
  }

  .col11 {
    grid-column: auto / span 11 !important;
  }

  header {
    position: relative;
  }

  .burger {
    display: none;
  }

  header nav {
    height: initial;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 22px;
  }

  header nav > div {
    flex-direction: row;
    justify-content: space-around !important;
  }

  header.fixed nav {
    top: 0;
  }

  header nav a {
    font-size: 16px;
    font-weight: 200;
    opacity: 1;
    transform: none;
    font-family: var(--secondary-font);
    text-transform: uppercase;
  }

  .hero .heroContainer {
    position: absolute;
    height: 20vh;
  }

  .hero .heroContainer h1.title {
    font-size: 4vw;
    line-height: 2.1vw;
    font-family: var(--primary-font);
  }

  #header_container .card:first-child,
  #header_container .card.active {
    opacity: 1;
    transform: translateX(0px);
  }

  .title span {
    padding-right: 3vw;
    margin-left: -5vw;
  }

  .heroLink {
    display: flex;
    flex-direction: column;
    position: absolute;
    color: var(--primary);
    bottom: 0;
    left: initial;
    right: 5%;
    width: 280px;
    height: 120px;
    background: var(--primary-bg);
    z-index: 2;
    margin: auto;
    text-transform: uppercase;
    text-decoration: none;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px 0;
    transition: ease 0.5s;
    transform: translateY(-122px);
    top: 0;
  }

  .heroLink img {
    height: 50px;
    object-fit: contain;
  }

  .celRef {
    position: relative;
    overflow: initial;
  }

  .ref h2 {
    font-size: 2.5vw;
  }

  h2 {
    font-size: 5vw;
  }

  h2.smallTitle {
    font-size: 1.7vw;
  }

  h3 {
    font-size: 2vw;
  }

  .invitationSpa img {
    width: 50vw;
  }

  .sectionContact {
    background: url("./images/map.webp") no-repeat center center / contain;
    padding: 150px 0;
  }

  .productInfoContainer {
    flex-direction: row;
  }

  footer .main_footer {
    flex-direction: row;
    width: 50%;
  }

  footer .main_footer > * {
    width: 33%;
    max-width: 400px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
  .lg-hide {
    display: none;
  }

  .lg-col1 {
    grid-column: auto / span 1 !important;
  }

  .lg-col2 {
    grid-column: auto / span 2 !important;
  }

  .lg-col3 {
    grid-column: auto / span 3 !important;
  }

  .lg-col4 {
    grid-column: auto / span 4 !important;
  }

  .lg-col5 {
    grid-column: auto / span 5 !important;
  }

  .lg-col6 {
    grid-column: auto / span 6 !important;
  }

  .lg-col7 {
    grid-column: auto / span 7 !important;
  }

  .lg-col8 {
    grid-column: auto / span 8 !important;
  }

  .lg-col9 {
    grid-column: auto / span 9 !important;
  }

  .lg-col10 {
    grid-column: auto / span 10 !important;
  }

  .lg-col11 {
    grid-column: auto / span 11 !important;
  }

  .lg-col12 {
    grid-column: auto / span 12 !important;
  }
}

@media screen and (min-width: 1280px) {
  .xl-hide {
    display: none;
  }

  .xl-col1 {
    grid-column: auto / span 1 !important;
  }

  .xl-col2 {
    grid-column: auto / span 2 !important;
  }

  .xl-col3 {
    grid-column: auto / span 3 !important;
  }

  .xl-col4 {
    grid-column: auto / span 4 !important;
  }

  .xl-col5 {
    grid-column: auto / span 5 !important;
  }

  .xl-col6 {
    grid-column: auto / span 6 !important;
  }

  .xl-col7 {
    grid-column: auto / span 7 !important;
  }

  .xl-col8 {
    grid-column: auto / span 8 !important;
  }

  .xl-col9 {
    grid-column: auto / span 9 !important;
  }

  .xl-col10 {
    grid-column: auto / span 10 !important;
  }

  .xl-col11 {
    grid-column: auto / span 11 !important;
  }

  .xl-col12 {
    grid-column: auto / span 12 !important;
  }
}

/* ----------MODULES-STYLE---------- */

/* MEDIAS TEMPORARY */
.m_media {
  position: relative;
}

.m_media img {
  position: absolute;
}

.m_media {
  min-height: 150px;
}

/* GRID TEST */
.m_test {
  background: var(--dark-bg);
  height: 40px;
}

.m_test.col1::after {
  content: "1";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col2::after {
  content: "2";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col3::after {
  content: "3";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col4::after {
  content: "4";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col5::after {
  content: "5";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col6::after {
  content: "6";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col7::after {
  content: "7";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col8::after {
  content: "8";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col9::after {
  content: "9";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col10::after {
  content: "10";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col11::after {
  content: "11";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

.m_test.col12::after {
  content: "12";
  color: var(--light-text);
  display: block;
  font-family: Arial;
  font-size: 30px;
  font-weight: 800;
  opacity: 0.2;
  text-align: center;
}

/* ---------- Notification ---------- */

.red {
  background-color: #e74c3c;
}

.green {
  background-color: #4b8c1d;
}

.orange {
  background-color: #b24903;
}

.blue {
  background-color: #3498db;
}

.grey {
  background-color: #333333;
}

.ctn_notification {
  left: 0px;
  opacity: 0;
  padding: 20px 0;
  position: fixed;
  text-align: center;
  top: -100px;
  transition: all cubic-bezier(0.3, 0.1, 0.33, 1) 0.5s;
  width: 100%;
  z-index: 999;
}

.ctn_notification.checked {
  opacity: 1;
  top: 0px;
}

.ctt_message {
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.aboutInput {
  display: none;
}
