/* -------------------------------------------------------
 * ⚡ fonts
 * ------------------------------------------------------- */
@font-face {
  font-family: "Isidora";
  src: url("../lib/fonts/isidoraAlt-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

/* _______________________________________________________
 * ⚡ ==> ROOT SETTINGS
 * ⚡ ==> CONFIGURATION GLOBAL
 * _______________________________________________________ */

:root {
  /* -------------------------------------------------------
 * 🎨 PALETTE DE COULEURS GÉNÉRALES
 * ------------------------------------------------------- */
  --back-page: #ffc225 url(../images/back.jpg) repeat center/auto;
  --site-color: #ffc225;
  --site-color2: #fccd35;
  --size-text: 14px;
  --color-text: #fff;
  --color-title: #000000;
  --color-black: #000000;
  --color-link: var(--color-text);
  --color-link-hover: #ddd;

  /* -------------------------------------------------------
 * 🛠️ MAX-WIDTH 
 * ------------------------------------------------------- */
  --maxw-width: 100%;
  --maxw-max: 1920px;

  /* -------------------------------------------------------
 * 🛠️ BOUTONS
 * ------------------------------------------------------- */
  --button-height: 48px;
  --button-radius: 25px;
  --button-padding: 0 30px;
  --button-size: 15px;
  --button-back: #e7e1cc;
  --button-color: #333;
  --button-hover-back: #e7e1cc;
  --button-hover-color: #333;

  /* -------------------------------------------------------
 * 🛠️ SCROLLBAR PERSONNALISÉE
 * ------------------------------------------------------- */
  --color-scrollbar: #ccc;
  --color-scrollbar2: #888888;
  --color-scrollbar2b: #888888aa;

  /* -------------------------------------------------------
 * 🛠️ SWEET ALERT 
 * ------------------------------------------------------- */
  --back-sweetalert-overlay: rgba(0, 0, 0, 0.85);
  --back-sweetalert: #fff;
  --color-sweetalert-title: #333;
  --color-sweetalery-content: #9f9f9f;
  --color-sweetalert-error: #d52b13;
  --color-sweetalert-success: #d52b13;

  /* -------------------------------------------------------
 * ✨ GENERAL
 * ------------------------------------------------------- */
  --back: url(../images/texture.png) repeat center center;

  /* -------------------------------------------------------
 * 🛠️ GLIGHTBOX
 * ------------------------------------------------------- */
  --back-box: #fff;
  --color-box-title: #000;
  --size-box-title: 14px;
  --size-box: 14px;
  --max-width-box: 960px;

  /* -------------------------------------------------------
 * 🛠️ PAGES RGPD, P&L, MENTIONS .. 
 * ------------------------------------------------------- */
  --page-legal-max-width: 960px;
  --page-legal-size-title: 25px;
  --page-legal-size-mobile-title: 16px;
  --page-legal-color-title: #333;
  --page-legal-size-title2: 18px;
  --page-legal-size-mobile-title2: 13px;
  --page-legal-color-title2: #666;
  --page-legal-size-title3: 16px;
  --page-legal-size-mobile-title3: 12px;
  --page-legal-color-title3: #999;
  --page-legal-color: #999;
  --page-legal-size: 14px;
  --page-legal-size-mobile: 11px;
  --page-legal-color-link: var(--page-legal-color);
}
@media only screen and (max-width: 1920px) {
  :root {
    --size-text: 0.915vw;
  }
}
@media only screen and (max-width: 1000px) {
  :root {
    --size-text: 14px;
  }
}

@media (hover: hover) and (pointer: fine) {
}

/* -------------------------------------------------------
 * ✨ CONFIGURATION GENERAL
 * ------------------------------------------------------- */
a {
  color: var(--color-link);
  transition: all 350ms ease-out;
}
a:hover {
  color: var(--color-link-hover);
}

html {
  background: var(--back-page) no-repeat center center;
  height: 100%;
  overflow-x: hidden;
  height: -webkit-fill-available;
}
html.openMenu,
.openMenu body {
  overflow-y: hidden;
}
html,
body {
  scroll-behavior: smooth;
}
@media only screen and (max-width: 1000px) {
  html {
    overflow-x: hidden;
  }
  .menuOpen,
  .menuOpen body {
    overflow: hidden;
  }
}

body {
  font-family: "Poppins", serif;
  background: var(--back-page);
  margin: 0;
  text-align: center;
  min-height: 100vh;
  font-size: var(--size-text);
  color: var(--color-text);
  overflow-x: hidden;
}
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}
body.stop-scrolling {
  overflow: initial;
  height: initial;
}
#body2 {
  width: 100%;
}

