@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200..900;1,300..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/isidora-soft-alt");
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Isidora";
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 48px;
}

h4 {
  font-size: 42px;
}

h5 {
  font-size: 36px;
}

h6 {
  font-size: 32px;
}

p {
  margin: 0;
  font-size: 12px;
  font-family: "MontSerrat";
}

a {
  text-decoration: none;
}

@media screen and (max-width: 1120px) {
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 42px;
  }
  h4 {
    font-size: 36px;
  }
  h5 {
    font-size: 32px;
  }
  h6 {
    font-size: 24px;
  }
}
.skeleton {
  background-image: linear-gradient(to right, #e9e9e9, #f8f8f8, #e9e9e9, #f8f8f8);
  background-size: 300%;
  animation: pulse-skeleton 1s infinite running;
}

@keyframes pulse-skeleton {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes openMenu {
  0% {
    -webkit-mask-position: right 0;
            mask-position: right 0;
  }
  0% {
    -webkit-mask-position: left 0;
            mask-position: left 0;
  }
}
header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  color: white;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0px 0px 11px 0px rgba(92, 92, 92, 0.1882352941);
}
header svg {
  width: 200px;
  max-width: 100%;
}
header .marancheville-brown {
  fill: #7d5a48;
}
header .navbar {
  background-color: white;
  z-index: 5;
  margin: 0 auto;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  position: fixed;
  display: flex;
  background-color: white;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease-in-out;
  font-family: "MontSerrat";
  box-shadow: 0px 0px 11px 0px rgba(92, 92, 92, 0.45);
}
header .navbar.hide-menu {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
header .navbar .open-menu {
  color: #7d5a48;
  display: flex;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}
header .navbar .shop-btn {
  display: flex;
  gap: 10px;
  color: #7d5a48;
  cursor: pointer;
  align-items: center;
}
header .navbar .shop-btn .cart-number {
  color: white;
  width: 30px;
  height: 30px;
  background-color: #7d5a48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar .shop-btn i {
  color: #7d5a48;
}

.menu-container {
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  display: flex;
  transition: all 0.5s ease-in-out;
  background: rgb(255, 255, 255);
  opacity: 0;
}
.menu-container.show {
  left: 0;
  opacity: 1;
}
.menu-container .menu-left-part {
  width: 50%;
  display: flex;
  box-sizing: border-box;
  align-items: flex-start;
  flex-direction: column;
  gap: 50px;
  min-width: 500px;
}
.menu-container .menu-left-part .top-menu {
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}
.menu-container .menu-left-part .top-menu .close-menu {
  color: #ad8f80;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  font-family: "MontSerrat";
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.menu-container .menu-left-part .top-menu .close-menu i {
  font-size: 16px;
}
.menu-container .menu-left-part .top-menu .close-menu:hover {
  color: #5e4536;
}
.menu-container .menu-left-part .inner-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 100px 0 100px;
  box-sizing: border-box;
  overflow: auto;
}
.menu-container .menu-left-part .inner-menu hr {
  width: 100%;
  margin: 20px 0;
  border: none;
  border-top: 1px solid #e9e9e9;
}
.menu-container .menu-left-part .inner-menu ul {
  padding: 0;
  margin: 0;
  flex-direction: column;
  display: flex;
  gap: 15px;
}
.menu-container .menu-left-part .inner-menu ul li {
  list-style: none;
}
.menu-container .menu-left-part .inner-menu .gl-ln {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.menu-container .menu-left-part .inner-menu .menu-item a,
.menu-container .menu-left-part .inner-menu .gl-ln a,
.menu-container .menu-left-part .inner-menu .shop a,
.menu-container .menu-left-part .inner-menu .language a {
  color: #ad8f80;
  font-weight: 500;
  font-size: 20px;
  font-family: "MontSerrat";
}
.menu-container .menu-left-part .inner-menu .menu-item a:hover,
.menu-container .menu-left-part .inner-menu .gl-ln a:hover,
.menu-container .menu-left-part .inner-menu .shop a:hover,
.menu-container .menu-left-part .inner-menu .language a:hover {
  color: #5e4536;
}
.menu-container .menu-left-part .inner-menu .menu-item a {
  text-transform: uppercase;
}
.menu-container .menu-left-part .inner-menu .shop a {
  color: #b32c19;
}
.menu-container .menu-left-part .inner-menu .shop a:hover {
  color: #ff3805;
}
.menu-container .menu-left-part .inner-menu .language a {
  font-size: 16px;
}
.menu-container .menu-right-part {
  flex: 1;
}

@media screen and (max-width: 1120px) {
  header .navbar {
    flex-direction: row-reverse;
  }
  header .navbar .shop-btn {
    display: none;
  }
  .menu-container .menu-left-part .inner-menu {
    padding: 20px 50px;
  }
}
footer {
  padding-bottom: 30px;
}
footer .upper-part {
  background-color: #7d5a48;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
footer .upper-part svg {
  width: 300px;
  max-width: 100%;
}
footer .upper-part .marancheville-white {
  fill: white;
}
footer .lower-part {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .lower-part .container-lower-part {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
}
footer .lower-part .container-lower-part .inner-container-menus {
  padding: 60px 20px;
  display: flex;
  gap: 150px;
}
footer .lower-part .container-lower-part .inner-container-menus .container-menu-footer ul {
  padding: 0;
  margin: 0;
}
footer .lower-part .container-lower-part .inner-container-menus .container-menu-footer ul li {
  list-style: none;
  margin-bottom: 20px;
}
footer .lower-part .container-lower-part .inner-container-menus .container-menu-footer ul li a {
  color: #272727;
  font-size: 16px;
  font-family: "MontSerrat";
}
footer .lower-part .container-lower-part .inner-container-menus .container-menu-footer.uppercase a {
  text-transform: uppercase;
}
footer .lower-part .container-lower-part .info-contact {
  display: flex;
  flex-direction: column;
  color: #272727;
}
footer .lower-part .container-lower-part .info-contact p {
  margin-bottom: 20px;
}
footer .lower-part .container-lower-part .info-contact a {
  color: #272727;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  font-family: "MontSerrat";
  font-size: 12px;
}
footer .lower-part .container-lower-part .info-contact a span {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #808080;
  border-radius: 50%;
}
footer .lower-part .container-lower-part .info-contact a span i {
  color: white;
}
footer .lower-part .footer-footer {
  color: #7d5a48;
  font-family: "MontSerrat";
}
footer .lower-part .footer-footer .container-menu-footer-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .lower-part .footer-footer .container-menu-footer-footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
footer .lower-part .footer-footer .container-menu-footer-footer ul li {
  margin-bottom: 10px;
}
footer .lower-part .footer-footer .container-menu-footer-footer ul li:first-child {
  list-style: none;
}
footer .lower-part .footer-footer .container-menu-footer-footer ul li a {
  color: #7d5a48;
  font-size: 12px;
  font-family: "MontSerrat";
  font-weight: 500;
}
footer .lower-part .footer-footer .copyrights {
  font-size: 10px;
}

@media screen and (max-width: 1120px) {
  footer .upper-part svg {
    width: 250px;
  }
  footer .lower-part .container-lower-part .inner-container-menus {
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px 20px 20px;
  }
  footer .lower-part .footer-footer .container-menu-footer-footer ul {
    flex-direction: column;
    gap: 10px;
  }
  footer .lower-part .footer-footer .container-menu-footer-footer ul li {
    list-style: none;
  }
  footer .lower-part .footer-footer .copyrights {
    padding: 0 20px;
    margin-top: 10px;
    text-align: center;
  }
}
.infinite-bandeau {
  width: 100%;
  padding: 10px 0;
  background: #5e4536;
  margin-top: -4px;
  overflow: hidden;
  white-space: nowrap;
}
.infinite-bandeau .infinite-bandeau-inner {
  display: flex;
  gap: 1rem;
  animation: scroll 20s linear infinite;
  width: -moz-max-content;
  width: max-content;
}
.infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau {
  color: white;
  font-weight: 500;
  font-size: 24px;
  padding: 10px 0;
  width: -moz-max-content;
  width: max-content;
}
.infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau span {
  color: #3d2c22;
  font-size: 34px;
}
.infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau a {
  padding: 1rem 2.5rem;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: "Isidora";
  color: #c9ac9a;
  transition: all 0.3s ease-in-out;
}
.infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau a:hover {
  color: white;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

img {
  width: 100%;
  height: auto;
}

@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}
section {
  width: 100%;
}

.container-section {
  max-width: 1120px;
  display: flex;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

section#video-bandeau #background-video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section#produits {
  padding: 60px 0;
}
section#produits .button-outlined {
  border: 1px solid #7d5a48;
  padding: 15px 30px;
  color: #7d5a48;
  margin: 20px auto 40px auto;
}
section#produits .container-section {
  display: flex;
  flex-direction: column;
}
section#produits .container-section p {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.4rem;
}
section#produits .bloc-produits {
  display: flex;
  gap: 30px;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
section#produits .bloc-produits .card-produit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 500px;
  width: 350px;
  max-width: 100%;
  overflow: hidden;
}
section#produits .bloc-produits .card-produit .wrapper-image-produit {
  flex: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
section#produits .bloc-produits .card-produit .wrapper-image-produit a {
  display: block;
}
section#produits .bloc-produits .card-produit .image-produit {
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
section#produits .bloc-produits .card-produit .image-produit:hover {
  transform: scale(1.1);
}
section#produits .bloc-produits .card-produit h4 {
  font-size: 32px;
  color: #7d5a48;
  margin-top: 20px;
  font-weight: 600;
}
section#produits .bloc-produits .card-produit p {
  width: 100%;
  margin: -5px auto 0 auto;
  font-size: 12px;
  font-weight: 400;
}
section#produits h2 {
  text-align: center;
  font-weight: 200;
  font-size: 48px;
}
section#produits h4,
section#produits h2 {
  text-transform: uppercase;
}

