html, body {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  overflow-y: auto;
}

ul {
  list-style: none;
  padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  font-family: "Teko";
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

h2 {
  font-size: 50px;
  color: rgba(0, 155, 245, 0.966);
}

p {
  font-family: "Titillium Web";
  margin: 10px 0px;
}

a {
  color: initial;
  text-decoration: none;
}

input {
  background: none;
  outline: none;
  border: none;
  border-radius: 10px;
  height: 20px;
  padding: 5px;
  font-family: "Titillium Web";
}

select {
  height: 30px;
  border-radius: 5px;
  outline: none;
  background: none;
  font-family: "Titillium Web";
  border: none;
}

label {
  font-family: "Titillium Web";
}

button {
  cursor: pointer;
  height: 30px;
  background: rgba(0, 155, 245, 0.966);
  border-radius: 10px;
  outline: none;
  border: none;
  color: white;
}

.icon-inners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 50%;
}

.icon-inners span {
  margin-left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.main-site-header {
  height: 60px;
  width: 100%;
}

.site-nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 40px);
  top: 0px;
  left: 0px;
  position: fixed;
  margin-bottom: 50px;
  z-index: 8000;
  padding: 0px 20px;
  border: 1px solid goldenrod;
  background-color: white;
  padding-top: 3px;
  border-top: 2px solid rgba(0, 155, 245, 0.966);
  height: 60px;
}

.site-logo img {
  width: 80px;
}

.site-nav-list {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.nav-list {
  width: 70%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-list li {
  height: 100%;
}

.nav-list li div {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
  font-family: "Teko";
  font-size: 20px;
}

.nav-list li div span {
  margin-right: 5px;
}

.nav-list li div:hover {
  color: rgba(0, 155, 245, 0.966);
}

.nav-list li:hover .inner-list {
  display: block;
}

.inner-list {
  display: none;
  position: absolute;
  background: #040435;
  color: lightgray;
  min-width: 150px;
  margin-top: 0px;
}

.inner-list li div {
  padding: 10px;
  color: lightgray;
  background: grey;
  border-bottom: 2px solid lightgray;
}

.inner-list li div:hover {
  color: white;
}

.user-actions button {
  width: 100px;
}

.mobile-menu {
  display: none;
}

.mobile-menu div {
  width: 30px;
  height: 3px;
  border-radius: 10px;
  background: grey;
  margin-top: 4px;
}

.close-nav {
  background: rgba(0, 155, 245, 0.966);
  width: 50px;
  height: 50px;
  color: lightgray;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  font-size: 30px;
}

@media (max-width: 800px) {
  h1 {
    font-size: 50px !important;
  }
  .site-nav-list {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 0vh;
    overflow: hidden;
    background: rgba(4, 4, 53, 0.966);
    width: 100%;
    z-index: 300000;
    -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .s-active {
    height: 100vh;
    overflow-y: auto;
  }
  .nav-list {
    display: block;
    width: 100%;
    padding-top: 120px;
  }
  .nav-list li {
    height: auto;
  }
  .nav-list li div {
    margin-top: 10px;
    height: 30px;
    color: white;
    padding: 5px 20px;
    border-bottom: 1px solid darkblue;
  }
  .inner-list {
    padding-left: 15px;
    position: relative;
  }
  .inner-list li {
    width: 100%;
  }
  .inner-list li div {
    background: none;
  }
  .drops {
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .drops span {
    width: 100%;
  }
  .drops span:last-child {
    text-align: right;
    padding-right: 20px;
  }
  .user-actions {
    position: absolute;
    bottom: 80px;
    right: 20px;
  }
  .mobile-menu {
    display: block;
  }
  .close-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 450px) {
  .main-site-header {
    height: 46px;
  }
  .site-nav-bar {
    height: 45px;
  }
  .site-logo img {
    width: 50px;
  }
  .hero-item {
    padding: 10px;
  }
  h1 {
    font-size: 30px !important;
  }
  h2 {
    font-size: 35px !important;
  }
}
/*# sourceMappingURL=header.css.map */