.noclick {
  cursor: default;
}
.back {
  position: relative;
  background: var(--back);
}
.maxw {
  width: var(--maxw-width);
  max-width: var(--maxw-max);
  margin: 0 auto;
}
.cursor {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  color: var(--color-text);
  font-size: 18px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  z-index: 100;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 300ms ease-out 0ms;
}
.cursor.show {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 200ms ease-out 150ms;
  z-index: 101;
}
.myPage2 > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* -------------------------------------------------------
 * 🌟 DARK / LIGHT MODE 
 * ------------------------------------------------------- */
@media (prefers-color-scheme: dark) {
}
@media (prefers-color-scheme: light) {
}

/* -------------------------------------------------------
 * 🛠️ HOVER DETECT = DESKTOP ONLY
 * ------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
}

/* -------------------------------------------------------
 * 🛠️ PLACEHOLDER & TEXT SELECTION 
 * ------------------------------------------------------- */
form ::-webkit-input-placeholder {
  color: #555;
}
form :-ms-input-placeholder {
  color: #555;
}
form :placeholder-show {
  color: #555;
}

::selection {
  background: #000;
  color: var(--color-text);
}
::-moz-selection {
  background: #000;
  color: var(--color-text);
}

/* -------------------------------------------------------
 * 🛠️ BOUTONS
 * ------------------------------------------------------- */
.btn {
  display: block;
  user-select: none;
  width: fit-content;
  color: var(--button-color);
  font-size: var(--button-size);
  background: var(--button-back);
  border-radius: var(--button-radius);
  padding: var(--button-padding);
  line-height: var(--button-height);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn:after {
  content: "›";
  display: inline-block;
  vertical-align: middle;
  margin-left: 16px;
  position: relative;
  left: 0;
  transition: all 350ms ease-out;
}
.btn:hover {
  background: var(--button-hover-back);
  color: var(--button-hover-color);
}
.btn:hover:after {
  left: 5px;
}
@media screen and (max-width: 1900px) {
  .btn {
    height: 2.7vw;
    font-size: 0.9vw;
    border-radius: 1.5vw;
    line-height: 2.7vw;
    padding: 0 2vw;
  }
}
@media screen and (max-width: 1450px) {
  .btn {
    height: 3.7vw;
    font-size: 1.2vw;
    border-radius: 2vw;
    line-height: 3.7vw;
    padding: 0 2vw;
  }
}
@media screen and (max-width: 1000px) {
  .btn {
    height: 45px;
    font-size: 15px;
    border-radius: 25px;
    line-height: 45px;
    padding: 0 20px;
  }
}

/* -------------------------------------------------------
 * 🛠️ ARIANNE
 * ------------------------------------------------------- */
#arianne {
  width: 90%;
  max-width: 1500px;
  font-size: 12px;
  color: #000;
  text-align: left;
  letter-spacing: 0.03em;
  margin: 200px auto 100px;
}
#banner #arianne {
  margin: 20px 0 100px;
}
#arianne a {
  color: #b8b8b8;
  text-decoration: none;
}
#arianne span {
  padding: 0 10px;
}
#arianne b {
  text-decoration: underline;
  font-weight: normal;
}

/* -------------------------------------------------------
 * 🛠️ BANNER
 * ------------------------------------------------------- */
