@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Lato", sans-serif;
  background: #e5e5e5;
  color: #424a52;
}
.cursor-pointer {
  cursor: pointer;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
#mobile_header {
  display: none;
}
nav.nav {
  position: absolute;
  top: 4em;
  width: 100%;
  list-style: none;
  margin: 0;
  text-align: center;
  z-index: 100;
  /* background-color: rgba(0, 0, 0, 0.4); */
}
.nav > ul {
  /* background-color: rgba(58, 58, 48, 0.7); */
  background-color: #aa9a9a;
  padding: 1em 0;
}
.nav ul {
  list-style: none;
}
.nav li {
  margin: 0.6em 0;
}
.nav > ul > li,
.nav ul > li a,
li a {
  text-decoration: none;
  font-weight: 800;
  line-height: 19.4px;
  color: #fff;
}
.nav > li > a:hover,
.nav > li > ul > li > a:hover {
  text-decoration: underline;
}
.nav form .input-group {
  width: 55%;
  height: 40px;
  margin: 0 auto;
  border: 1px solid #f1f1f1;
  background: #f5f5f5;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav form input {
  flex: 4;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.5em;
}
.nav form .fas {
  flex: 1;
  color: #848484;
}
.logo {
  margin: 1em;
}
.fa-bars {
  color: #414042;
  font-size: 1.3rem;
  cursor: pointer;
  margin: 1em;
}
#hide,
#hideAboutNav,
#hideResourceNav {
  display: none;
}
#show,
#showAboutNav,
#showResourceNav {
  display: block;
}
.auth-btn {
  border: 0;
  outline: 0;
  border-radius: 3px;
}
.reg-btn {
  padding: 1em 2em;
  background: #47b462;
  color: #fff;
}
.login-btn {
  padding: 1em 2.5em;
  background: #fff;
  border: 1px solid #47b462;
  color: #47b462;
  font-weight: bold;
}
.fa-plus {
  font-size: 12px;
  margin-left: 0.5em;
}
.about-nav,
.resources-nav {
  position: relative;
  left: 0em;
  z-index: 2;
}

.hero {
  background: #47b462;
  color: #ffffff;
  padding: 3em 4em 6em 4em;
  text-align: center;
}
