.sidenavbar {
  position: fixed;
  z-index: 100;
  width: 100%;
}
.navbar {
  position: fixed;
  top: 0;
  background-color: #fff;
  padding: 15px 10px;
  height: auto;
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar .sitename {
  color: #00293a;
  font-size: 18px;
  font-weight: 500;
  font-family: "Exo", sans-serif;
}
.navbar .subcont {
  position: absolute;
  right: 0;
}
.navbar .subcont i {
  color: #022c1e;
  font-size: 0.7em;
}
.navbar .subcont .bars {
  font-size: 20px;
  cursor: pointer;
  color: #022c1e;
  margin-right: 20px;
}
.navbar .subcont button {
  background: white;
  padding: 5px 8px;
  width: 100px;
  outline: none;
  border: none;
  border-radius: 3px;
  color: #022c1ede;
  font-size: 0.8em;
  font-weight: 500;
  margin-right: 20px;
  transition: 0.3s;
  border: none;
  border-radius: 5px;
  border: 1px solid #0fa9694b;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.064);

  cursor: pointer;
}

.navbar .subcont button:hover {
  box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.064);
}

.navbar .login {
}
.navbar .signupBtn {
  display: none;
}
.navbar img {
  margin-left: 20px;
  width: 40px;
  opacity: 0.7;
}
.navbar .loginSignup:hover {
  background: #035f1c;
  /* border: 1.1px solid #454851; */
  color: #fff;
}
.sideBarFade {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.sidebar {
  position: fixed;
  z-index: 99;
  background: #0a150f;
  padding: 10px 0;
  height: 100%;
  width: 0;
  overflow-x: hidden;
  transition: 0.1s;
  white-space: nowrap;
}
.sidebar i {
  padding-right: 12px;
}

.sidebar .sitename {
  text-align: center;
  font-size: 1.4em;
  color: #eee;
  margin: 20px 0;
}
.sidebar a {
  padding: 10px;
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 0.8em;
  margin: 10px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: 150ms ease-in-out;
  padding-left: 30px;
  border-radius: 5px;
  /* opacity: 0.7; */
}
.sidebar a:hover {
  background-color: #97f675;
  color: #0a150f;
  /* font-size: 900; */
}
.showBig {
  display: none !important;
}
.showSmall {
  display: inline !important;
}
@media screen and (min-width: 1000px) {
  .navbar .signupBtn {
    display: inline;
  }
  .navbar .subcont .bars {
    display: none;
  }
  .sidebar {
    width: 20%;
  }
  .sidebar a {
    font-size: 0.85em;
    font-weight: 600;
    padding-left: 35px;
  }
  .showBig {
    display: inline !important;
  }
  .showSmall {
    display: none !important;
  }
}