#banner {
  position: relative;
  margin-top: 0;
  height: 50vh;
  max-height: 680px;
  background: #000;
}
#banner > img {
  width: 100%;
  object-fit: cover;
}
#banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#banner2 {
  position: absolute;
  top: 130px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  line-height: 2em;
}
#banner2 h2 {
  font-size: 17px;
  font-weight: normal;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0 0 15px;
}
#banner2 h1 {
  font-size: 100px;
  color: var(--color-text);
  margin: 0 auto;
  font-weight: normal;
  line-height: 0.9em;
}
#banner2 p {
  font-size: 22px;
  margin: 0 auto 2em;
  letter-spacing: 0;
}
#banner2 .btn {
  margin: 0 auto;
  background: #fffce9;
  font-size: 22px;
  color: #214040;
  font-weight: 600;
  padding: 0 78px;
  line-height: 68px;
  border-radius: 34px;
}
#banner2 .btn:hover {
  background: #214040;
  color: #fffce9;
}
@media only screen and (max-width: 1600px) {
  #banner2 {
    top: 110px;
    width: 49vw;
    line-height: 1.5em;
  }
  #banner2 h1 {
    font-size: 5vw;
  }
  #banner2 p {
    font-size: 1.3vw;
  }
  #banner2 .btn {
    font-size: 1.35vw;
    line-height: 4vw;
    padding: 0 5vw;
  }
}
@media only screen and (max-width: 1400px) {
  #banner {
    margin-top: -90px;
  }
  #banner2 {
    top: 110px;
    width: 49vw;
    line-height: 1.5em;
  }
}
@media only screen and (max-width: 1000px) {
  #banner2 {
    top: 100px;
    width: 320px;
  }
  #banner2 h1 {
    font-size: 47px;
  }
  #banner2 p {
    font-size: 18px;
    line-height: 1.1em;
  }
  #banner2 .btn {
    font-size: 20px;
    line-height: 50px;
    padding: 0 30px;
  }
}

/* -------------------------------------------------------
 * 🛠️ SURLIGNE TEXT EFFECT
 * ------------------------------------------------------- */
.surligneTxt > span {
  position: relative;
  display: inline-block;
}
.surligneTxt > span span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  color: #000;
}

/* -------------------------------------------------------
 * 🛠️ BOX
 * ------------------------------------------------------- */
.openBox,
.openBox body {
  overflow: hidden;
}
#box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 350ms ease-out;
}
.openBox #box {
  opacity: 1;
  pointer-events: auto;
}
#box2 {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 700px;
  background: var(--color-text);
  border-radius: 20px;
  padding: 20px;
  transform: translate(-50%, -50%);
  margin-top: 50px;
  transition: all 350ms ease-out;
}
.openBox #box2 {
  margin-top: 0;
}
#box3 {
  overflow: auto;
  max-width: 100%;
  max-height: 100%;
  color: #000;
}
#box .close {
  position: absolute;
  top: -20px;
  right: -20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: var(--color-text);
  color: #000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  font-family: Arial;
  cursor: pointer;
  transition: all 350ms ease-out;
  z-index: 10;
}
#box .close:hover {
  background: #000;
  color: var(--color-text);
}
@media screen and (max-width: 1000px) {
  #box2 {
    max-width: 95% !important;
    max-height: 95% !important;
  }
  #box.video #box2 {
    height: auto;
  }
  #box .close {
    right: 10px;
    top: 10px;
  }
}

/* -------------------------------------------------------
 * 🛠️ BOX NEWSLETTER
 * ------------------------------------------------------- */
#formNewsletter {
  margin: 30px 30px 0;
  padding: 0;
}
#formNewsletter strong {
  font-size: 36px;
  margin: 0 0 30px;
  display: block;
  font-weight: normal;
}
#formNewsletter label {
  display: block;
  margin: 0 0 20px;
}
#formNewsletter label span {
  display: block;
  margin: 0 0 10px;
  font-size: 18px;
  color: #666;
}
#formNewsletter input {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  text-indent: 10px;
  font-size: 18px;
  border-radius: 25px;
  max-width: 100%;
  padding: 0 20px;
}
#formNewsletter .rgpd {
  color: #ccc;
  font-size: 12px;
  margin: 0 0 20px;
}
#formNewsletter button {
  background: #333;
  color: var(--color-text);
  border: 0;
  height: 60px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
  padding: 0 30px;
  margin: 0 auto;
  font-size: 18px;
  transition: all 350ms ease-out;
}
#formNewsletter button:hover {
  background: #000;
}

