@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap");
/*========== Color ==========*/
/*========== Font and typography ==========*/
/*========== z index ==========*/
/*========== Hover overlay ==========*/
/*========== Margin ==========*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgb(255, 255, 255,0.5);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header.navbar-shrink {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
}
.header .navbar {
  padding-top: 0;
  padding-bottom: 0;
  height: 79px;
  background-image: url(../images/navbar-backdrop.webp?v=2);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
}
.header .nav--logo {
  display: none;
}
@media screen and (max-width: 991px) {
  .header .nav--logo {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .header .navbar-shrink, .header .navbar {
    background-image: url(../images/shrink-backdrop.webp?v=2) !important;
    background-position: bottom right !important;
  }
}

.nav--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .nav--menu {
    display: none;
  }
}

.nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 0;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .nav--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.nav--list .nav--link {
  color: #000;
  font-size: 14px;
  font-family: "roboto-500", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
.nav--list .nav--link > img {
  margin-right: 9px;
  position: relative;
  top: 2px;
}
.nav--list .nav--link > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  color: #000;
  border: none;
  font-family: "prompt-700", sans-serif;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
  border-radius: 20px;
}
.nav--list .nav--link > .dropdown-toggle:focus, .nav--list .nav--link > .dropdown-toggle:hover {
  background-color: #7B3F00;
  color: #fff !important;
  height: 32px;
  padding: 10px 12px;
}
.nav--list .nav--link > .dropdown-toggle::after {
  display: none;
}
.nav--list .nav--link.active, .nav--list .nav--link:hover {
  background-color: #7B3F00;
  color: #fff !important;
  height: 32px;
  padding: 3px 12px;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
  border-radius: 20px;
}
.nav--list .nav--link.active img, .nav--list .nav--link:hover img {
  -webkit-filter: invert(100%);
  /* Safari/Chrome */
  filter: invert(100%);
}

.nav--item.dropdown--level .dropdown-menu {
  min-width: 13em;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.nav--item.dropdown--level .dropdown-menu li {
  position: relative;
}
.nav--item.dropdown--level .dropdown-menu li a {
  color: #666;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 9px 16px 9px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #EDEDED;
  font-family: "prompt-400", sans-serif;
}
.nav--item.dropdown--level .dropdown-menu li a:hover {
  color: #FFF !important;
  background-color: #7B3F00;
}
.nav--item.dropdown--level .dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}
.nav--item.dropdown--level .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  color: #000;
  border: none;
  font-family: "roboto-500", sans-serif;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
  border-radius: 20px;
}
.nav--item.dropdown--level .dropdown-toggle:focus, .nav--item.dropdown--level .dropdown-toggle:hover, .nav--item.dropdown--level .dropdown-toggle:active {
  background-color: #7B3F00;
  color: #fff !important;
  height: 32px;
  padding: 10px 12px;
}
.nav--item.dropdown--level .dropdown-toggle::after {
  display: none;
}

.dropdown--level.active .dropdown {
  background-color: #7B3F00;
  padding: 2px 12px;
  -webkit-transition: padding 0.3s;
  transition: padding 0.3s;
  border-radius: 20px;
}
.dropdown--level.active .dropdown .dropdown-toggle {
  color: #FFF !important;
}
.dropdown--level.active:hover .dropdown {
  padding: 0px 12px !important;
}
.dropdown--level button {
  color: #000;
  font-size: 14px;
  font-family: "roboto-500", sans-serif;
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dropdown--level button img {
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dropdown--level button.collapsed img {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.dropdown--level .dropdown--mobile li {
  padding: 5px 0;
}
.dropdown--level .dropdown--mobile li a,
.dropdown--level .dropdown--mobile li button {
  color: #666;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 5px 0;
  font-weight: 300 !important;
  font-family: "Lato", "roboto", "Prompt" !important;
}
.dropdown--level .dropdown--mobile li a:hover,
.dropdown--level .dropdown--mobile li button:hover {
  color: #7B3F00;
}
.dropdown--level .dropdown--mobile li:nth-child(even) {
  background: #f2f2f2;
}
.dropdown--level #collapseTwo {
  padding-left: 10px;
}
.dropdown--level #collapseThree,
.dropdown--level #collapseFour,
.dropdown--level #collapseFive,
.dropdown--level #collapseSix {
  padding-left: 30px;
}

.dropdown--level .dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -3px;
}

.dropdown--level .dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.btn--hamburger {
  display: none;
  margin-left: auto;
  z-index: 1000;
  width: 23px;
  height: 17px;
  position: relative;
  background-color: transparent;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 991px) {
  .btn--hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.btn--hamburger span {
  position: relative;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  background: #7B3F00;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s;
  transition: opacity 0.25s ease-in-out, -webkit-transform 0.25s;
  transition: transform 0.25s, opacity 0.25s ease-in-out;
  transition: transform 0.25s, opacity 0.25s ease-in-out, -webkit-transform 0.25s;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none !important;
}
.btn--hamburger.open span {
  position: absolute;
}
.btn--hamburger.open span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.btn--hamburger.open span:nth-child(2) {
  opacity: 0;
  top: 8px;
}
.btn--hamburger.open span:nth-child(3) {
  top: 8px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.menu--bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  visibility: hidden;
}
.menu--bg.menu--bg--active {
  opacity: 1;
  visibility: inherit;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.menu {
  position: fixed;
  left: auto;
  top: 0%;
  right: -68em;
  bottom: 0%;
  z-index: 999;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
  height: 100%;
  max-width: 300px;
  padding: 2.5em 1.5em 1.5em 1.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-transition: right 0.35s ease-in-out, left 0.5s ease-in-out;
  transition: right 0.35s ease-in-out, left 0.5s ease-in-out;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  overflow-x: hidden;
  overflow-y: auto;
}
.menu.menu--open {
  right: 0;
  -webkit-transition: right 0.35s ease-in-out, left 0.5s ease-in-out;
  transition: right 0.35s ease-in-out, left 0.5s ease-in-out;
}
.menu .nav--list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.menu .nav--list .nav--item {
  gap: 0;
  border-bottom: 1px solid #EDEDED;
  padding: 1.5rem 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu .menu--contain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 15em;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: inherit;
  top: auto;
  left: auto;
  padding: inherit;
  text-align: inherit;
  background-color: inherit;
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  z-index: inherit;
}
.menu .menu-link {
  padding-top: 0.7em;
  padding-bottom: 0.7em;
  font-size: 1.5em;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  color: #fff;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu .menu-link:hover {
  color: #3D3D3D;
}
/*# sourceMappingURL=header.css.map */