header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

header img {
  padding: 8px 0;
}

header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
}

header ul li {
  list-style: none;
  margin-left: 20px;
}

.offcanvas-body ul {
  margin-left: 0;
  padding: 0;
}

.offcanvas-body ul li {
  list-style: none;
  margin-bottom: 10px;
}

header ul li a,
.offcanvas-body ul li a {
  text-decoration: none;
  color: #4a5565;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}

header ul li:last-child a,
.offcanvas-body ul li:last-child a {
  background-color: #014a22;
  padding: 15px 20px;
  border-radius: 8px;

  display: flex;
  align-items: center;

  color: #fff;
}

header .desktop-menu {
  display: flex;
}

header .mobile-menu {
  display: none;

  justify-content: end;
  align-items: center;

  height: 100%;
}

header .mobile-menu button {
  outline: none;
  border: none;
  background-color: transparent;
}

header .mobile-menu .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 996px) {
  header .desktop-menu {
    display: none;
  }

  header .mobile-menu {
    display: flex;
  }
}