/* -------------------------------------------------------
 * 🛠️ BOX VENTE ALCOOL MINEUR
 * ------------------------------------------------------- */
.openVerif,
.openVerif body {
  overflow: hidden;
}
.openVerif #myPage {
  opacity: 1;
  filter: blur(10px);
  pointer-events: none;
}
#venteAlcool {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 600;
  transition: all 350ms ease-out;
  opacity: 1;
  pointer-events: auto;
}
#venteAlcool2 {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 520px;
  max-height: 370px;
  background: var(--color-text);
  color: #000;
  font-size: 20px;
  border-radius: 20px;
  padding: 30px;
  transform: translate(-50%, -50%);
  transition: all 350ms ease-out;
  line-height: 1.3em;
}
#venteAlcool2 strong {
  font-size: 30px;
  margin: 0 0 30px;
  display: inline-block;
  font-weight: normal;
}
#venteAlcool2 .warning {
  font-weight: bold;
  color: #a19335;
}
#venteAlcool2 .small {
  font-size: 14px;
  line-height: 1.2em;
  display: inline-block;
  margin: 0 auto;
  width: 60%;
  color: #aaa;
}
#venteAlcool .btn {
  display: inline-block;
  margin: 30px 10px 0;
  background: #a19335;
}
#venteAlcool .btn.no {
  background: #454439;
}

/* -------------------------------------------------------
 * ⚡ HEADER
 * ------------------------------------------------------- */

/* #header { height:110px; color:#fffae8; position:relative; z-index:9; } */
/* #header:after { content:""; position:absolute; bottom:0; left:0; width:100%; height:1px; background:rgba(255,255,255,0.3); }
  #logo { position: absolute; left: 60px; top: 17px; }
  #logo svg { display:none; }
  @media only screen and (max-width:1600px){
    #logo { top:20px; left:50px; }
  }
  @media only screen and (max-width:1400px){
    #header { height:90px }
    #logo { top:12px; left:30px; }
    #logo img { height:60px }
  }
  @media only screen and (max-width:1000px){
    #header:after { position:fixed; top:0; left:0; width:100%; height:90px; z-index:10; pointer-events:none; background:none; border-bottom:1px solid rgba(255,255,255,.3); transition:all 350ms ease-out; }
    .scrolling #header:after { height:80px; background:#244344; }
    .menuOpen #header:after { height:100px; }
    #logo { position:fixed; top:17px; left:50%; transform:translateX(-50%); z-index:11; transition:all 350ms ease-out; }
    .scrolling #logo { top:7px; }
    .menuOpen #logo { top:17px }
    #logo img { height:65px }
  } */
/*! ICONS */
/* #menu a .link-linkedin {display:flex;align-items: center;justify-content: center;height:100%;width:100%;}
  #menu a .linkedin { width:20px;height:20px;border-radius:50%;border:1px solid var(--color-text);padding:3px; }
   */

/* -------------------------------------------------------
 * ⚡ MENU
 * ------------------------------------------------------- */

/* #menu { display:flex;align-items:center;justify-content: center;position: absolute; top: 30px; right: 100px; letter-spacing:0 }
  #menu a { color: #8a8f84; text-decoration: none;  font-size: 18px; font-weight: bold; margin-left: 70px; position: relative; }
  #menu a span { position:relative; display:inline-block; line-height:1.1em; }
  #menu a span:after { content:""; position:absolute; bottom:-7px; height:2px; border-radius:2px; width:0; right:0; background:var(--color-text); transition:all 350ms ease-out; }
  #menu a:hover, #menu a.select { color:var(--color-text) }
  #menu a:hover span:after, #menu a.select span:after { width:100%; }
  #menu a img { vertical-align: middle; transition:all 350ms ease-out; }
  @media only screen and (max-width:1600px){
    #menu { right:70px; top:20px; }
    #menu a { margin-left:50px; font-size:17px; }
  }
  @media only screen and (max-width:1400px){
    #menu { right:40px; top:14px; line-height:55px; }
    #menu a { margin-left:30px; font-size:15px; }
    #menu a span:after { bottom:-2px; }
  }
  @media only screen and (max-width:1000px){ 
    #menu { padding-top:90px; position:fixed; top:30px; left:0; width:100%; right:0; height:100%; z-index:9; background:#244344; line-height:1.1em; opacity:0; transition:all 350ms ease-out; pointer-events:none; transform:scale(0.95); display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-evenly; align-items: center; overflow:auto; }
    .menuOpen #menu { opacity:1; top:0; transform:scale(1); pointer-events:auto; }
    #menu a { display:block; font-size:30px; text-align:center; margin:10px auto; padding:0; }
  }
  
  
  
/* -------------------------------------------------------
 * ⚡ SUBMENU
 * ------------------------------------------------------- */

