.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}

.header.on-scroll {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: stickyTransition;
  animation-name: stickyTransition;
  background: #fff;
  -webkit-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
    
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}

.brand {
  font-size: 28px;
  text-decoration: none;
  font-weight:700;
  color: #8e5025;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateX(-50%);
}
a:hover.brand {
  text-decoration: none;
  color: #8e5025;
}


.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color:#fff;
  -webkit-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}
.menu-inner li {
  list-style: none;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color:#8e5025;
  transition: all 0.3s ease;
}
a:hover.menu-link {
  text-decoration: none;
  color: #693c1c;
}
.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  color:#8e5025;
  background-color:#fff;
 
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-right: 0;
  }
  a.menu-block {
    text-decoration: none;
  }
  a:hover.menu-block {
    color: #8e5025;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color:#8e5025;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}