section#illustration {
  height: 600px;
  display: flex;
}
section#illustration .container-section {
  justify-content: flex-end;
  flex-direction: column;
  flex: 1;
  padding: 50px 0;
}
section#illustration img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
  transform: rotateZ(-4deg);
}
section#illustration .subtitle {
  color: #ad8f80;
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  margin: 10px 0 -5px 0;
}
section#illustration .title {
  color: #ad8f80;
  font-weight: 500;
}
section#illustration .text {
  color: white;
  width: 400px;
  line-height: 1.1rem;
  font-weight: 200;
  font-size: 13px;
}

section#bouteilles .container-section {
  gap: 100px;
  align-items: center;
  padding: 100px 0;
}
section#bouteilles .left-column {
  width: 60%;
  display: flex;
  flex-direction: column;
}
section#bouteilles .left-column .container-img-products {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  width: 65%;
}
section#bouteilles .left-column .container-img-products img {
  transition: all 0.3s ease-in-out;
}
section#bouteilles .left-column .container-img-products img:hover {
  scale: 1.1;
}
section#bouteilles .left-column h4 {
  margin-top: 10px;
  font-weight: 300;
}
section#bouteilles .right-column {
  width: 40%;
  display: flex;
  flex-direction: column;
}
section#bouteilles .right-column p {
  margin-top: 30px;
  line-height: 1.3rem;
  font-size: 13px;
}
section#bouteilles .right-column img {
  width: 70%;
}