/* #submenu { position:absolute; top:130px; left:0; width:100%; z-index:10; opacity:0; height:0; pointer-events:none; background:var(--color-text); overflow:hidden; transition:all 350ms ease-out; border-top:1px solid #dbdee8; }
  .openSubMenu #submenu { height:270px; pointer-events:auto; opacity:1; }
  #submenu a { color: #506091; font-size:15px; width:23%; padding: 30px 20px; border: 1px solid #506091; border-radius: 50px; text-decoration: none; }
  #submenu a.back { display:none; }
  #submenu a:hover { background:#506091; color:var(--color-text) }
  .submenu { display:none; flex-wrap: nowrap; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-evenly; height:100%; max-width:1500px; margin:0 auto; }
  .submenu.show { display:flex; }
  @media only screen and (max-width:1400px){
    #submenu { top:90px; }
    #submenu a { font-size:15px; padding:20px 15px; }
  }
  @media only screen and (max-width:1000px){  
    #submenu { height: auto; bottom:20px; top:80px; position: fixed; }
    .openSubMenu #submenu { height:auto; top:100px; bottom:0; }
    .submenu { flex-direction: column; justify-content: flex-start; align-items: center; }
    #submenu a.back { display:block; background: #244344; color: var(--color-text); }
    #submenu a { width: 80%; margin:30px auto 0; }
  } 
   */

/* -------------------------------------------------------
 * ⚡  MENU BTN
 * ------------------------------------------------------- */

/* #menuBtn { display:none; position:fixed; top:20px; right:27px; cursor:pointer; z-index:10; border-radius:50%; border:1px solid var(--color-text); width:40px; height:40px;  align-items: center; justify-content: center; }
  #menuBtn .lines { display:block; vertical-align:middle; position:relative; top:0; width:20px; text-align:left; }
  #menuBtn .lines span { width:100%; height:2px; background:#fffce9; margin-top:5px; transition:all 350ms ease-out; display:block; position:relative; top:0; }
  #menuBtn .lines span.line1 { margin-top:0 }
  #menuBtn .lines span.line3 { width:100%; }
  #menuBtn:hover .lines span.line3 { width:100%; }
  .menuOpen #menuBtn .lines span.line1 { transform:rotate(45deg); top:7px; }
  .menuOpen #menuBtn .lines span.line2 { width:0; }
  .menuOpen #menuBtn .lines span.line3 { transform:rotate(-45deg); top:-7px; width:100% }
  #menuBtn .txt { display:block; font-size:9px; text-transform:uppercase; color:#fffce9; margin:0 auto; text-align: center; transition:all 350ms ease-out; }
  .menuOpen #menuBtn .txt { opacity:0 }
  @media only screen and (max-width:1000px){
    #menuBtn { display:flex; z-index:11; transition:all 350ms ease-out; }
    .scrolling #menuBtn { top:10px; }
    .menuOpen #menuBtn { top:30px; }
  } */

/* -------------------------------------------------------
 * 🛠️ PRODUCT BOUTIQUE
 * ------------------------------------------------------- */
