/* Fonts */
/* Paragraphes */
/*@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-Regular.ttf);
}

@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Inter;
  src: url(../fonts/Inter-Bold.ttf);
  font-weight: 700;
}

/* Titles */
/*@font-face {
  font-family: Montecarlo;
  src: url(../fonts/MonteCarlo-Regular.ttf);
}

/* Variables */
/* Colors */
/* Mixins */
/* Animations */
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1.4);
  }
}
/* General */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  width: 100%;
}
html body {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  box-sizing: border-box;
  position: relative;
  flex-direction: column;
  align-items: center;
  color: #F5F5F5;
  background-color: rgb(27, 27, 27);
  font-family: Inter;
  font-size: 1.6rem;
}
html body * {
  box-sizing: border-box;
  font-size: 1.6rem;
}
html body i {
  pointer-events: none;
}
html body ul {
  list-style: none;
  padding-left: 0;
}
html body ul li {
  list-style: none;
  padding-left: 0;
}
html body a {
  color: #070707;
  text-decoration: none;
}
html body strong {
  font-weight: 600 !important;
}
html body h1 {
  font-family: Montecarlo;
  font-size: 7rem;
  font-weight: 100;
  color: #F5F5F5;
}
html body h1 span {
  font-size: 3.5rem;
  display: block;
  font-weight: 600;
}
html body h2 {
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  color: #F5F5F5;
  margin-bottom: 5rem;
  text-transform: uppercase;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body h2 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
html body h3 {
  color: #F5F5F5;
  font-size: 2rem;
  font-weight: 600;
}
html body img {
  max-width: 100%;
}
html body header,
html body footer,
html body main {
  width: 100%;
}
html body .semibold {
  font-weight: 600;
}
html body .yellow {
  color: #F4E664;
}

html {
  overflow-y: hidden;
}
html body {
  overflow-x: hidden;
}
html body header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #070707;
  padding: 0 0 0 4rem;
  height: 6rem;
  position: fixed;
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0 8px 0;
  transition: top 0.3s;
  z-index: 5;
}
@media screen and (orientation: portrait) {
  html body header {
    padding: 0 2rem;
  }
}
html body header.invisible {
  top: -6rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body header.invisible {
    top: 0;
  }
}
html body header #burger-menu {
  display: none;
  cursor: pointer;
  height: 27px;
  width: 27px;
  margin: 0;
  overflow: visible;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (orientation: portrait) {
  html body header #burger-menu {
    display: block;
  }
}
html body header #burger-menu:hover {
  opacity: 0.7;
}
html body header #burger-menu span {
  background: #F5F5F5;
  display: block;
  height: 4px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
}
html body header #burger-menu span::before,
html body header #burger-menu span::after {
  background: #F5F5F5;
  display: block;
  height: 4px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
  content: "";
}
html body header #burger-menu span {
  right: 0px;
  top: 13px;
  width: 27px;
}
html body header #burger-menu span::before {
  left: 0px;
  top: -10px;
  width: 16px;
}
html body header #burger-menu span::after {
  left: 0px;
  top: 10px;
  width: 20px;
}
html body header #burger-menu.close span {
  transform: rotate(-45deg);
  top: 13px;
  width: 27px;
}
html body header #burger-menu.close span:before {
  top: 0px;
  transform: rotate(90deg);
  width: 27px;
}
html body header #burger-menu.close span:after {
  top: 0px;
  left: 0;
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}
html body header h4 {
  font-family: Montecarlo;
  font-weight: 100;
  font-size: 2.4rem;
}
@media screen and (orientation: landscape) and (max-width: 680px) {
  html body header h4 {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  html body header h4 {
    font-size: 2rem;
  }
}
html body header nav.for-computer {
  display: block;
  height: 100%;
}
html body header nav.for-computer ul {
  display: flex;
  height: 100%;
}
html body header nav.for-computer ul li {
  display: block;
  height: 100%;
}
html body header nav.for-computer ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  background-color: #070707;
  color: #F5F5F5;
  padding: 0 2rem;
  transition: color 0.2s, background-color 0.2s;
}
html body header nav.for-computer ul li a.yellow-link {
  background-color: #F4E664;
  color: #070707;
}
html body header nav.for-computer ul li a:hover {
  background-color: #000;
  color: #ddd;
}
@media screen and (orientation: portrait) {
  html body header nav.for-computer {
    display: none;
  }
}
html body header nav.for-mobile {
  display: none;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  padding-top: 20px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (orientation: portrait) {
  html body header nav.for-mobile {
    display: flex;
  }
}
html body header nav.for-mobile.overlay {
  visibility: visible;
  opacity: 1;
  padding-top: 100px;
  background-color: #070707;
}
html body header nav.for-mobile ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 50%;
  position: relative;
  top: -3rem;
}
html body header nav.for-mobile li {
  list-style: none;
}
html body header nav.for-mobile a {
  color: #fff;
  display: block;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: 0.3s;
}
html body header nav.for-mobile a:hover {
  opacity: 0.7;
}
html body header nav.for-mobile a.yellow-link {
  color: #F4E664;
}
html body main section:not(.simple-padding) {
  padding: 8rem 0;
}
html body main section:nth-child(1) {
  height: calc(100vh + 15rem);
  background-image: url(../images/la-marelle-des-saveurs.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(1) {
    height: calc(100vh + 7.5rem);
  }
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(1) {
    background-attachment: local;
  }
}
html body main section:nth-child(1) article {
  display: flex;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
html body main section:nth-child(1) article .gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75vh;
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 1;
}
html body main section:nth-child(1) article .gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15rem;
  background: linear-gradient(to top, rgb(27, 27, 27), rgba(27, 27, 27, 0));
  z-index: 1;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(1) article .gradient-bottom {
    height: 7.5rem;
  }
}
html body main section:nth-child(1) article nav {
  position: absolute;
  top: 6rem;
  z-index: 3;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(1) article nav {
    display: none;
  }
}
@media screen and (orientation: landscape) and (max-width: 680px) {
  html body main section:nth-child(1) article nav {
    display: none;
  }
}
@media screen and (max-width: 920px) {
  html body main section:nth-child(1) article nav {
    display: none;
  }
}
html body main section:nth-child(1) article nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(1) article nav ul {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(1) article nav ul {
    flex-wrap: wrap;
  }
}
html body main section:nth-child(1) article nav ul li {
  margin: 0 1rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(1) article nav ul li {
    margin: 1rem;
  }
}
html body main section:nth-child(1) article nav ul li a {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s, background-color 0.2s;
  padding: 0.75rem;
}
html body main section:nth-child(1) article nav ul li a:hover {
  color: #F4E664;
}
html body main section:nth-child(1) article nav ul li a.yellow-link {
  background-color: #F4E664;
  border: solid 1px transparent;
  color: #070707;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  font-family: Inter;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.6rem;
  transition: border 0.2s, color 0.2s, background-color 0.2s;
  cursor: pointer;
}
html body main section:nth-child(1) article nav ul li a.yellow-link:hover {
  background: transparent;
  border-color: transparent;
  color: #F4E664;
}
html body main section:nth-child(1) article .title-container {
  position: relative;
  z-index: 3;
  top: -7.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(1) article .title-container {
    top: -3.75rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(1) article .title-container {
    top: -0.75rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(1) article .title-container {
    padding: 0 1rem;
  }
}
html body main section:nth-child(1) article .title-container h1 {
  line-height: 7rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(1) article .title-container h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}
html body main section:nth-child(1) article .title-container h1 span {
  font-family: Inter;
  font-size: 2rem;
  font-weight: 600;
}
html body main section:nth-child(1) article .title-container h1 span strong {
  font-size: inherit;
}
html body main section:nth-child(1) article .title-container hr {
  display: block;
  height: 0.2rem;
  width: 50%;
  background-color: #F5F5F5;
  border: 0;
  outline: 0;
  margin-bottom: 3rem;
}
html body main section:nth-child(1) article .title-container p {
  line-height: 2.5rem;
}
html body main section:nth-child(1) article .title-container p strong a {
  color: white !important;
  text-decoration: none !important;
}
html body main section:nth-child(1) article .title-container a.btn-like {
  background-color: #F4E664;
  border: solid 1px #F4E664;
  color: #070707;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  font-family: Inter;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.6rem;
  transition: border 0.2s, color 0.2s, background-color 0.2s;
  cursor: pointer;
  margin-top: 3.5rem;
}
html body main section:nth-child(1) article .title-container a.btn-like:hover {
  background: transparent;
  border-color: #F4E664;
  color: #F4E664;
}
html body main section:nth-child(2) {
  background: linear-gradient(to bottom, rgb(27, 27, 27), #141414);
}
html body main section:nth-child(2) > h2 {
  margin-bottom: 1rem;
}
html body main section:nth-child(2) > p {
  display: block;
  margin: 0 auto 1rem auto;
  text-align: center;
  line-height: 2.2rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) > p {
    padding: 0 2rem;
  }
}
html body main section:nth-child(2) article {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 12rem);
  max-width: 1000px;
  flex-direction: row;
  margin: 10rem auto;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article {
    width: calc(100% - 10vw);
  }
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(2) article {
    align-items: center;
  }
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article {
    flex-direction: column-reverse;
  }
}
html body main section:nth-child(2) article:nth-child(2) {
  margin-top: 8rem;
}
html body main section:nth-child(2) article.reverse {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article.reverse {
    flex-direction: column-reverse;
  }
}
html body main section:nth-child(2) article.reverse div {
  margin-left: 0;
  margin-right: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article.reverse div {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
}
html body main section:nth-child(2) article.keywords {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article.keywords {
    width: calc(100% - 10vw);
  }
}
html body main section:nth-child(2) article.keywords ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
}
html body main section:nth-child(2) article.keywords ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem 1rem 0.5rem;
  border: dashed #F4E664 1px;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
}
html body main section:nth-child(2) article img {
  width: 35%;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article img {
    width: 100%;
    margin-top: 4rem;
  }
}
html body main section:nth-child(2) article h3 {
  color: #F4E664;
}
html body main section:nth-child(2) article div {
  flex: 1;
  margin-left: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article div {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
html body main section:nth-child(2) article div p {
  margin: 3rem 0 4rem;
  line-height: 2.2rem;
}
html body main section:nth-child(2) article div hr {
  display: block;
  height: 0.2rem;
  width: 60%;
  background-color: #F4E664;
  border: 0;
  outline: 0;
  margin: 0 auto;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(2) article div hr {
    width: 80%;
  }
}
html body main section:nth-child(2) > img {
  margin: 0 auto;
  display: block;
  width: calc(100% - 10rem);
  max-width: 15rem;
  opacity: 0.9;
}
html body main section:nth-child(3) {
  background-image: url(../images/le-menu.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(3) {
    background-attachment: local;
  }
}
html body main section:nth-child(3) .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}
html body main section:nth-child(3) h2,
html body main section:nth-child(3) article {
  position: relative;
  z-index: 2;
}
html body main section:nth-child(3) article {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 12rem);
  max-width: 1000px;
  background-color: #141414;
  border-radius: 2rem;
  margin: 8rem auto 4rem;
  padding: 5rem 4rem;
  max-width: 900px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(3) article {
    width: calc(100% - 10vw);
  }
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(3) article {
    width: calc(100% - 2rem);
    padding: 5rem 4rem;
  }
}
html body main section:nth-child(3) article h3 {
  text-align: center;
  color: #F4E664;
  margin-bottom: 5rem;
}
html body main section:nth-child(3) article ul {
  width: 60%;
  margin: 0 auto 5rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(3) article ul {
    width: 100%;
  }
}
html body main section:nth-child(3) article ul li {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(3) article ul li {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
html body main section:nth-child(3) article ul li .price {
  color: #F4E664;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(3) article ul li .price {
    margin-top: 1rem;
  }
}
html body main section:nth-child(3) article > p {
  text-align: center;
  width: 60%;
  margin: 0 auto;
  line-height: 2.2rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(3) article > p {
    width: 100%;
  }
}
html body main section:nth-child(3) article > p strong {
  margin-top: 0.5rem;
  display: block;
}
html body main section:nth-child(4) {
  background: linear-gradient(to top, rgb(27, 27, 27), #141414);
  padding-top: 5rem;
}
html body main section:nth-child(4) h3 {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(4) h3 {
    width: calc(100% - 10vw);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
html body main section:nth-child(4) h3 img {
  height: 2.8rem;
  margin-right: 0.8rem;
  vertical-align: middle;
  display: inline;
}
html body main section:nth-child(4) h3 span {
  vertical-align: middle;
  display: inline;
}
html body main section:nth-child(4) .slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 7rem 0;
}
html body main section:nth-child(4) .slider button {
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 4rem;
  opacity: 1;
}
html body main section:nth-child(4) .slider button img {
  pointer-events: none;
}
html body main section:nth-child(4) .slider button:hover {
  opacity: 0.8;
}
html body main section:nth-child(4) .slider button.slider-right img {
  transform: rotate(180deg);
}
html body main section:nth-child(4) .slider .slider-container {
  width: calc(90% - 12rem);
  margin: 0 4rem;
  max-width: 800px;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(4) .slider .slider-container {
    width: calc(100% - 18rem);
    margin: 0 3rem;
  }
}
html body main section:nth-child(4) .slider .slider-container ul {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  transform: translate(0);
  transition: transform 0.5s;
}
html body main section:nth-child(4) .slider .slider-container ul li {
  margin: 0 1rem;
  cursor: pointer;
}
html body main section:nth-child(4) .slider .slider-container ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 20rem;
  pointer-events: none;
}
html body main section:nth-child(5) {
  position: relative;
  padding-bottom: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(5) {
    padding-bottom: 4rem;
  }
}
html body main section:nth-child(5) .pattern {
  background: url(../images/les-bons-cadeaux.jpg);
  background-size: 600px !important;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  opacity: 0.25;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(5) .pattern {
    background-attachment: local;
  }
}
html body main section:nth-child(5) .gradient-top {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgb(27, 27, 27), rgba(27, 27, 27, 0));
  z-index: 2;
}
html body main section:nth-child(5) .gradient-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgb(27, 27, 27), rgba(27, 27, 27, 0));
  z-index: 2;
}
html body main section:nth-child(5) h2,
html body main section:nth-child(5) article {
  position: relative;
  z-index: 3;
}
html body main section:nth-child(5) article {
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 12rem);
  max-width: 1000px;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(5) article {
    width: calc(100% - 10vw);
  }
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(5) article {
    width: calc(100% - 10vw);
  }
}
html body main section:nth-child(5) article > h3 {
  color: #F57C64;
  margin-bottom: 1.5rem;
}
html body main section:nth-child(5) article > strong {
  display: block;
  margin-bottom: 3rem;
}
html body main section:nth-child(5) article > p {
  display: block;
  line-height: 2.2rem;
}
html body main section:nth-child(5) article ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6rem;
}
html body main section:nth-child(5) article ul li {
  text-align: center;
  background-color: #141414;
  padding: 2.5rem;
  width: calc(33.3333333333% - 2rem);
  margin: 1rem;
  border-radius: 2rem;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
html body main section:nth-child(5) article ul li h3 {
  color: #F57C64;
  margin-bottom: 3rem;
  line-height: 2.8rem;
}
html body main section:nth-child(5) article ul li h3 span {
  display: block;
  color: #F5F5F5;
}
html body main section:nth-child(5) article ul li p {
  margin-bottom: 1.5rem;
  display: block;
  line-height: 2.2rem;
}
html body main section:nth-child(5) article ul li p img {
  display: inline;
  height: 2rem;
  position: relative;
  top: 0.2rem;
  margin-right: 1rem;
}
html body main section:nth-child(5) article ul li p img.no-wine {
  opacity: 0.3;
}
html body main section:nth-child(5) article ul li p.price {
  margin-bottom: 3rem;
}
html body main section:nth-child(5) article ul li p.price strong {
  font-size: 1.8rem;
}
html body main section:nth-child(5) article ul li p i {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
html body main section:nth-child(5) article ul li p i.small-infos {
  margin-top: 0.8rem;
}
html body main section:nth-child(5) article ul li p i:not(.small-infos) {
  position: relative;
  top: -0.2rem;
}
html body main section:nth-child(5) article ul li a {
  background-color: #F57C64;
  border: solid 1px #F57C64;
  color: rgb(27, 27, 27);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  font-family: Inter;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.6rem;
  transition: border 0.2s, color 0.2s, background-color 0.2s;
  cursor: pointer;
  display: block;
  width: 100%;
}
html body main section:nth-child(5) article ul li a:hover {
  background: transparent;
  border-color: #F57C64;
  color: #F57C64;
}
html body main section:nth-child(6) {
  display: flex;
  min-height: 85vh;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(6) {
    height: -moz-max-content;
    height: max-content;
    flex-direction: column-reverse;
  }
}
html body main section:nth-child(6) > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 40%;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(6) > img {
    width: 100%;
    height: 40vh;
  }
}
html body main section:nth-child(6) > article {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem;
  width: 60%;
}
@media screen and (orientation: portrait) {
  html body main section:nth-child(6) > article {
    width: 100%;
    padding-bottom: 12rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(6) > article {
    padding: 8rem 0 4rem 0;
    width: calc(100% - 10vw);
    margin: 0 auto;
  }
}
html body main section:nth-child(6) > article p {
  line-height: 2.4rem;
}
html body main section:nth-child(6) > article .actions-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 4rem 0;
}
html body main section:nth-child(6) > article .actions-list button,
html body main section:nth-child(6) > article .actions-list a {
  display: block;
  background-color: #F4E664;
  border: solid 1px #F4E664;
  color: rgb(27, 27, 27);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  font-family: Inter;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.6rem;
  transition: border 0.2s, color 0.2s, background-color 0.2s;
  cursor: pointer;
  margin: 0.35rem;
}
html body main section:nth-child(6) > article .actions-list button:hover,
html body main section:nth-child(6) > article .actions-list a:hover {
  background: transparent;
  border-color: #F4E664;
  color: #F4E664;
}
html body main section:nth-child(6) > article .actions-list button i,
html body main section:nth-child(6) > article .actions-list a i {
  margin-right: 5px;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main section:nth-child(6) > article .actions-list button:nth-child(2),
  html body main section:nth-child(6) > article .actions-list a:nth-child(2) {
    font-size: 1.4rem;
  }
}
@media screen and (orientation: landscape) and (max-width: 680px) {
  html body main section:nth-child(6) > article .actions-list button:nth-child(2),
  html body main section:nth-child(6) > article .actions-list a:nth-child(2) {
    font-size: 1.4rem;
  }
}
html body main section.loader {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #070707;
  z-index: 6;
  transition: opacity 0.3s;
  opacity: 1;
}
html body main section.loader.invisible {
  opacity: 0;
}
html body main section.loader img {
  width: 15rem;
  animation: fade 6s ease-out;
}
html body main section.picture-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
html body main section.picture-popup button {
  position: absolute;
  width: 4rem;
  height: 4rem;
  background-color: #F4E664;
  border-radius: 9999px;
  border: 0;
  outline: 0;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  right: 5rem;
  top: 2.5rem;
  transition: background-color 0.2;
}
html body main section.picture-popup button:hover {
  background-color: #F4E664;
}
html body main section.picture-popup button img {
  width: 35%;
  pointer-events: none;
  filter: invert(0.8);
}
@media screen and (orientation: portrait) {
  html body main section.picture-popup button {
    width: 6rem;
    height: 6rem;
  }
}
html body main section.picture-popup > img {
  max-width: 20%;
  max-height: 25%;
  pointer-events: none;
  transition: max-width 0.3s, max-height 0.3s;
}
html body main section.picture-popup.opened {
  opacity: 1;
}
html body main section.picture-popup.opened > img {
  max-width: 60%;
  max-height: 75%;
}
html body main #to-top {
  position: fixed;
  opacity: 0;
  width: 2.5rem;
  height: 2.5rem;
  bottom: 7.5rem;
  right: 7.5rem;
  cursor: pointer;
  display: block;
  transition: all 0.2s;
  z-index: 4;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
html body main #to-top img {
  height: 100%;
}
html body main #to-top.visible {
  opacity: 1;
  width: 5.5rem;
  height: 5.5rem;
  bottom: 6rem;
  right: 6rem;
}
html body main #to-top.visible:hover {
  height: 5.2rem;
  width: 5.2rem;
  bottom: 6.15rem;
  right: 6.15rem;
  opacity: 0.9;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body main #to-top {
    bottom: 3.5rem;
    right: 3.5rem;
  }
  html body main #to-top.visible {
    bottom: 2rem;
    right: 2rem;
  }
  html body main #to-top.visible:hover {
    bottom: 2.15rem;
    right: 2.15rem;
  }
}
html body footer {
  background-color: #070707;
  color: #F5F5F5;
}
html body footer a {
  color: #F5F5F5;
}
html body footer section:nth-child(1) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 3.5rem;
}
html body footer section:nth-child(1) article {
  max-width: 25vw;
  margin: 0 3rem;
}
html body footer section:nth-child(1) article h3 {
  margin-bottom: 1rem;
}
html body footer section:nth-child(1) article p,
html body footer section:nth-child(1) article a {
  margin: 0.2rem 0;
}
html body footer section:nth-child(1) article a {
  transition: color 0.2s;
}
html body footer section:nth-child(1) article a img {
  vertical-align: middle;
  margin-right: 5px;
  display: inline-block;
  height: 1.6rem;
  position: relative;
  top: -0.2rem;
}
html body footer section:nth-child(1) article a:hover {
  color: #ddd;
}
@media screen and (orientation: portrait) {
  html body footer section:nth-child(1) {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  html body footer section:nth-child(1) article {
    width: 90%;
    max-width: 90%;
    text-align: center;
    margin: 2rem 0;
  }
}
html body footer section:nth-child(2) {
  padding-bottom: 3.5rem;
  padding-top: 3.5rem;
  text-align: center;
}
@media screen and (orientation: portrait) {
  html body footer section:nth-child(2) {
    padding-bottom: 5.5rem;
  }
}
html body footer section:nth-child(2) p {
  font-size: 1.4rem;
}
html body.stripe-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  position: relative;
}
html body.stripe-success .pattern {
  display: block;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/les-bons-cadeaux.jpg);
  background-size: 600px !important;
  opacity: 0.1;
}
html body.stripe-success main {
  position: relative;
  z-index: 2;
  background-color: rgb(27, 27, 27);
  width: 90vw;
  max-width: 700px;
  border: dashed 2px #F57C64;
  border-radius: 0.5rem;
  padding: 2rem 4rem;
}
@media screen and (orientation: portrait) and (max-width: 680px) {
  html body.stripe-success main {
    padding: 2rem 2rem;
  }
}
html body.stripe-success main h1 {
  font-family: Inter;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  color: #F5F5F5;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
html body.stripe-success main p {
  color: #ddd;
}
html body.stripe-success main a {
  background-color: #F57C64;
  border: solid 1px #F57C64;
  color: #070707;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
  font-family: Inter;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.6rem;
  transition: border 0.2s, color 0.2s, background-color 0.2s;
  cursor: pointer;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 2.5rem auto 0;
}
html body.stripe-success main a:hover {
  background: transparent;
  border-color: #F57C64;
  color: #F57C64;
}/*# sourceMappingURL=styles.css.map */