@media screen and (max-width: 1120px) {
  .infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau {
    padding: 0;
  }
  .infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau a,
  .infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau span {
    font-size: 16px;
  }
  .infinite-bandeau .infinite-bandeau-inner .content-infinite-bandeau a {
    padding: 0.5rem 2.5rem;
  }
  section#produits {
    padding: 20px;
  }
  section#produits .container-section p {
    text-align: justify;
    width: 100%;
  }
  section#produits h2 {
    font-size: 42px;
  }
  section#produits .bloc-produits {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 50px;
  }
  section#produits .bloc-produits .card-produit p {
    text-align: center;
  }
  section#illustration .container-section {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }
  section#illustration .container-section .text {
    width: 100%;
  }
  section#illustration .container-section .btn-add-cart {
    margin: 20px auto;
  }
  section#bouteilles .container-section {
    padding: 20px 20px 60px 20px;
    flex-direction: column;
    box-sizing: border-box;
  }
  section#bouteilles .container-section .left-column,
  section#bouteilles .container-section .right-column {
    width: 100%;
    align-items: center;
  }
  section#bouteilles .container-section .left-column .container-img-products {
    width: 100%;
  }
  section#bouteilles .container-section .left-column h4 {
    font-size: 31px;
  }
}
.btn-add-cart {
  padding: 15px 40px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  margin-top: 20px;
}
.btn-add-cart.brown {
  border: 1px solid #7d5a48;
  color: #7d5a48;
  border-radius: 25px;
}
.btn-add-cart.brown:hover {
  background-color: #7d5a48;
  color: white;
}
.btn-add-cart.white {
  border: 1px solid white;
  color: white;
  border-radius: 25px;
}
.btn-add-cart.white:hover {
  background-color: white;
  color: #7d5a48;
}

