@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Major+Mono+Display&display=swap");
.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.container {
  max-width: 100%;
  width: 100%;
  min-width: 360px;
  height: auto;
  margin: 0 auto;
  padding: 0 1rem;
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #9c1c20;
}

.img_brand  {
    height: 48px;
    width: auto;
}

.nav_header {
  overflow: overlay;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 10000;
  margin: 0 auto;
  background-color: #FFF7;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.25);
}

.navbar {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  margin: 0 auto;
  top: 0;
  background: #FFF;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  z-index: 10000;
  overflow: overlay;
  background-color: #FFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease-in-out;
}
.menu.is-active {
  top: 0;
  left: 0;
  height: 98vh;
  box-shadow: 8px 8px 10px -1px rgba(0, 0, 0, 0.5), 8px 8px 10px -1px rgba(0, 0, 0, 0.5);
  border-radius: 0px 16px 16px 0px;
  border-left: 10px solid #9c1c20;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  margin: 1.25rem;
  list-style: none;
}

.menu-item {
    line-height: 64px;
    text-transform: uppercase;
}

.menu-link {
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  transition: all 0.25s ease;
  /* line-height: 64px; */
    text-transform: uppercase;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.menu-link-special {
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    /* line-height: 4rem; */
    text-transform: uppercase;
    color: #000;
    transition: all 0.25s ease;
    color: #9c1c20;
    background: #FFF;
    border-color: #9c1c20;
    border-radius: 32px;
    border: 1px solid #9c1c20;
    height: 64px;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    
}

.menu-link:hover {
    color: #9c2c10;
    text-decoration: underline;
}

.menu-link-special:hover {
    color: #fff;
    background: #9c1c20;
    border-radius: 32px;
    border: 1px solid #000;
    line-height: 4rem;
}

@media only screen and (max-width: 48rem) {
    .menu-link-special {
        padding: 0;
        border-radius: 0;
        border: 0;
        height: 64px;
        font-size: 24px;
    }
    .menu-link {
        padding: 0;
        border-radius: 0;
        border: 0;
        height: 64px;
        font-size: 24px;
    }
    .menu-item {
        line-height: 64px;
        text-align: right;
    }
    .menu-inner {
        row-gap: 0;
        height: 32px;
    }
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 24px;
    margin: 0 auto;
    margin-right: 24px;
    list-style: none;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  order: -1;
  width: 1.75rem;
  height: auto;
  border: none;
  outline: none;
  visibility: visible;
}
.burger-line {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 2px;
  margin: 6px auto;
  transform: rotate(0deg);
  background-color: #000;
  transition: all 0.25s ease-in-out;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease-in-out;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
}
.header-overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.search-toggle, .search-cancel, .search-voice {
  display: block;
  cursor: pointer;
  font-size: 32px;
  line-height: inherit;
  color: #000;
}

.search-block {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 64px;
  z-index: 10010;
  overflow: hidden;
  background-color: #FFF;
  transition: all 0.25s ease-in-out;
}
.search-block.is-active {
  top: 0;
  right: 0;
}
.search-form {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  padding: 0.5rem;
}
.search-input {
  display: block;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  height: auto;
  padding: 4px;
  border: none;
  outline: none;
  color: #000;
  background-color: #fff;
  border-color: #9c1c20;
  border-radius: 16px;
  border: 1px solid #9c1c20;
}

.search-input::-webkit-search-decoration, .search-input::-webkit-search-cancel-button {
  display: none;
  visibility: hidden;
}
