html.mobile-menu-open body {
  overflow: hidden;
}
html.mobile-menu-open .Mobile {
  transform: translate3d(0, 0, 0) !important;
}

.Mobile {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000;
  flex-wrap: wrap;
  transition: ease, 0.5s;
  transform: translate3d(-100%, 0, 0);
  padding: 1.5rem 0;
  z-index: 50;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Mobile--open {
  transform: translate3d(0, 0, 0) !important;
}
.Mobile__Inner {
  width: 100%;
  max-width: 900px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 30px;
  margin: auto;
}
.Mobile__Links {
  width: 100%;
  margin: auto;
  list-style: none;
  margin: 0;
}
.Mobile__Links a {
  color: #fff;
}
.Mobile__Links a:hover {
  background-color: var(--gold);
}
.Mobile__Links > ul .children {
  padding-bottom: 15px;
}
.Mobile__Links > ul .children a {
  padding: 5px 10px;
  display: block;
}
.Mobile__Links > ul > li {
  border-top: 1px solid var(--gold);
}
.Mobile__Links > ul > li:last-of-type {
  border-bottom: 1px solid var(--gold);
}
.Mobile__Links > ul > li > a {
  width: 100%;
  display: block;
  font-size: 25px;
  line-height: 100%;
  font-weight: 900;
  transition: ease 0.5s;
  padding: 15px 10px;
  transition: ease 0.5s;
}
.Mobile__Links > ul > li > a:hover {
  background-color: var(--gold);
}

:root {
  --coal: rgba(7, 7, 5, 0.9);
  --gold: #d3b033;
}

.Container {
  max-width: 1280px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}

.Header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--coal);
  padding: 30px 0;
  z-index: 10;
}
@media (max-width: 770px) {
  .Header {
    padding: 15px 0;
  }
}
.Header__Wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.Header__Logo {
  width: 100%;
  max-width: 90px;
}
.Header__Hamburger {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  background-color: #fff;
  transition: ease 0.5s;
  border-radius: 0;
}
.Header__Hamburger .Bars {
  height: 20px;
  width: 30px;
  position: relative;
}
.Header__Hamburger .Bars:hover {
  cursor: pointer;
}
.Header__Hamburger .Bar {
  background: var(--coal);
  transform: translateY(-50%) rotate(0deg);
  position: absolute;
  width: 100%;
  height: 2px;
  transition: top 0.1s ease 0.3s, transform 0.3s ease, background 0.1s ease 0.3s;
  left: 0;
}
.Header__Hamburger .Bar:nth-child(1) {
  top: 0;
}
.Header__Hamburger .Bar:nth-child(2) {
  top: 50%;
}
.Header__Hamburger .Bar:nth-child(3) {
  top: 100%;
}
.Header__Hamburger--Active {
  transition: ease 0.5s;
}
.Header__Hamburger--Active .Bars .Bar {
  transition: top 0.1s ease, transform 0.3s ease 0.1s, background 0.1s ease;
}
.Header__Hamburger--Active .Bars .Bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(315deg);
}
.Header__Hamburger--Active .Bars .Bar:nth-child(2) {
  transform: translateY(-50%) rotate(405deg);
}
.Header__Hamburger--Active .Bars .Bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(405deg);
}
.Header__Hamburger--Active > span:not(.Bars) {
  color: #fff;
}
.Header__Nav {
  flex: 1 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
@media (max-width: 770px) {
  .Header__Nav .menu-barques-main-menu-container {
    display: none;
  }
}/*# sourceMappingURL=new-style.css.map */