section#entete-produit {
  padding: 150px 0 0 0;
}
section#entete-produit .n2-ss-section-main-content {
  padding: 0 !important;
  justify-content: flex-end !important;
}
section#entete-produit.big-slider .container-galery {
  flex: 1;
}
section#entete-produit .container-section {
  gap: 100px;
  justify-content: center;
}
section#entete-produit .container-galery {
  width: 50%;
}
section#entete-produit .container-galery .n2-ss-slider-controls {
  top: 50px;
}
section#entete-produit .container-galery .container-slider {
  width: 100%;
  margin: 0 auto;
}
section#entete-produit .container-galery ul.slick-dots {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
section#entete-produit .container-galery ul.slick-dots li {
  list-style: none;
  background-color: #9c9c9c;
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
}
section#entete-produit .container-galery ul.slick-dots li.slick-active {
  background-color: #7d5a48;
}
section#entete-produit .container-galery ul.slick-dots li button {
  display: none;
}
section#entete-produit .info-galery {
  width: 30%;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  padding-top: 20px;
}
section#entete-produit .info-galery h1 {
  font-weight: 200;
  font-size: 100px;
}
section#entete-produit .info-galery h1.smaller-title {
  font-size: 56px;
}
section#entete-produit .info-galery h3 {
  font-weight: 500;
  color: #7d5a48;
  font-size: 32px;
  margin-bottom: 10px;
}
section#entete-produit .info-galery p.description {
  color: #7d5a48;
  border-top: 1px dashed #ad8f80;
  border-bottom: 1px dashed #ad8f80;
  padding: 15px 0;
  font-size: 14px;
}
section#entete-produit .info-galery p.quantite {
  color: #7d5a48;
  padding: 15px 0;
  font-size: 12px;
  border-bottom: 1px solid #ad8f80;
}
section#entete-produit .info-galery .prix {
  font-size: 32px;
  padding: 25px 0px 20px 0;
  font-weight: 400;
}
section#entete-produit .info-galery .prix span {
  display: inline-block;
  padding-left: 5px;
  font-weight: 400;
  color: #7d5a48;
  font-size: 22px;
}
section#entete-produit .container-lisere {
  width: 100%;
}

section#infos-produit {
  display: flex;
  position: relative;
}
section#infos-produit .background-image {
  flex: 1;
}
section#infos-produit .degrade {
  width: 100px;
  position: absolute;
  left: -100px;
  top: 0;
  height: 100%;
}
section#infos-produit .details-produit {
  width: 50%;
  min-width: 700px;
  padding: 100px 50px;
  box-sizing: border-box;
  color: white;
  position: relative;
}
section#infos-produit .details-produit .container-details-produit {
  width: 600px;
}
section#infos-produit .details-produit h4 {
  font-weight: 400;
  font-size: 50px;
}
section#infos-produit .details-produit p.sous-titre {
  font-weight: 200;
  font-size: 16px;
  margin-top: -5px;
}
section#infos-produit .details-produit p.description {
  margin: 20px 0;
  line-height: 1.4rem;
  font-weight: 300;
  font-size: 13px;
}
section#infos-produit .details-produit .container-sens {
  padding: 35px;
  border: 1px solid #7d5a48;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 300;
  margin-bottom: 10px;
}
section#infos-produit .details-produit .container-sens .sens > span {
  font-size: 16px;
  font-weight: 300;
}
section#infos-produit .details-produit .container-sens .sens span.dot {
  display: inline-block;
  padding: 0 5px;
  color: #7d5a48;
  font-weight: 800;
}

