/* Navbar */

header {
  position: sticky;
  padding: 10px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5faff;
  top: 0;
  left: 0;
  z-index: 10;
}
header > a > img {
  width: 150px;
}
header nav a {
  font-weight: 500;
  color: #0c467e;
  text-decoration: none;
  margin-right: 30px;
}
header nav > button {
  font-size: 15px;
  height: 42px;
  width: 131px;
}

button#toggleSidebarBtn {
  background: none;
  border: none;
  display: none;
}

/* Sidebar */

div#sidebar_overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  background: black;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0.3;
}

div#sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 11;
  background: white;
  width: 300px;
  padding: 30px;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.sidebar_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #e2e1e1;
  padding-bottom: 20px;
}

.sidebar_top img {
  width: 110px;
}

.sidebar_top i {
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.sidebar_middle {
  display: flex;
  flex-direction: column;
  padding-top: 25px;
}

.sidebar_middle a {
  display: block;
  margin-bottom: 25px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

@media screen and (max-width: 1114px) {
  header nav {
    display: none;
  }
  button#toggleSidebarBtn {
    display: block;
    font-size: 20px;
    width: max-content !important;
  }
}

@media screen and (max-width: 675px) {
  header {
    padding: 10px 10px;
  }
  header > a > img {
    width: 120px;
  }
}
