img {
  -drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* HEADER - NAVBAR */
.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding-top: 0;
}
.header .navbar {
  padding-bottom: 0;
}
.header .navbar .container {
  background: #fffcfc;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  border-radius: 0 2.5em;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 4%);
}
.header .navbar .logo {
  width: 50%;
}
.header .navbar .logo img {
  width: 4em;
  margin-right: 0.5em;
}
.header .navbar .logo h1 {
  color: #3e2c1e;
  font-size: 36px;
  margin-left: 5px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.header .navbar .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: transparent;
  padding: 0%;
  padding-block: 3px !important;
}
.header .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.header .navbar-nav {
  text-align: center;
  margin-block: 0.5em;
  display: flex;
  justify-content: center;
  flex-direction: row;
  /* background: #ffead936; */
  border-radius: 0px 20px;
  padding: 15px;
}
.header .navbar-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}
.header .navbar-nav ul li a {
  padding-inline: 1em;
  margin-inline: 1em;
  position: relative;
  font-size: 14px;
  color: #724d33 !important;
  background: #ffead936;
  border-radius: 0px 20px;
  font-weight: 500;
  transition: 0.3s;
}
.header .navbar-nav ul li a:hover {
  color: #22170f;
}
.header .navbar-nav ul li a:active,
.header .navbar-nav ul li a:focus {
  color: #724d33 !important;
  background: #ffead936;
  border-radius: 0px 20px;
}
.header .navbar-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #724d33;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.header .navbar-nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header .navbar .menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin: 20px;
}
.header .navbar .menu-icon .line {
  width: 1em;
  height: 2px;
  margin-left: 5px;
  background-color: #422e20;
  transition: all 0.3s;
}
.header .navbar button[aria-expanded="true"] {
  transform: translateX(0);
}
.header .navbar button[aria-expanded="true"] .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .navbar button[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}
.header .navbar button[aria-expanded="true"] .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
@media (max-width: 992px) {
  .header .navbar .container {
    width: 90%;
    padding: 0.5em 0.75em;
  }
  .header .navbar .logo {
    width: 70%;
    justify-content: space-between;
  }
  .header .navbar .logo h1 {
    margin-right: 2em;
  }
  .header .navbar .menu-icon {
    width: 20px;
  }
  .header .navbar-nav ul {
    flex-direction: column;
    padding-left: 0;
    width: 100%;
  }
  .header .navbar-nav ul li {
    padding-block: 1px;
  }
  .header .navbar-nav ul li a {
    font-size: 12px;
    background: none;
  }
  .header .navbar-nav ul li a:hover {
    color: #724d33 !important;
    background: #ffead936;
    border-radius: 0px 20px;
  }
  .header .navbar-nav ul li a::after {
    display: none;
  }
  .header .navbar-nav ul li a:hover::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .header .navbar .logo {
    justify-content: space-between;
  }
  .header .navbar .logo h1 {
    margin-right: 1em;
  }
}
@media (max-width: 500px) {
  .header .navbar .logo {
    justify-content: space-between;
  }
  .header .navbar .logo h1 {
    margin-right: 0;
    margin-left: 15px;
  }
}