@media screen and (max-width: 1120px) {
  section#entete-produit .container-section {
    flex-direction: column;
    gap: 20px;
  }
  section#entete-produit .container-section h1 {
    font-size: 48px;
    text-align: center;
  }
  section#entete-produit .container-section h3 {
    text-align: center;
  }
  section#entete-produit .container-section .container-galery,
  section#entete-produit .container-section .info-galery {
    width: 100%;
    box-sizing: border-box;
  }
  section#entete-produit .container-section .info-galery {
    padding: 0px 20px 20px 20px;
  }
  section#entete-produit .container-section .btn-add-cart {
    display: flex;
    align-self: center;
  }
  section#entete-produit .container-section .prix,
  section#entete-produit .container-section .quantite {
    text-align: center;
  }
  section#infos-produit .details-produit {
    width: 100%;
    min-width: inherit;
    padding: 50px 20px;
  }
  section#infos-produit .details-produit .container-details-produit {
    width: 100%;
  }
  section#infos-produit .details-produit .container-details-produit h4 {
    font-size: 36px;
  }
  section#infos-produit .details-produit .container-details-produit .btn-add-cart {
    display: flex;
    justify-self: center;
  }
}
section#entete-commande {
  padding: 150px 0 0 0;
}
section#entete-commande .container-section {
  display: flex;
  flex-direction: column;
}
section#entete-commande h4 {
  font-size: 24px;
  color: #7d5a48;
  font-weight: 300;
  text-align: center;
  width: 100%;
}
section#entete-commande .no-payment-required {
  text-align: center;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
section#entete-commande .shippings-fees {
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto;
}
section#entete-commande .shippings-fees .left-column,
section#entete-commande .shippings-fees .right-column,
section#entete-commande .shippings-fees .header-left-column,
section#entete-commande .shippings-fees .header-right-column {
  width: 50%;
  box-sizing: border-box;
  border: 1px solid #f2eeec;
  padding: 10px;
  text-align: center;
  font-family: "MontSerrat";
  font-size: 12px;
  color: #ad8f80;
}
section#entete-commande .shippings-fees .header-left-column,
section#entete-commande .shippings-fees .header-right-column {
  font-weight: 600;
  color: #ad8f80;
}
section#entete-commande .products-tab {
  font-family: "MontSerrat";
  color: #4d4d4d;
}
section#entete-commande .products-tab .header-products-tab {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-bottom: 1px solid #7d5a48;
  padding-bottom: 10px;
  color: #7d5a48;
  padding-right: 10px;
}
section#entete-commande .products-tab .product-line,
section#entete-commande .products-tab .products-total {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f2eeec;
  padding: 30px 0;
  align-items: center;
}
section#entete-commande .products-tab .product-line .product-name,
section#entete-commande .products-tab .product-line .product-total-name,
section#entete-commande .products-tab .products-total .product-name,
section#entete-commande .products-tab .products-total .product-total-name {
  flex: 2;
  font-size: 22px;
}
section#entete-commande .products-tab .product-line .product-quantity,
section#entete-commande .products-tab .product-line .product-total-quantity,
section#entete-commande .products-tab .products-total .product-quantity,
section#entete-commande .products-tab .products-total .product-total-quantity {
  flex: 1;
  box-sizing: border-box;
}
section#entete-commande .products-tab .product-line .product-price,
section#entete-commande .products-tab .product-line .product-total-price,
section#entete-commande .products-tab .products-total .product-price,
section#entete-commande .products-tab .products-total .product-total-price {
  flex: 1;
  text-align: right;
  font-size: 22px;
  box-sizing: border-box;
}
section#entete-commande .products-tab .product-line .product-price span.euro,
section#entete-commande .products-tab .product-line .product-total-price span.euro,
section#entete-commande .products-tab .products-total .product-price span.euro,
section#entete-commande .products-tab .products-total .product-total-price span.euro {
  font-size: 12px;
  color: #7d5a48;
}
section#entete-commande .products-tab .product-line .product-total-name,
section#entete-commande .products-tab .products-total .product-total-name {
  color: #7d5a48;
  font-weight: 600;
}
section#entete-commande .products-tab .product-line .product-total-quantity .empty-space,
section#entete-commande .products-tab .products-total .product-total-quantity .empty-space {
  width: 30px;
}
section#entete-commande .products-tab .product-line .product-quantity,
section#entete-commande .products-tab .product-line .product-total-quantity,
section#entete-commande .products-tab .products-total .product-quantity,
section#entete-commande .products-tab .products-total .product-total-quantity {
  display: flex;
  gap: 5px;
}
section#entete-commande .products-tab .product-line .product-quantity input,
section#entete-commande .products-tab .product-line .product-total-quantity input,
section#entete-commande .products-tab .products-total .product-quantity input,
section#entete-commande .products-tab .products-total .product-total-quantity input {
  border: 1px solid #f2eeec;
  border-radius: 10px;
  color: #4d4d4d;
  text-align: center;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  width: 50px;
  padding: 5px;
}
section#entete-commande .products-tab .product-line .product-quantity input::-webkit-inner-spin-button, section#entete-commande .products-tab .product-line .product-quantity input::-webkit-outer-spin-button,
section#entete-commande .products-tab .product-line .product-total-quantity input::-webkit-inner-spin-button,
section#entete-commande .products-tab .product-line .product-total-quantity input::-webkit-outer-spin-button,
section#entete-commande .products-tab .products-total .product-quantity input::-webkit-inner-spin-button,
section#entete-commande .products-tab .products-total .product-quantity input::-webkit-outer-spin-button,
section#entete-commande .products-tab .products-total .product-total-quantity input::-webkit-inner-spin-button,
section#entete-commande .products-tab .products-total .product-total-quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
section#entete-commande .products-tab .product-line .product-quantity button,
section#entete-commande .products-tab .product-line .product-total-quantity button,
section#entete-commande .products-tab .products-total .product-quantity button,
section#entete-commande .products-tab .products-total .product-total-quantity button {
  background-color: #f2eeec;
  text-align: center;
  color: #7d5a48;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  font-size: 24px;
  font-family: "MontSerrat";
  width: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
