@font-face {
  font-family: "Microbrew";
  src: url("../fonts/Microbrew.ttf");
}
* {
  margin: 0;
  padding: 0;
  font-family: "brevia", sans-serif;
  box-sizing: border-box;
}

h1 {
  font-family: "Microbrew";
  color: #AB3310;
  font-size: 40px;
  margin: 20px 0;
}

h2 {
  font-family: "Microbrew";
  color: #000;
  font-size: 24px;
  margin: 10px 0;
}

p {
  font-size: 14px;
  padding: 10px;
}

img {
  width: 100%;
}

.mw-500 {
  max-width: 500px;
}

.mw-800 {
  max-width: 800px;
}

.mw-1000 {
  max-width: 1000px;
}

.mw-1200 {
  max-width: 1200px;
}

.txt-white {
  color: white;
}

.txt-primary {
  color: #AB3310;
}

.separator {
  max-width: 300px;
  margin: 40px auto;
}

.a-btn {
  color: #AB3310;
  border: 1px solid #AB3310;
  display: block;
  padding: 10px 25px;
  font-weight: bold;
  text-decoration: none;
  margin: 20px 0;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.2s cubic-bezier(0.86, -0.02, 0.21, 1);
  position: relative;
  overflow: hidden;
  transition: 1s;
  z-index: 1;
  cursor: pointer;
}
.a-btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -2;
}
.a-btn:before {
  content: "";
  position: absolute;
  background-color: #AB3310;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: 0.5s cubic-bezier(0.86, -0.02, 0.21, 1);
}
.a-btn .a-icon-link {
  transform: rotate(-45deg);
  margin-left: 10px;
  font-size: 0.8em;
  transition: 0.2s;
}
.a-btn:hover, .a-btn:focus, .a-btn:active, .a-btn:focus-visible, .a-btn:focus-within {
  color: #fff;
  border: 2px solid #fff;
}
.a-btn:hover:before, .a-btn:focus:before, .a-btn:active:before, .a-btn:focus-visible:before, .a-btn:focus-within:before {
  width: 100%;
}

.frenchtouch {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  top: -3px;
  z-index: 6;
}
.frenchtouch div {
  width: 33%;
  height: 6px;
}
.frenchtouch-blue {
  background-color: #0055A4;
}
.frenchtouch-white {
  background-color: #fff;
}
.frenchtouch-red {
  background-color: #EF4135;
}

body .header-menu {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 10;
}
body .header-menu .nav-link {
  color: #fff;
}
body .header-menu .dropdown-item:active, body .header-menu .dropdown-item:hover {
  color: white;
  background-color: #AB3310;
}
body .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #AB3310;
  height: 80vh;
  color: white;
  position: relative;
  background-attachment: fixed;
}
body .hero i {
  animation: arrowLoop 1.5s cubic-bezier(0.86, -0.02, 0.21, 1) 0s infinite;
}
body .hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5058823529);
  z-index: 5;
}
body .hero-content {
  position: relative;
  z-index: 6;
}
body .home-marques {
  gap: 20px 0;
  justify-content: center;
  margin-top: 30px;
}
body .home-marques a {
  display: block;
  position: relative;
  transition: 0.5s cubic-bezier(0.86, -0.02, 0.21, 1);
  cursor: pointer;
}
body .home-marques a:after {
  content: "";
  background-color: #E3BC63;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  transition: 0.2s cubic-bezier(0.86, -0.02, 0.21, 1);
}
body .home-marques a:hover {
  transform: scale(0.98);
}
body .home-marques a:hover:after {
  opacity: 0.2;
}
body .home-marques a .home-marque {
  display: block;
  border: 1px solid #E3BC63;
  background-color: #fff;
  max-width: 274px;
  margin: 0 auto;
}
body .floating-menu {
  transition: 0.2s ease-in-out;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 7;
}
body .sticky-menu {
  position: fixed;
  top: 0;
  background-color: #AB3310;
}
body footer {
  margin-top: 40px;
  padding: 40px 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.168627451);
}
body footer .container {
  align-items: center;
}
body footer .container .footer-logo {
  max-width: 200px;
  margin: 30px auto;
}
body footer .footer-menu ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
}
body footer .footer-menu ul li a {
  color: #AB3310;
  font-weight: bold;
  font-size: 12px;
}
body footer .footer-menu ul li a :hover {
  color: primary;
}
body .btn-lang {
  background: none;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  transition: 0.2s;
}
body .btn-lang:hover {
  background-color: #fff;
  color: #AB3310;
}
body .single-marque h2 {
  font-family: "brevia", sans-serif;
  color: #AB3310;
  font-weight: 900;
}
body .single-marque h3 {
  font-size: 18px;
}
body .single-marque .has-text-align-center {
  max-width: 500px;
  margin: 0 auto;
}
body .single-marque .marque-txt-right {
  border-left: 2px solid #AB3310;
  padding-left: 15px;
  max-width: 500px;
  height: -moz-fit-content;
  height: fit-content;
}
body .single-marque .marque-txt-left {
  border-right: 2px solid #AB3310;
  padding-right: 15px;
  max-width: 500px;
  height: -moz-fit-content;
  height: fit-content;
}
body .single-marque li {
  font-size: 14px;
}
body .products-item .product-subtitle {
  text-transform: uppercase;
}
body .products-item .product-title {
  font-family: "Microbrew";
  color: #AB3310;
  margin: 5px 0;
  font-size: 24px;
}
body .joyaux-item {
  max-width: 415px;
  margin: 0 auto;
}
body .joyaux-item-text {
  width: 90%;
  padding: 20px;
  transform: translateY(-30%);
}
body .joyaux-item-text h3 {
  font-weight: bold;
  text-transform: uppercase;
}
body .joyaux-item-1 .joyaux-item-text {
  background: rgba(171, 52, 16, 0.8078431373);
  color: #fff;
}
body .joyaux-item-2 .joyaux-item-text {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.8078431373);
  color: #000;
}

@media (min-width: 992px) {
  body .navbar-expand-lg .navbar-collapse {
    flex-grow: 0;
  }
  body .navbar-expand-lg .navbar-collapse .navbar-nav {
    margin: 0 auto;
  }
  body footer .footer-menu ul {
    flex-direction: row;
  }
}
@media (max-width: 992px) {
  .header-menu .navbar-collapse .navbar-nav {
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    z-index: 20;
  }
  .header-menu .navbar-collapse .navbar-nav .nav-link {
    color: #AB3310;
    font-weight: bold;
    padding: 20px;
    transition: 0s;
  }
  .header-menu .navbar-collapse .navbar-nav .nav-link:hover {
    background-color: #AB3310;
    color: white;
  }
  .header-menu .navbar-collapse .navbar-nav .dropdown-item {
    text-align: end;
    color: #AB3310;
  }
}
.ref-bloc{
  padding: 10px;
  border: 1px solid #AC3514;
  margin: 15px!important;
}
@keyframes arrowLoop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(30px);
    opacity: 1;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}/*# sourceMappingURL=styles.css.map */