nav {
  background-color: #fff;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05), 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.navbar {
  padding: 3px 30px 5px;
}
.navbar-brand {
  padding-top: 0;
  margin-right: 5px;
  padding-bottom: 0;
}
.navbar-nav {
  height: 50px;
}
a.nav-link {
  color: #2c2c2c;
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  padding: 0;
  display: inline-block;
  position: relative;
}
a.nav-link:not([data-touch]):hover::after {
  width: 100%;
  transition: width 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
a.nav-link::after {
  content: "";
  width: 0;
  height: 4px;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #0d800c;
  backface-visibility: hidden;
}
li.nav-item {
  padding-right: 0;
  padding-bottom: 20px;
}
li.nav-item:last-child {
  padding-bottom: 0;
}
ul.navbar-nav.align-items-end {
  align-items: unset !important;
}
a.nav-link {
  padding-top: 5px;
}
/* humberger */
.navbar-toggler {
  position: relative;
  float: right;
  padding: 9px 10px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
button:focus {
  outline: none;
}
.navbar-toggler,
.navbar-toggler span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.navbar-toggler {
  position: relative;
  width: 36px;
  height: 44px;
  right: 7px;
}
.menu-trigger.active::after {
  bottom: -25px;
}
.navbar-toggler span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #3b4043;
  border-radius: 4px;
}
.navbar-toggler.collapsed span:nth-of-type(1) {
  top: 6px;
}
.navbar-toggler span:nth-of-type(1) {
  top: -5px;
}
.navbar-toggler span:nth-of-type(2) {
  top: 17px;
}
.navbar-toggler.collapsed span:nth-of-type(3) {
  bottom: 11px;
}
.navbar-toggler span:nth-of-type(3) {
  bottom: 4px;
}
.navbar-toggler span {
  left: 8px;
  width: 42px;
}
.navbar-toggler.collapsed span::before {
  position: absolute;
  top: 0;
  left: -8px;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #3b4043;
  border-radius: 4px;
}
.navbar-toggler.collapsed span:nth-of-type(2)::before {
  background-color: #3b4043;
}
.navbar-toggler span {
  left: 0;
  width: 100%;
}
.navbar-toggler span::before {
  content: none;
}
.navbar-toggler.collapsed span:nth-of-type(1),
.navbar-toggler.collapsed span:nth-of-type(3) {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggler span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.navbar-toggler.collapsed span:nth-of-type(2) {
  opacity: 1;
  background-color: #3b4043;
}
.navbar-toggler span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}
.navbar-toggler.collapsed a.btn-book {
  opacity: 1;
}
.navbar-toggler a.btn-book {
  opacity: 0;
}
.navbar-collapse {
  margin-bottom: 0;
  max-height: calc(100vh - 50px);
  overflow-y: auto;
}
.navbar-collapse.show {
  right: 0;
  top: 50px;
  opacity: 1;
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  height: 100%;
  background-color: #fff;
  left: 0;
  position: fixed;
}
a.btn-book {
  position: absolute;
  right: 80px;
  background-color: #0d800c;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 3px;
  color: #fff;
  width: 200px;
  top: 3px;
  font-size: 1rem;
  box-shadow: 1px 1px 3px rgb(0 0 0 / 35%);
}
a.btn-book:hover {
  text-decoration: none;
  background-color: #72a46e;
}
@media (max-width: 767px) {
  .navbar-brand {
    padding: 5px;
  }
  .navbar-brand img {
    width: 200px;
  }
  .navbar {
    padding: 3px 0 0 0;
  }
  .navbar-nav {
    text-align: center;
    height: auto;
    background-color: #fff;
    padding-top: 25px;
    padding-bottom: 10px;
  }
  a.nav-link:not([data-touch]):hover::after {
    width: 40px;
  }
  li.nav-item {
    padding-bottom: 10px;
  }
  a.btn-book {
    right: 60px;
  }
}
@media (max-width: 575px) {
  .navbar-collapse.show {
    right: 0;
    top: 47px;
  }
  .navbar-collapse {
    max-height: calc(100vh - 47px);
  }
  .navbar-brand img {
    width: 165px;
  }
  a.btn-book {
    right: 50px;
    padding: 9px 10px;
    border-radius: 3px;
    width: 130px;
    top: 4px;
    font-size: 13px;
  }
}