section#entete-commande .products-tab .product-line .product-quantity button:hover,
section#entete-commande .products-tab .product-line .product-total-quantity button:hover,
section#entete-commande .products-tab .products-total .product-quantity button:hover,
section#entete-commande .products-tab .products-total .product-total-quantity button:hover {
  background-color: #7d5a48;
  color: #f2eeec;
}
section#entete-commande .products-tab .products-total {
  border-top: 1px solid #7d5a48;
  border-bottom: 1px solid #7d5a48;
}
section#entete-commande .products-tab .product-line:last-child {
  border: none;
}
section#entete-commande .form-commande {
  background-color: #f2eeec;
  padding: 40px;
  margin-bottom: 120px;
  position: relative;
}
section#entete-commande .form-commande p {
  font-size: 16px;
  margin: 0px auto 40px auto;
  color: #4d4d4d;
  text-align: center;
}
section#entete-commande .form-commande #commande {
  display: flex;
  width: 100%;
  gap: 40px;
}
section#entete-commande .form-commande #commande .left-part {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
}
section#entete-commande .form-commande #commande input,
section#entete-commande .form-commande #commande textarea {
  padding: 15px 30px;
  border: none;
  border-radius: 20px;
  background-color: white;
  color: #ad8f80;
  box-sizing: border-box;
}
section#entete-commande .form-commande #commande input::-moz-placeholder, section#entete-commande .form-commande #commande textarea::-moz-placeholder {
  color: #ad8f80;
}
section#entete-commande .form-commande #commande input::placeholder,
section#entete-commande .form-commande #commande textarea::placeholder {
  color: #ad8f80;
}
section#entete-commande .form-commande #commande textarea {
  width: 100%;
  flex: 1;
  resize: vertical;
}
section#entete-commande .form-commande #commande .right-part {
  flex: 1;
}
section#entete-commande .form-commande #commande .right-part .loi {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 10px;
}
section#entete-commande .form-commande #commande .right-part .loi p {
  font-size: 10px;
  color: #ad8f80;
  text-align: left;
  margin: 0;
}
section#entete-commande .form-commande #commande button {
  position: absolute;
  right: 0;
  bottom: -100px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid #7d5a48;
  color: #7d5a48;
  cursor: pointer;
  font-family: "MontSerrat";
}
section#entete-commande .form-commande #commande button:hover {
  color: white;
  background-color: #7d5a48;
}
section#entete-commande .additionnal-information {
  margin: 40px auto;
  text-align: center;
  color: #7d5a48;
  font-size: 16px;
}

@media screen and (max-width: 1120px) {
  section#entete-commande {
    padding: 50px 20px;
  }
  section#entete-commande .products-tab .header-products-tab .product-header,
  section#entete-commande .products-tab .header-products-tab .quantity-header,
  section#entete-commande .products-tab .header-products-tab .price-header {
    display: none;
  }
  section#entete-commande .products-tab .product-line {
    flex-direction: column;
    gap: 20px;
  }
  section#entete-commande .products-total {
    flex-direction: column;
    gap: 20px;
  }
  section#entete-commande .form-commande #commande {
    flex-direction: column;
  }
  section#entete-commande .form-commande #commande button {
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
  }
}
.gl-ln p {
  font-weight: 300;
  line-height: 1.3rem;
  font-size: 13px;
}
.gl-ln .inner-container {
  display: flex;
  flex-direction: column;
  width: 400px;
  max-width: 100%;
  padding: 30px;
  border-radius: 10px;
}

