@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: #FFF;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  display: none;
}
.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 {
    display: block;
  }
  .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.active, .nav--list .nav--link:hover {
  background-color: #001F6F;
  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%);
}

.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: 0.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;
  padding-left: 0px;
}
.menu .nav--list .nav--item {
  gap: 0;
  border-bottom: 1px solid #EDEDED;
  padding: 1.5rem 0;
  width: 100%;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu .menu--contain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  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 */