.prod {
  position: relative;
  display: inline-block;
  width: 33.33%;
  text-align: left;
  text-decoration: none;
  margin: 0 0 80px;
  font-size: 16px;
  border-left: 1px solid rgba(69, 68, 57, 0.3);
  color: #454439;
  line-height: 1.7em;
  vertical-align: middle;
  transition: none;
}
.prod:before {
  content: "Voir le produit";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #857a2c;
  color: #f2e6d9;
  font-size: 18px;
  padding: 0 25px;
  line-height: 50px;
  border-radius: 6px;
  transition: all 350ms ease-out;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 2;
  white-space: nowrap;
}
.prod:hover:before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.prod2 {
  margin: 0 30px;
  display: block;
}
.prod2 .img {
  display: block;
  margin: 0 auto 20px;
  text-align: center;
  height: 505px;
  position: relative;
  overflow: hidden;
}
.prod2 .img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: transform 600ms ease-out;
}
.prod:hover .prod2 .img img {
  transform: translate(-50%, -50%) scale(0.95);
}
.prod h3 {
  font-size: 20px;
  border-bottom: 1px solid rgba(62, 62, 51, 0.5);
  padding: 0 0 1em;
  margin: 0 0 1em;
  font-weight: normal;
}
.prod .prix {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4em;
  width: 125px;
  display: inline-block;
  margin: 6px 0 0;
}
.prod .prix em {
  line-height: 1em;
  display: block;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
}
.prod .btn {
  display: inline-block;
  background: #f2e6d9;
  line-height: 50px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  padding: 0;
  transition: all 350ms ease-out;
  font-size: 14px;
}
.prod:hover .btn {
  background: #a19335;
}
.prod .btn:hover {
  width: 174px;
}
.prod .btn span {
  width: 0;
  overflow: hidden;
  display: inline-block;
  transition: all 350ms ease-out;
  margin-left: 17px;
}
.prod .btn:hover span {
  width: 125px;
}
.prod .btn img {
  position: absolute;
  right: 15px;
  top: 13px;
  transition: all 350ms ease-out;
}
.prod:hover .btn img {
  filter: brightness(5);
}
.prod .btn:after {
  display: none;
}
@media only screen and (max-width: 1920px) {
  .prod2 .img {
    margin: 0 auto 1vw;
    height: 26vw;
  }
  #boutique .prod2 .img {
    height: 20vw;
  }
  .prod h3 {
    font-size: 1.05vw;
    white-space: normal;
  }
  .prod .prix {
    font-size: 1.05vw;
    margin: 0.3vw 0 0;
    width: 6.5vw;
  }
  .prod .btn {
    width: 2.5vw;
    height: 2.5vw;
    line-height: 2.5vw;
    font-size: 0.72vw;
  }
  .prod .btn span {
    margin-left: 0.9vw;
  }
  .prod .btn img {
    right: 0.72vw;
    top: 0.7vw;
    width: 1vw;
  }
  .prod:before {
    font-size: 0.95vw;
    padding: 0 1.1vw;
    line-height: 2.6vw;
  }
}
@media only screen and (max-width: 1000px) {
  .prod {
    margin: 0 0 60px;
    border: 0;
    border-top: 0;
    padding: 60px 0 0;
  }
  #boutiquesList .prod {
    width: 300px;
  }
  #boutiquesList .prod:nth-child(3n + 1) {
    border-top: 0;
  }
  .prod:before {
    display: none;
  }
  .prod2 .img {
    margin: 0 auto 10px;
    height: 265px;
  }
  #boutique .prod2 .img {
    height: 265px;
  }
  .prod h3 {
    white-space: normal;
    padding: 0 0 0.5em;
    margin: 0 0 0.5em;
    font-size: 28px;
  }
  .prod .prix {
    font-size: 20px;
    width: 40%;
    margin: 0;
  }
  .prod .btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    margin: 0;
  }
  .prod .btn img {
    right: 9px;
    top: 8px;
    width: 20px;
  }
  .prod .btn:hover {
    width: 50px;
  }
  .prod .btn:hover span {
    width: 0;
  }
  .prod2 {
    margin: 0;
  }
}

/* -------------------------------------------------------
 * ⚡ CONTENT WEBSITE
 * ------------------------------------------------------- */
#content {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 1900px) {
}
@media only screen and (max-width: 1000px) {
}