#bloc-1,
#bloc-2,
#bloc-3,
#bloc-4,
#bloc-5 {
  min-height: 600px;
  box-sizing: border-box;
}

#bloc-1 {
  margin-top: 90px;
  color: white;
  display: flex;
  flex-direction: column;
  padding-bottom: 150px;
  position: relative;
}
#bloc-1 .container-section {
  display: flex;
  align-items: flex-end;
  height: 100%;
  flex: 1;
  padding: 0 30px;
}
#bloc-1 .container-section p {
  width: 400px;
  max-width: 100%;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 1.8rem;
  text-align: center;
}
#bloc-1 .infinite-bandeau {
  position: absolute;
  bottom: 0;
}

#bloc-2 {
  padding-top: 100px;
  box-sizing: border-box;
}
#bloc-2 .inner-container h3 {
  font-size: 36px;
  font-weight: 300;
  margin-top: 10px;
}
#bloc-2 .inner-container p.subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

#bloc-3 {
  color: white;
  box-sizing: border-box;
  padding-top: 100px;
  padding-bottom: 100px;
}
#bloc-3 .inner-container {
  margin: 0 auto;
}
#bloc-3 .inner-container h3 {
  font-size: 36px;
  font-weight: 300;
}
#bloc-3 .inner-container p {
  margin-top: 20px;
}

#bloc-4 {
  color: white;
  box-sizing: border-box;
  padding-top: 100px;
}
#bloc-4 .inner-container h3 {
  font-size: 36px;
  font-weight: 300;
}
#bloc-4 .inner-container p {
  margin-top: 20px;
}

#bloc-5 {
  color: #7d5a48;
  padding: 100px 0;
  display: flex;
}
#bloc-5 .container-section {
  display: flex;
  gap: 50px;
  flex: 1;
}
#bloc-5 .container-section .left-part,
#bloc-5 .container-section .right-part {
  flex: 1;
}
#bloc-5 .container-section h3 {
  font-size: 36px;
  font-weight: 300;
  margin-top: 20px;
}

@media screen and (max-width: 1120px) {
  #bloc-1 .container-section {
    padding: 0 20px;
    box-sizing: border-box;
  }
  #bloc-1 .container-section p {
    width: 100%;
  }
  #bloc-4 .container-section {
    background-color: rgba(0, 0, 0, 0.603);
  }
  #bloc-5 .container-section {
    padding: 0px 20px;
    flex-direction: column;
    box-sizing: border-box;
  }
  #bloc-5 .container-section .left-part,
  #bloc-5 .container-section .right-part {
    width: 100%;
  }
  #bloc-5 .container-section .left-part {
    height: 300px;
    flex: none;
  }
}
.annexe .container-section {
  flex-direction: column;
  padding: 150px 0px;
}
.annexe .container-section h1,
.annexe .container-section h3 {
  color: #7d5a48;
}
.annexe .container-section h1 {
  text-align: center;
  padding: 20px 40px;
  border: 1px solid #7d5a48;
  font-size: 36px;
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  text-transform: uppercase;
}
.annexe .container-section .container-content {
  padding: 20px 0;
}
.annexe .container-section .container-content h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 50px 0 10px 0;
}
.annexe .container-section .container-content p {
  line-height: 1.3rem;
}
.annexe .container-section .container-content ul {
  line-height: 1.3rem;
  font-family: "MontSerrat";
  font-size: 12px;
}

@media screen and (max-width: 1120px) {
  .annexe .container-section {
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .annexe .container-section h1 {
    font-size: 32px;
  }
}
body {
  margin: 0;
}
body.no-scroll {
  height: 100vh;
  overflow-y: hidden;
}

section {
  box-sizing: border-box;
}

@media screen and (max-width: 1120px) {
  #main {
    margin-top: 85px;
  }
  header svg {
    width: 180px;
  }
}/*# sourceMappingURL=main.css.map */