

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: whitesmoke;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9998;
}

.logo {
  position: relative;
  display: block;
  color: #a13f00;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}
.logo i {
  margin-right: 10px;
  color: #cc6733;
}

.nav-menu {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.navigation {
  position: fixed;
  top: 0;
  right:200vw;
  width: 40vw;
  height: 10vh;
  background-color: rgba(245, 245, 245, 0.95);
  transition: 0.25s linear;
  z-index: 9998;
}
.navigation.is-open {
  right: 0;
}
.navigation ul {
  position: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.navigation ul li {
  position: relative;
  height: 100%;
  background: white;
  border-bottom: 1px solid rgba(68, 68, 68, 0.1);
}
.navigation a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #cc6733;
  font-family: 'firaGO';
  font-size: 20px;
  text-decoration: none;
}
.navigation a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #cc9b33;
  transition: 0.25s;
  z-index: -1;
}

.navigation a:hover:before {
  width: 100%;
}

.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: auto;
  padding: 0;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  z-index: 9999;
}
.hamburger.is-open span {
  background-color: black;
  transition: 0.25s transform linear;
}
.hamburger.is-open span:first-child {
  transform: translateY(2px) rotate(45deg);
  animation: hamburger3 0.25s linear;
}


.dropdown-content {
  display: none;

}

.dropbtn {
  cursor: pointer;
}





.show {display: block;}


@keyframes hamburger3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(2px) rotate(45deg);
  }
}
.hamburger.is-open span:nth-child(2) {
  width: 0;
}
.hamburger.is-open span:last-child {
  transform: translateY(-2px) rotate(-45deg);
  animation: hamburger4 0.25s linear;
}
@keyframes hamburger4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2px) rotate(-45deg);
  }
}
.hamburger span {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #a13f00;
  border-radius: 10px;
  transform-origin: center center;
  transition: 0.25s transform linear;
}
.hamburger span:first-child {
  transform: translateY(-5px) rotate(0deg);
  animation: hamburger1 0.25s linear;
}
@keyframes hamburger1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px) rotate(0deg);
  }
}
.hamburger span:last-child {
  transform: translateY(5px) rotate(0deg);
  animation: hamburger2 0.25s linear;
}
@keyframes hamburger2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5px) rotate(0deg);
  }
}



@media (min-width: 48rem) {
  .grid-container {
    padding: 0 20px;
  }
}
.grid-container.full {
  max-width: 100%;
  padding: 0 10px;
}
@media (min-width: 48rem) {
  .grid-container.full {
    padding: 0 20px;
  }
}
.grid-container .grid-x {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 48rem) {
  .grid-container .grid-x {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.grid-container .grid-x.align-left {
  justify-content: flex-start;
}
.grid-container .grid-x.align-right {
  justify-content: flex-end;
}
.grid-container .grid-x.align-justify {
  justify-content: space-between;
}
.grid-container .grid-x.align-top {
  align-items: flex-start;
}
.grid-container .grid-x.align-bottom {
  align-items: flex-end;
}
.grid-container .grid-x.align-middle {
  align-items: center;
}
.grid-container .grid-x.align-center {
  align-items: center;
  justify-content: center;
}
.grid-container .grid-x.grid-margin-x .cell {
  margin-left: 10px;
  margin-right: 10px;
}
.grid-container .grid-x.grid-padding-x .cell {
  padding-left: 10px;
  padding-right: 10px;
}
.grid-container .grid-x.grid-margin-y .cell {
  margin-top: 10px;
  margin-bottom: 10px;
}
.grid-container .grid-x.grid-padding-y .cell {
  padding-top: 10px;
  padding-bottom: 10px;
}



@media (min-width: 20rem) {
  .cell.small-1 {
    width: 8.3333%;
  }
}

@media (min-width: 20rem) {
  .cell.small-11 {
    width: 91.666612%;
  }
}

@media only screen and (max-width: 600px) {
  .navigation {
    width: 70vw;
  }


}


