@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap");
@font-face {
  font-family: "siredicon";
  src: url("../fonts/siredicon/siredicon.eot?75y2mr");
  src: url("../fonts/siredicon/siredicon.eot?75y2mr#iefix") format("embedded-opentype"), url("../fonts/siredicon/siredicon.ttf?75y2mr") format("truetype"), url("../fonts/siredicon/siredicon.woff?75y2mr") format("woff"), url("../fonts/siredicon/siredicon.svg?75y2mr#siredicon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "another_shabby";
  src: url("../fonts/another_shabby/anothershabby.eot");
  src: url("../fonts/another_shabby/anothershabby.eot?#iefix") format("embedded-opentype"), url("../fonts/another_shabby/anothershabby.woff2") format("woff2"), url("../fonts/another_shabby/anothershabby.woff") format("woff"), url("../fonts/another_shabby/anothershabby.ttf") format("truetype"), url("../fonts/another_shabby/anothershabby.svg#anothershabby") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "playfair";
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "mention_signature";
  src: url("../fonts/mention_signature/MentionSignature.eot");
  src: url("../fonts/mention_signature/MentionSignature.eot?#iefix") format("embedded-opentype"), url("../fonts/mention_signature/MentionSignature.woff2") format("woff2"), url("../fonts/mention_signature/MentionSignature.woff") format("woff"), url("../fonts/mention_signature/MentionSignature.svg#MentionSignature") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gotham_book";
  src: url("../fonts/GothamBook.ttf") format("truetype");
}
@font-face {
  font-family: "harley_brush";
  src: url("../fonts/harley_brush.otf") format("opentype");
}
@keyframes slideFleche {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes outSlideFleche {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/** MODIFICATIONS DEWEY 2023 **/
.body-fr body.on-scroll #masthead .header-container {
  position: absolute;
}
.body-fr .btn-filled {
  transition: 0.3s;
}
.body-fr .btn-filled:hover {
  background-color: #F99300 !important;
  transition: 0.3s;
}
.body-fr .link-2 {
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: black;
  padding: 0 1px;
  transition: color ease 0.3s;
}
.body-fr .link-2::before, .body-fr .link-2::after {
  content: "";
  position: absolute;
  background-color: #AD0023;
  z-index: -1;
  height: 2px;
}
.body-fr .link-2::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
.body-fr .link-2::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}
.body-fr .link-2:hover::before {
  width: 100%;
}
.body-fr .link-2:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}
.body-fr .link-orange {
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: black;
  padding: 0 1px;
  transition: color ease 0.3s;
  z-index: 10000;
}
.body-fr .link-orange::before, .body-fr .link-orange::after {
  content: "";
  position: absolute;
  background-color: #F99300;
  height: 2px;
}
.body-fr .link-orange::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
@media only screen and (max-width: 768px) {
  .body-fr .link-orange::before {
    width: 100%;
  }
}
.body-fr .link-orange::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}
@media only screen and (max-width: 768px) {
  .body-fr .link-orange::after {
    display: none;
  }
}
.body-fr .link-orange:hover::before {
  width: 100%;
}
.body-fr .link-orange:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}
@media only screen and (max-width: 768px) {
  .body-fr .link-orange:hover::after {
    display: none;
  }
}
.body-fr .btn-outline {
  transition: 0.3s;
}
.body-fr .btn-outline:hover {
  background-color: #F99300 !important;
  transition: 0.3s;
}
.body-fr .btn-buy {
  font-family: "Raleway";
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  padding-bottom: 2px;
  margin: 0 16px;
  font-size: 14px;
}
.page-id-845 .body-fr .btn-buy {
  color: #161615;
}
.body-fr #masthead {
  background-color: inherit;
}
.body-fr #masthead .new-header {
  position: absolute;
  z-index: 1000;
  width: 100vw;
}
.page-id-845 .body-fr #masthead .new-header {
  position: relative !important;
}
.body-fr #masthead .new-header .header-container {
  position: absolute;
  background-color: inherit;
}
.page-id-845 .body-fr #masthead .new-header .header-container {
  position: relative !important;
  color: #161615;
}
.body-fr #masthead .new-header .header-container .header-content #site-menu-icon {
  background-color: inherit !important;
}
.body-fr #masthead .new-header .header-container .header-content #site-menu-icon #site-menu-icon-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  bottom: 35%;
  left: 50%;
}
.body-fr #masthead .new-header .header-container .header-content #site-menu-icon #site-menu-icon-content .img-icon:after {
  mask-image: url("../images/2023/home-header/burger-icon.svg");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/2023/home-header/burger-icon.svg");
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  background-color: #FFFFFF;
  content: "";
  width: 27px;
  height: 14px;
  display: block;
  transition: 0.6s opacity ease;
  opacity: 1;
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #site-menu-icon #site-menu-icon-content .img-icon:after {
  background-color: #161615;
}
.body-fr #masthead .new-header .header-container .header-content #site-menu-icon #site-menu-icon-content .img-icon:before {
  display: none;
}
.body-fr #masthead .new-header .header-container .header-content #site-menu-icon #site-menu-icon-content .img-icon:active:after {
  opacity: 0;
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #site-menu-icon #site-menu-icon-content .text-icon {
  color: #161615;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container .header-content #site-menu-icon #site-menu-icon-content .text-icon {
    display: none;
  }
}
.body-fr #masthead .new-header .header-container .header-content #site-logo {
  width: 100%;
  padding: 48px 0 0 0;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container .header-content #site-logo {
    width: 85% !important;
  }
}
.body-fr #masthead .new-header .header-container .header-content #site-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.body-fr #masthead .new-header .header-container .header-content #site-logo a img {
  width: 213px;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container .header-content #site-logo a img {
    width: 130px;
  }
}
.body-fr #masthead .new-header .header-container .header-content #site-logo a p {
  margin-top: 14px;
  font-family: "Raleway";
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 8.16px;
  font-weight: bold;
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #site-logo a p {
  color: #161615;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container .header-content #site-logo a p {
    font-size: 10px;
    font-weight: bold;
  }
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right {
  flex-wrap: unset;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container .header-content #header-content-right {
    display: none;
  }
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header {
  background-color: transparent;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header .flag {
  color: #FFFFFF;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header .flag span {
  font-family: "Raleway", sans-serif;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right .click-to-buy {
  position: unset;
  flex: unset;
  z-index: -1;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right .click-to-buy .btn-red {
  border-bottom: 5px solid #AD0023;
  font-family: "Raleway";
  font-size: 14px;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul {
  display: flex;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-fb-header a {
  color: #FFFFFF;
  background-color: inherit;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-fb-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-fb-header a:before {
  content: url("../images/2023/home-header/picto-fb.svg");
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-fb-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-fb-header a:before {
  content: url("../images/2023/home-header/picto-fb-black.svg");
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-insta-header {
  margin-left: 4%;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-insta-header a {
  color: #FFFFFF;
  background-color: inherit;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-insta-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-insta-header a:before {
  content: url("../images/2023/home-header/picto-ig.svg");
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-insta-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-insta-header a:before {
  content: url("../images/2023/home-header/picto-ig-black.svg");
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-youtube-header {
  margin-left: 4%;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-youtube-header a {
  color: #FFFFFF;
  background-color: inherit;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-youtube-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-youtube-header a:before {
  content: url("../images/2023/home-header/picto-ytb.svg");
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-youtube-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #header-content-right #site-rs-header ul .rs-youtube-header a:before {
  content: url("../images/2023/home-header/picto-ytb-black.svg");
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header {
  position: unset;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #flag-active {
  font-family: "Raleway";
  font-weight: bold;
  font-size: 16px;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #flag-active:after {
  border: none;
  content: "";
  mask-image: url("../images/2023/home-header/arrow-flags.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/2023/home-header/arrow-flags.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #FFFFFF;
  display: inline-block;
  width: 6px;
  height: 5px;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  mask-size: contain;
}
.page-id-845 .body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #flag-active:after {
  background-color: #161615;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #flag-active .active_lang {
  font-family: "Raleway", sans-serif;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags {
  background-color: #FCF5EB;
  top: 220%;
  left: -120%;
  box-shadow: 0 0 0 1600px rgba(0, 0, 0, 0.65); /* dark around it */
  z-index: 100000;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .close-icon {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20.5px;
  height: 20.5px;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .close-icon:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .close-icon:before {
  content: url("../images/2023/home-header/cross-close.svg");
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .close-icon:before {
  color: 130%;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .close-icon:before {
  font-size: "after";
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .selected-lang:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .selected-lang:before {
  content: url("../images/2023/home-header/selected-lang.svg");
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .selected-lang:before {
  color: 130%;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .selected-lang:before {
  font-size: "before";
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .selected-lang:before {
  width: 6px;
  height: 5px;
  display: inline-block;
  position: relative;
  top: -3px;
  left: -8px;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .flag {
  font-weight: bold;
  font-size: 19px;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .flag span {
  color: #161515;
  font-family: siredicon !important;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .flag span:before {
  font-size: 100%;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag #list-flags .flag span .title-lang {
  font-family: "Raleway", sans-serif !important;
}
.body-fr #masthead .new-header .header-container .header-content #header-content-right #site-flags-header #flag .title-lang {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #161515;
}
.body-fr #masthead .new-header .header-container #header-bottom {
  background-color: #FCF5EB;
  z-index: 10000;
  top: 0;
  min-height: 100%;
  height: 100%;
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon {
  position: absolute;
  top: 50px;
  left: 50px;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #toggle-icon {
    top: 30px;
    left: 30px;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .img-icon {
  width: 20.5px;
  height: 20.5px;
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .img-icon:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .img-icon:before {
  content: url("../images/2023/home-header/cross-close.svg");
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .img-icon:before {
  color: 130%;
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .img-icon:before {
  font-size: "after";
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .img-icon:after {
  transition: 0.6s opacity ease;
  opacity: 1;
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .img-icon:active:after {
  opacity: 0;
}
.body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .text-icon {
  color: #161615;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #toggle-icon-content .text-icon {
    display: none;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation {
  justify-content: space-around;
  min-height: 90%;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation {
    min-height: 100% !important;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #site-logo img {
  width: 213px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #site-logo p {
  margin-top: 14px;
  font-family: "Raleway";
  color: #AD0023;
  text-transform: uppercase;
  letter-spacing: 8.16px;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation #site-logo p {
    font-size: 10px;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal {
  margin-top: 0 !important;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal li a {
  color: #161515 !important;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal li a:after {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal li a:after {
  content: "\e92a";
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal li a:after {
  color: #AD0023;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal li a:after {
  font-size: 70%;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal li a:after {
  transition: 0.3s all ease-in;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto 0;
  height: auto;
  right: 0em;
  opacity: 0;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation #menu-menu-principal li a:hover:after {
  right: -2em;
  opacity: 1;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full {
    flex-wrap: wrap;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .click-to-buy {
  width: 180px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .click-to-buy .btn-buy-full {
  font-family: "Raleway";
  font-weight: bold;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  color: #161515;
  font-size: 19px;
  padding-bottom: 4px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header {
  position: unset;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header {
    flex-basis: 100%;
    margin-top: 34px;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag .flag-active-mobile-clicked:after {
  transform: rotate(180deg);
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #flag-active-mobile {
  font-family: "Raleway";
  font-weight: bold;
  font-size: 19px;
  color: #161615;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #flag-active-mobile:after {
  border: none;
  content: "";
  mask-image: url("../images/2023/home-header/arrow-flags.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../images/2023/home-header/arrow-flags.svg");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  background-color: #161615;
  display: inline-block;
  width: 10px;
  height: 12px;
  margin-left: 8px;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  mask-size: contain;
}
.page-id-845 .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #flag-active-mobile:after {
  background-color: #161615;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #flag-active-mobile .active_lang {
  font-family: "Raleway", sans-serif;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile {
  display: none;
  background-color: #FCF5EB;
  top: calc(50vh - 117px);
  left: calc(50vw - 144.5px);
  position: absolute;
  box-shadow: 0 0 0 1600px rgba(0, 0, 0, 0.65); /* dark around it */
  padding: 70px 80px 50px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang {
  margin: 0;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .siredicon {
  font-size: 20px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .siredicon .title-lang {
  margin-left: 8px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .close-icon-mobile {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20.5px;
  height: 20.5px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .close-icon-mobile:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .close-icon-mobile:before {
  content: url("../images/2023/home-header/cross-close.svg");
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .close-icon-mobile:before {
  color: 130%;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .close-icon-mobile:before {
  font-size: "after";
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang {
    margin: 0 !important;
    height: 60px;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang:before {
  content: url("../images/2023/home-header/selected-lang.svg");
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang:before {
  color: 130%;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang:before {
  font-size: "before";
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang:before {
  width: 6px;
  height: 5px;
  display: inline-block;
  position: relative;
  top: -3px;
  left: -8px;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .selected-lang a {
    font-size: 20px !important;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .flag {
  font-weight: bold;
  font-size: 19px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .flag {
    margin: 0 !important;
    height: 60px;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .flag span {
  color: #161515;
  font-family: siredicon !important;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .flag span:before {
  font-size: 100%;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .flag span .title-lang {
  font-family: "Raleway", sans-serif !important;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag #list-flags-mobile .flag a {
    font-size: 20px !important;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full #site-flags-header #flag .title-lang {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #161515;
  margin-left: 8px;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header {
    z-index: -1;
  }
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-fb-header {
  margin: 0;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-fb-header a {
  color: #FFFFFF;
  background-color: inherit;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-fb-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-fb-header a:before {
  content: url("../images/2023/home-header/picto-fb-red.svg");
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-fb-header a:after {
  content: "";
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-insta-header {
  margin: 0;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-insta-header a {
  color: #FFFFFF;
  background-color: inherit;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-insta-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-insta-header a:before {
  content: url("../images/2023/home-header/picto-ig-red.svg");
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-insta-header a:after {
  content: "";
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-youtube-header {
  margin: 0;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-youtube-header a {
  color: #FFFFFF;
  background-color: inherit;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-youtube-header a:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-youtube-header a:before {
  content: url("../images/2023/home-header/picto-ytb-red.svg");
}
.body-fr #masthead .new-header .header-container #header-bottom #site-navigation .header-content-full .site-rs-header .rs-youtube-header a:after {
  content: "";
}

/** MODIFICATIONS DEWEY 2023 **/
.body-fr {
  /** TEMPLATES PRODUITS **/
  /** HEADER PAGE SINGLE **/
}
.body-fr #primary-front #block-master-visuel {
  width: 100%;
  vertical-align: top;
}
.body-fr #primary-front #block-master-visuel .fier-ecossais {
  position: absolute;
  width: 331px;
  left: calc(50% - 165.5px);
  top: calc(50% - 168.5px);
}
@media only screen and (max-width: 768px) {
  .body-fr #primary-front #block-master-visuel .fier-ecossais {
    width: 200px;
    top: 30% !important;
    right: 8%;
    left: unset;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #primary-front #block-master-visuel .image-master-visuel {
    display: none;
  }
}
.body-fr #primary-front #block-master-visuel .image-master-visuel-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .body-fr #primary-front #block-master-visuel .image-master-visuel-mobile {
    display: inline-block;
    height: 100vh;
    object-fit: cover;
    object-position: 30% 100%;
  }
}
.body-fr .origine .container-header {
  width: 100%;
  position: relative;
}
.body-fr .origine .container-header:after {
  content: "";
  height: 100%;
  background-image: url("../images/2023/home/border-origine-sir.svg");
  z-index: 1000;
  /*background-size: cover;
  position: relative;
  display: block;*/
  position: absolute;
  left: 0;
  right: 0;
  /*bottom: 0;
  top: 0;*/
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-header:after {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    bottom: 20px;
    left: -13px;
  }
}
.body-fr .origine .container-header .background-origine {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-header .background-origine {
    height: 150vh;
    object-fit: cover;
  }
}
.body-fr .origine .container-header .container-text {
  position: absolute;
  top: 30%;
  left: calc(50% - 261px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-header .container-text {
    left: 0;
  }
}
.body-fr .origine .container-header .container-text .upper-title p {
  font-family: "gotham_book";
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-header .container-text .upper-title p {
    font-size: 16px;
  }
}
.body-fr .origine .container-header .container-text .upper-title .blason {
  width: 60px;
  display: block;
  margin: auto;
}
.body-fr .origine .container-header .container-text h2 {
  color: #FFFFFF;
  font-family: "Raleway";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 64px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-header .container-text h2 {
    font-size: 40px !important;
  }
}
.body-fr .origine .container-header .container-text p {
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  font-size: 18px;
  text-align: center;
  margin-top: 34px;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-header .container-text p {
    font-size: 23px;
    line-height: 1.8;
    margin: 18px 64px;
  }
}
.body-fr .origine .container-header .container-text .btn-filled {
  z-index: 10000;
  margin-top: 24px;
  background-color: #FFF;
  padding: 28px 50px;
  text-transform: uppercase;
  font-family: "Raleway";
  letter-spacing: 8.16px;
  font-weight: bold;
  font-size: 15px;
  border: 3px solid #F99300;
}
.body-fr .origine .container-card {
  margin-top: -205px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-card {
    margin-top: -140px;
  }
}
.body-fr .origine .container-card .card {
  width: 45%;
  background-color: #AD0023;
  margin-left: 54px;
  position: relative;
  z-index: 80;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-card .card {
    width: 95%;
    display: block;
    margin: auto;
  }
}
.body-fr .origine .container-card .card p {
  font-family: "Playfair Display";
  font-style: italic;
  color: #FFFFFF;
  font-size: 49px;
  padding: 10%;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-card .card p {
    font-size: 30px;
  }
}
.body-fr .origine .container-card .image-glass {
  display: flex;
  padding-left: 54px;
  margin-top: 32px;
  justify-content: space-between;
  background-color: #FCF5EB;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-card .image-glass {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    display: inline-block;
    margin: auto;
    overflow: hidden;
  }
}
.body-fr .origine .container-card .image-glass img:first-child {
  width: 35%;
  top: unset;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-card .image-glass img:first-child {
    width: 95% !important;
    top: unset !important;
    height: auto;
    margin: auto;
    display: block;
    margin-top: 20px;
  }
}
.body-fr .origine .container-card .image-glass img:last-child {
  position: absolute;
  top: 200px;
  width: 85%;
  z-index: 2;
  right: -70px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .body-fr .origine .container-card .image-glass img:last-child {
    position: unset;
    width: 95%;
    display: block;
    margin: 100px 0 0 -29px;
    transform: scale(1.6);
    overflow: hidden;
  }
}
.body-fr #savoir-faire {
  background-color: #FCF5EB;
  padding: 70px 0 0;
}
.body-fr #savoir-faire .bkg-savoir-faire-sir {
  background-image: url("../images/2023/home/PERSONNAGE-SEUL.svg");
  background-repeat: no-repeat;
  background-position-x: -100px;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir {
    background-repeat: no-repeat;
    background-position-x: -100px !important;
    background-size: 60% !important;
    padding-top: 30px;
    background-position-y: -2% !important;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .upper-title p {
  font-family: "gotham_book";
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir .upper-title p {
    font-size: 16px;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .upper-title .blason {
  width: 60px;
  display: block;
  margin: auto;
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .gamme-title h2 {
  text-align: center;
  font-family: "Raleway";
  color: #161615;
  font-size: 74px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir .gamme-title h2 {
    font-size: 40px !important;
    margin: 0 65px;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .gamme-title h2:before {
  content: url("../images/2023/home/ecossais-sf.svg");
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 0;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content {
    flex-direction: column;
    width: 95%;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-gauche {
  background: #AD0023;
  padding: 54px;
  margin-right: 24px;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-gauche {
    margin-right: 0;
    padding: 34px;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-gauche p {
  font-family: "Playfair Display";
  font-size: 44px;
  line-height: 1.4;
  font-style: italic;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-gauche p {
    font-size: 34px;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-droite {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-droite {
    margin-top: 36px;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-droite p {
  font-family: "Playfair Display";
  font-size: 23px;
  text-align: center;
  line-height: 1.8;
  margin: 5% auto;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-droite p {
    font-size: 28px;
  }
}
.body-fr #savoir-faire .bkg-savoir-faire-sir .savoir-faire-content .section-droite .btn-filled {
  background-color: #FFF;
  padding: 28px 50px;
  text-transform: uppercase;
  font-family: "Raleway";
  letter-spacing: 8.16px;
  font-weight: bold;
  font-size: 15px;
  border: 3px solid #F99300;
}
.body-fr #cocktails-degustation {
  background-image: url("../images/2023/home/background-cocktails.png");
  height: 120vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .body-fr #cocktails-degustation {
    margin-top: -50px;
  }
}
.body-fr #cocktails-degustation .upper-title {
  color: #FFFFFF;
}
.body-fr #cocktails-degustation .upper-title p {
  font-family: "gotham_book";
}
@media only screen and (max-width: 768px) {
  .body-fr #cocktails-degustation .upper-title p {
    font-size: 16px;
  }
}
.body-fr #cocktails-degustation .upper-title .blason {
  width: 60px;
  display: block;
  margin: auto;
}
.body-fr #cocktails-degustation .gamme-title h2 {
  text-align: center;
  font-family: "Raleway";
  color: #FFFFFF;
  font-size: 74px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .body-fr #cocktails-degustation .gamme-title h2 {
    font-size: 40px !important;
    margin-top: 42px;
  }
}
.body-fr #cocktails-degustation .gamme-title h2:before {
  content: url("../images/2023/home/ecossais-sf.svg");
}
.body-fr #cocktails-degustation .cocktails-degustation-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.body-fr #cocktails-degustation .cocktails-degustation-content p {
  font-family: "Playfair Display";
  font-size: 23px;
  text-align: center;
  line-height: 1.8;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .body-fr #cocktails-degustation .cocktails-degustation-content p {
    margin: 24px;
  }
}
.body-fr #cocktails-degustation .cocktails-degustation-content .btn-filled {
  background-color: #FFFFFF;
  padding: 28px 50px;
  text-transform: uppercase;
  font-family: "Raleway";
  letter-spacing: 8.16px;
  font-weight: bold;
  font-size: 15px;
  border: 3px solid #F99300;
}
.body-fr #plus-loin {
  width: 90%;
  height: 450px;
  background-image: url("../images/2023/home/background-aller-plus-loin.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .body-fr #plus-loin {
    background-image: unset;
    background-color: #AD0023;
    width: 100%;
    height: auto;
    padding: 50px 0;
  }
}
.body-fr #plus-loin h2 {
  text-align: center;
  font-family: "Raleway";
  color: #FFFFFF;
  font-size: 74px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .body-fr #plus-loin h2 {
    font-size: 40px !important;
    padding: 0 35px;
  }
}
.body-fr #plus-loin p {
  font-family: "Playfair Display";
  font-size: 23px;
  text-align: center;
  line-height: 1.8;
  color: #FFFFFF;
  width: 42%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .body-fr #plus-loin p {
    padding: 24px 10px;
    width: 63%;
  }
}
.body-fr #plus-loin .btn-outline {
  background-color: transparent;
  padding: 28px 50px;
  text-transform: uppercase;
  font-family: "Raleway";
  letter-spacing: 8.16px;
  font-weight: bold;
  font-size: 15px;
  border: 3px solid #F99300;
  color: #FFFFFF;
}
.body-fr #immersion {
  /*	background-image: url('../images/2023/home/background-immersion.png');
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  position: relative;*/
}
.body-fr #immersion .container-header {
  width: 100%;
  position: relative;
}
.body-fr #immersion .container-header:after {
  content: "";
  height: 100%;
  background-image: url("../images/2023/home/lines-immersion.svg");
  z-index: 1000;
  background-size: cover;
  position: relative;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header:after {
    background-position: 65% 0%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header .background-immersion {
    height: 150vh;
    object-fit: cover;
    object-position: 65% 0%;
  }
}
.body-fr #immersion .container-header #immersion-ecosse {
  /*display: flex;
  justify-content: space-around;
  width: 90%;*/
  position: absolute;
  top: 30%;
  display: flex;
  justify-content: center;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header #immersion-ecosse {
    flex-direction: column;
    top: 20% !important;
    padding-left: 0;
  }
}
.body-fr #immersion .container-header #immersion-ecosse img {
  width: 400px;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header #immersion-ecosse img {
    display: none;
  }
}
.body-fr #immersion .container-header #immersion-ecosse-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  padding-left: 10%;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header #immersion-ecosse-content {
    width: 90% !important;
    display: flex !important;
    margin: auto;
    padding-left: 0 !important;
    align-items: center;
  }
}
.body-fr #immersion .container-header #immersion-ecosse-content .upper-title #subtitle-immersion {
  color: #FFFFFF;
  font-family: "gotham_book";
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header #immersion-ecosse-content .upper-title #subtitle-immersion {
    font-size: 16px;
  }
}
.body-fr #immersion .container-header #immersion-ecosse-content .upper-title .blason {
  width: 60px;
  display: block;
  margin: auto;
}
.body-fr #immersion .container-header #immersion-ecosse-content .gamme-title h2 {
  text-align: center;
  font-family: "Raleway";
  color: #FFFFFF;
  font-size: 74px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header #immersion-ecosse-content .gamme-title h2 {
    font-size: 40px !important;
    margin: 0 65px;
  }
}
.body-fr #immersion .container-header #immersion-ecosse-content p {
  font-family: "Playfair Display";
  font-size: 23px;
  text-align: center;
  line-height: 1.8;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-header #immersion-ecosse-content p {
    margin-top: 36px;
  }
}
.body-fr #immersion .container-header #immersion-ecosse-content .btn-filled {
  z-index: 10000;
  margin-top: 24px;
  background-color: #FFF;
  padding: 28px 50px;
  text-transform: uppercase;
  font-family: "Raleway";
  letter-spacing: 8.16px;
  font-weight: bold;
  font-size: 15px;
  border: 3px solid #F99300;
}
.body-fr #immersion .container-card {
  transform: translateY(-10%);
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-card {
    margin-top: 0;
    transform: translateY(-13%);
    z-index: 1000;
    position: relative;
  }
}
.body-fr #immersion .container-card .image-glass {
  display: flex;
  padding: 0 5%;
  margin-top: 32px;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-card .image-glass {
    flex-direction: column;
    padding: 0;
    margin-top: 20px;
  }
}
.body-fr #immersion .container-card .image-glass img:last-child {
  width: 35%;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-card .image-glass img:last-child {
    width: 95%;
    height: auto;
    margin: 20px auto 0;
  }
}
.body-fr #immersion .container-card .image-glass img:first-child {
  position: relative;
  top: -160px;
  width: 60%;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-card .image-glass img:first-child {
    width: 95%;
    top: unset;
    margin: auto;
  }
}
.body-fr #immersion .container-card blockquote {
  right: 0px;
  position: relative;
  margin-right: 0;
  display: block;
}
.body-fr #immersion .container-card blockquote .blockquote-immersion {
  background: #AD0023;
  padding: 5%;
  width: 45%;
  position: relative;
  z-index: 100;
  margin: 0 5% 5% auto;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-card blockquote .blockquote-immersion {
    width: 85%;
    margin: auto;
    display: block;
    top: unset;
    right: unset;
  }
}
.body-fr #immersion .container-card blockquote .blockquote-immersion p {
  font-family: "Playfair Display";
  font-size: 44px;
  line-height: 1.4;
  font-style: italic;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .body-fr #immersion .container-card blockquote .blockquote-immersion p {
    font-size: 30px;
  }
}
.body-fr #site-footer-legals-navigation ul {
  flex-wrap: wrap;
}
.body-fr .stop-scroll {
  overflow: hidden;
}
.body-fr #modal-contenance {
  display: none;
  position: fixed;
  z-index: 100000;
  width: 60%;
  top: 10%;
  left: calc(50vw - 450px);
}
@media only screen and (max-width: 768px) {
  .body-fr #modal-contenance {
    left: 10px;
    width: 95%;
    height: 85%;
    overflow: scroll;
  }
}
.body-fr #modal-contenance .bg-modal {
  background-color: #FCF5EB;
  padding: 40px 80px;
}
@media only screen and (max-width: 768px) {
  .body-fr #modal-contenance .bg-modal {
    padding: 40px 60px;
  }
}
.body-fr #modal-contenance .bg-modal #close-icon {
  width: 20.5px;
  height: 20.5px;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.body-fr #modal-contenance .bg-modal #close-icon:before {
  speak: none;
  font-family: "siredicon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body-fr #modal-contenance .bg-modal #close-icon:before {
  content: url("../images/2023/home-header/cross-close.svg");
}
.body-fr #modal-contenance .bg-modal #close-icon:before {
  color: 130%;
}
.body-fr #modal-contenance .bg-modal #close-icon:before {
  font-size: "after";
}
.body-fr #modal-contenance .bg-modal #close-icon:after {
  transition: 0.6s opacity ease;
  opacity: 1;
}
.body-fr #modal-contenance .bg-modal #close-icon:active:after {
  opacity: 0;
}
.body-fr #modal-contenance .bg-modal h2 {
  display: block;
  font-family: "Raleway";
  font-weight: 400;
  color: #000;
  font-size: 44px;
  text-align: center;
  margin-bottom: 24px;
}
.body-fr #modal-contenance .bg-modal:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.body-fr #modal-contenance .bg-modal .tabcontent {
  display: none;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.8;
}
.body-fr #modal-contenance .bg-modal .tabcontent:first-child {
  display: block;
}
.body-fr #modal-contenance .bg-modal .container-titles-tabs-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .body-fr #modal-contenance .bg-modal .container-titles-tabs-mobile {
    display: inline-block;
  }
}
.body-fr #modal-contenance .bg-modal .container-titles-tabs-mobile h3 {
  font-size: 15px;
  text-align: center;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .body-fr #modal-contenance .bg-modal .container-titles-tabs-mobile h3 {
    line-height: 1.8;
  }
}
.body-fr #modal-contenance .bg-modal .container-titles-tabs-mobile p {
  font-family: "Playfair Display";
  font-size: 32px;
  line-height: 1.8;
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .body-fr #modal-contenance .bg-modal .container-titles-tabs-mobile p {
    font-size: 23px;
  }
}
.body-fr #modal-contenance .bg-modal .container-titles-tabs {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .body-fr #modal-contenance .bg-modal .container-titles-tabs {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #modal-contenance .bg-modal .content-tabs {
    display: none;
  }
}
.body-fr #modal-contenance .bg-modal .tablink {
  font-family: "Raleway";
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 8.16px;
  opacity: 0.2;
  cursor: pointer;
}
.body-fr #modal-contenance .bg-modal .tablink:after {
  content: "";
  display: block;
  width: 82%;
  margin-top: 16px;
  opacity: 0.2;
}
.body-fr #modal-contenance .bg-modal .tablink.active {
  opacity: 1;
}
.body-fr #modal-contenance .bg-modal .tablink.active:after {
  opacity: 1;
}
.body-fr .listing-menu .litrage-degre {
  margin-right: 20%;
}
.body-fr .listing-menu .litrage-degre span {
  margin-top: 24px;
  display: block;
  font-family: "Raleway";
  font-weight: bold;
  letter-spacing: 8.16px;
}
.body-fr .listing-menu li {
  opacity: 0.2;
}
.body-fr .listing-menu li:hover {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .desc_degustation {
    padding: 10% 5%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .desc_degustation h2 {
    font-size: 44px !important;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .desc_degustation p {
    font-size: 23px;
    line-height: 1.8 !important;
    padding: 2% 3%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .desc_degustation ul {
    width: auto;
  }
}
.body-fr .degustuation_single_produit .desc_degustation ul .btn-outline {
  width: 250px;
  line-height: 1.8;
}
.body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation {
  display: none;
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 15% 0;
  }
}
.body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation:first-child {
  display: block;
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation:first-child {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation h3 {
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation .img_degustation {
    margin-top: 32px;
    display: block;
    width: 80%;
    position: unset;
    transform: unset;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation .img_degustation img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation .title_degustation {
    width: 80%;
    margin: auto;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation .title_degustation p {
    font-size: 23Px;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .degustuation_single_produit .content-modes-de-degust .content_degustation .title_degustation h3 {
    width: 50%;
  }
}
.body-fr .contenance_single_produit .title-contenance {
  display: none;
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .title-contenance {
    font-family: "Raleway";
    font-size: 44px !important;
    color: #161515;
    font-weight: normal;
    text-align: center;
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu {
    flex-direction: column;
    align-items: center;
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .container-img {
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
.body-fr .contenance_single_produit .menu-menu .container-img #image {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .container-img #image {
    height: 440px;
  }
}
.body-fr .contenance_single_produit .menu-menu .container-btn-buy {
  display: none;
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .container-btn-buy {
    display: block;
  }
}
.body-fr .contenance_single_produit .menu-menu .container-btn-buy a {
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Raleway";
  font-weight: bold;
  letter-spacing: 8.16px;
}
.body-fr .contenance_single_produit .menu-menu .container-btn-buy a.link-orange:before {
  bottom: -12px;
}
.body-fr .contenance_single_produit .menu-menu .container-btn-buy a.link-orange:after {
  bottom: -12px;
}
.body-fr .contenance_single_produit .menu-menu .listing-menu {
  border-top: unset;
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 44px 0;
  }
}
.body-fr .contenance_single_produit .menu-menu .listing-menu h2 {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu h2 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu li {
    transform: unset;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu li:before {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu li .link-orange {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu li .menu-item {
    font-size: 36px;
    width: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu li .litrage-degre {
    margin-right: unset;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .contenance_single_produit .menu-menu .listing-menu li .litrage-degre span {
    font-size: 8px;
    letter-spacing: 6.16px;
  }
}
.body-fr #savoir-faire-single {
  width: 90%;
  margin: 60px auto;
  display: block;
}
.body-fr #savoir-faire-single .sides-sf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 32px auto 0;
  border: 2px solid #AD0023;
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire-single .sides-sf {
    display: flex;
    flex-direction: column-reverse;
    padding: 40px;
  }
}
.body-fr #savoir-faire-single .sides-sf-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.body-fr #savoir-faire-single .sides-sf-text p {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  text-align: center;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire-single .sides-sf-text p {
    margin-bottom: 24px;
  }
}
.body-fr #savoir-faire-single .sides-sf-text .btn-outline {
  background-color: transparent;
  padding: 28px 50px;
  text-transform: uppercase;
  font-family: "Raleway";
  letter-spacing: 8.16px;
  font-weight: bold;
  font-size: 15px;
  border: 3px solid #F99300;
  color: #161515;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire-single .sides-sf-title {
    margin-bottom: 32px;
  }
}
.body-fr #savoir-faire-single .sides-sf-title .gamme-title .upper-title img {
  width: 60px;
  display: block;
  margin: auto;
}
.body-fr #savoir-faire-single .sides-sf-title .gamme-title .upper-title #subtitle-savoir-faire-single {
  font-size: 13px;
}
.body-fr #savoir-faire-single .sides-sf-title .gamme-title h2 {
  font-family: "Raleway";
  color: #161515;
  font-weight: 400;
  text-align: center;
  font-size: 74px;
}
@media only screen and (max-width: 768px) {
  .body-fr #savoir-faire-single .sides-sf-title .gamme-title h2 {
    font-size: 44px !important;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit {
    height: 100vh !important;
  }
}
.body-fr .header_single_produit .content-header-desktop {
  display: flex;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-desktop {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-desktop .image_single_produit {
    width: 110px !important;
    top: 22% !important;
    left: 3% !important;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-desktop .content_header {
    top: 30% !important;
  }
}
.body-fr .header_single_produit .content-header-desktop .content_header .title_single_produit span {
  text-transform: uppercase;
}
@media only screen and (max-width: 1220px) {
  .body-fr .header_single_produit .content-header-desktop .content_header .title_single_produit span {
    font-size: 35px !important;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-desktop .content_header .title_single_produit span {
    font-size: 31px !important;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    top: -30px;
  }
}
.body-fr .header_single_produit .content-header-desktop .content_header .award_list ul li {
  width: 85px;
}
.body-fr .header_single_produit .content-header-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-mobile {
    display: flex;
    height: 100%;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-mobile .image_single_produit {
    width: 110px !important;
    top: 22% !important;
    left: 3% !important;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-mobile .content_header {
    top: 15% !important;
  }
}
.body-fr .header_single_produit .content-header-mobile .content_header .title_single_produit h1 {
  font-family: "harley_brush";
  font-size: 125px !important;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-mobile .content_header .title_single_produit span {
    font-size: 31px !important;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    top: -30px;
  }
}
.body-fr .header_single_produit .content-header-mobile .content-medals {
  width: 100%;
  margin-top: 130px;
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-mobile .content-medals {
    margin-top: 170px;
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-mobile .content-medals .award_list {
    margin: 5% 0 10%;
  }
}
.body-fr .header_single_produit .content-header-mobile .content-medals .award_list ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.body-fr .header_single_produit .content-header-mobile .content-medals .award_list ul li {
  width: 22%;
  margin-right: unset;
}
.body-fr .header_single_produit .content-header-mobile .content-medals a {
  font-size: 15px;
  font-family: "Raleway";
  text-transform: uppercase;
  letter-spacing: 8.16px;
  font-weight: bold;
  margin-left: 10%;
}
@media only screen and (max-width: 768px) {
  .body-fr .header_single_produit .content-header-mobile .content-medals a {
    position: absolute;
    bottom: 15px;
  }
}
.body-fr .header_single_produit .content-header-mobile .content-medals a:before {
  bottom: -12px;
}
.body-fr .header_single_produit .content-header-mobile .content-medals a:after {
  bottom: -12px;
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit {
    height: auto;
    background-size: 70%;
    background-position: -82% 250%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .desc_single_produit {
    width: 95%;
    left: unset;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .desc_single_produit p {
    font-size: 23px;
    line-height: 1.8;
    padding: 2% 7%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes {
    background-image: url("../images/2023/home/PERSONNAGE-SEUL.svg");
    width: 100%;
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: -627% 5% !important;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes ul {
    flex-direction: column;
    align-items: center;
    padding: 10% 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes ul li {
    width: 100%;
    margin: 0 0 56px 0;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes ul li span {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes ul li span .bouche:before {
    width: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes ul li span .nez:before {
    width: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes ul li span .finition:before {
    width: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .description_single_produit .positiveNotes ul li p {
    font-family: "Playfair Display";
    font-size: 23Px;
    line-height: 1.8;
    width: 50%;
    display: block;
    margin: 16px auto;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .boutielle-image {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail {
    width: 100%;
    margin-left: unset;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail h2 {
    font-size: 44Px !important;
    text-align: center;
    margin-bottom: 24px;
    margin-top: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail .list-item .cocktails {
    flex-direction: column;
    margin-bottom: 42px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail .list-item .cocktails .title-cocktail {
    margin-left: unset;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail .list-item .cocktails .title-cocktail .cocktail-title {
    line-height: 1.4;
    text-align: center;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail .list-item .cocktails .title-cocktail .link-orange {
    font-size: 15px;
    letter-spacing: 6.16px;
    text-transform: uppercase;
    font-family: "Raleway";
    font-weight: 700;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail .list-item .cocktails .title-cocktail .link-orange:before {
    bottom: -12px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .body-fr .cocktail_single_produit .content-cocktail-single .list-cocktail .list-item .cocktails .title-cocktail .link-orange:after {
    bottom: -12px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .cocktail_single_produit .ctn-cocktail {
    margin: 5% 10%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr .cocktail_single_produit .ctn-cocktail a {
    height: auto;
    display: inline-block;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit {
    width: 100%;
    margin-top: 86px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content {
    width: 100%;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-smoky {
    background-position: right;
    width: 100%;
    height: 475px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-smoky h3 {
    font-size: 110px;
    left: calc(70% - 260px);
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-smoky img {
    width: 140px;
    left: calc(28% - 85px);
    top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-smoky .disabled {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-finest {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-finest img {
    left: calc(70% - 85px);
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-finest .disabled {
    left: unset;
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-finest h3 {
    font-size: 110px;
    bottom: 200px;
    color: #DC274C;
    left: calc(65% - 245px);
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-title {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-title h2 {
    font-size: 44px !important;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-title #subtitle-gamme {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .body-fr #gamme_whisky_single_produit .gamme-content .gamme-title #subtitle-gamme-2 {
    font-size: 13px;
  }
}
.body-fr div[attr=Smoky] .listing-menu li {
  opacity: 1;
}

.single-produit_whisky #site-flags-header {
  display: none;
}

#gamme-whisky {
  margin-top: 9px;
}
.page-id-845 #gamme-whisky {
  margin: 2em 0 4em 0 !important;
}
#gamme-whisky .upper-title {
  display: none;
}
.home #gamme-whisky .upper-title {
  display: block;
}
.home #gamme-whisky .upper-title p {
  font-family: "gotham_book";
  font-size: 16px;
}
.home #gamme-whisky .upper-title .blason {
  width: 60px;
  display: block;
  margin: auto;
}
#gamme-whisky .gamme-title h2 {
  text-align: center;
  font-family: "Raleway";
  color: #161615;
  font-size: 74px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-title h2 {
    font-size: 40px !important;
    margin-top: 24px;
  }
}
#gamme-whisky .gamme-content {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 32px auto 0;
  gap: 34px;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content {
    flex-direction: column;
    gap: 0;
  }
}
#gamme-whisky .gamme-content .gamme-finest {
  background-image: url("../images/2023/home/bg-finest.png");
  background-size: cover;
  width: 600px;
  height: 580px;
  position: relative;
}
#gamme-whisky .gamme-content .gamme-finest:hover img {
  left: 64%;
  transition: 0.5S ease-in-out;
}
#gamme-whisky .gamme-content .gamme-finest:hover h3 {
  font-size: 98px;
  transition: 0.5s ease-in-out;
  bottom: 180px;
}
#gamme-whisky .gamme-content .gamme-finest:hover .disabled {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
#gamme-whisky .gamme-content .gamme-finest img {
  width: 170px;
  position: relative;
  left: calc(50% - 85px);
  top: 50px;
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-finest img {
    left: calc(70% - 85px);
  }
}
#gamme-whisky .gamme-content .gamme-finest h3 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 172px;
  position: absolute;
  bottom: 140px;
  color: #DC274C;
  left: calc(50% - 245px);
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-finest h3 {
    font-size: 102px;
    bottom: 210px;
    left: calc(75% - 245px);
  }
}
#gamme-whisky .gamme-content .gamme-finest .disabled {
  display: unset;
  bottom: 50px;
  position: relative;
  left: 10%;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-finest .disabled {
    display: none;
  }
}
#gamme-whisky .gamme-content .gamme-finest .disabled p {
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  font-size: 27px;
  line-height: 1.8;
}
#gamme-whisky .gamme-content .gamme-finest .disabled a {
  font-family: "Raleway";
  font-size: 17px;
  letter-spacing: 8.16px;
  color: #FFFFFF;
  text-transform: uppercase;
  border-bottom: 3px solid #F99300;
  padding-bottom: 4px;
}
#gamme-whisky .gamme-content .gamme-smoky {
  background-image: url("../images/2023/home/bg-smoky.png");
  background-size: cover;
  width: 600px;
  height: 580px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-smoky {
    background-position: right;
  }
}
#gamme-whisky .gamme-content .gamme-smoky:hover img {
  left: 10%;
  transition: 0.5S ease-in-out;
}
#gamme-whisky .gamme-content .gamme-smoky:hover h3 {
  font-size: 98px;
  transition: 0.5s ease-in-out;
  left: calc(80% - 245px);
}
#gamme-whisky .gamme-content .gamme-smoky:hover .disabled {
  display: inline-block;
  opacity: 1;
  transition: 0.5s ease-in-out;
  position: absolute;
  left: 40% !important;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-smoky:hover .disabled p {
    display: none;
  }
}
#gamme-whisky .gamme-content .gamme-smoky img {
  width: 170px;
  position: relative;
  left: calc(50% - 85px);
  top: 50px;
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-smoky img {
    left: calc(30% - 85px);
  }
}
#gamme-whisky .gamme-content .gamme-smoky h3 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 172px;
  position: absolute;
  top: 120px;
  color: #3C4592;
  left: calc(50% - 260px);
  transition: 0.5S ease-in-out;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-smoky h3 {
    font-size: 102px;
    top: 150px;
    left: calc(75% - 245px);
  }
}
#gamme-whisky .gamme-content .gamme-smoky .disabled {
  display: unset;
  top: 200px;
  position: relative;
  left: 10%;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 768px) {
  #gamme-whisky .gamme-content .gamme-smoky .disabled {
    display: none;
    left: unset;
  }
}
#gamme-whisky .gamme-content .gamme-smoky .disabled p {
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  font-size: 27px;
  line-height: 1.8;
}
#gamme-whisky .gamme-content .gamme-smoky .disabled a {
  font-family: "Raleway";
  font-size: 17px;
  letter-spacing: 8.16px;
  color: #FFFFFF;
  text-transform: uppercase;
  border-bottom: 3px solid #F99300;
  padding-bottom: 4px;
}

/*# sourceMappingURL=style_sired_2023.css.map */
