* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: none;
}

*, *:focus, *:hover {
  outline: none;
}

body {
  font-family: "Nunito Sans", sans-serif;
}

/* --- Panel --- */
.panel {
  display: flex;
  height: 50px;
  width: 100%;
  z-index: 2;
  position: fixed;
  background: radial-gradient(100% 225% at 100% 0%, #411f1f 0%, #242424a4 100%), linear-gradient(236deg, #2b2c2c 0%, #333333 100%), linear-gradient(135deg, #272727 0%, #049797 36%, #2c2c2c 36%, #3c3c3c 60%, #291010 60%, #07456F 67%, #2b2b2b 67%, #a2a2a2 100%);
  background-blend-mode: overlay, hard-light, normal;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -khtml-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.panel.active {
  width: 100%;
}
.panel.active .search-area {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -khtml-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  visibility: hidden;
}
.panel .menu-btn {
  display: inline-block;
  padding: 15px 10px;
  padding-left: 25px;
}
.panel .menu-btn .btn-line {
  background-color: #cecece;
  transition: all 0.2s ease-out;
  width: 35px;
  height: 2px;
  margin-bottom: 8px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}
.panel .menu-btn .btn-line.line2 {
  width: 26.25px;
}
.panel .menu-btn .btn-line.line3 {
  width: 17.5px;
}
.panel .search-area {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -khtml-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.panel .search-area svg, .panel .search-area img {
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -khtml-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  height: 15px;
  width: 15px;
  stroke: #cecece;
}
.panel .search-area svg#search-icon {
  left: 18px;
  z-index: 1;
}
.panel .search-area img#logo-icon {
  right: 18px;
}
.panel .search-area input#bsearch {
  background-color: #85858574;
  position: relative;
  width: 100%;
  height: 30px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  padding-left: 22px;
}
.panel .search-area input#bsearch::placeholder {
  color: #cecece;
  font-family: "Nunito Sans", sans-serif;
}
.panel .icon-area {
  justify-self: end;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 2px;
}
.panel .icon-area svg {
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  stroke: #cecece;
}

/* --- Menu-Nav --- */
.menu-nav {
  z-index: 2;
  top: 50px;
  left: -400px;
  width: 75%;
  height: calc(100vh - 50px);
  background: radial-gradient(100% 225% at 100% 0%, #411f1f 0%, #242424a4 100%), linear-gradient(236deg, #2b2c2c 0%, #333333 100%), linear-gradient(135deg, #272727 0%, #049797 36%, #2c2c2c 36%, #3c3c3c 60%, #291010 60%, #07456F 67%, #2b2b2b 67%, #a2a2a2 100%);
  background-blend-mode: overlay, hard-light, normal;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -khtml-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: fixed;
  visibility: hidden;
  overflow-y: scroll;
}
.menu-nav.active {
  visibility: visible;
  top: 50px;
  left: 0;
}
.menu-nav ul.nav-items > li.nav-item {
  position: relative;
  margin: 25px 10px 25px 44px;
  height: 28px;
  display: flex;
  align-items: center;
  background-color: #330d0d98;
}
.menu-nav ul.nav-items > li.nav-item a.nav-link {
  font-size: 19px;
  line-height: 22px;
  color: #cecece;
  padding: 5px 20px;
}

.btn-lines.active > .btn-line {
  transition: all 0.2s ease-out;
}
.btn-lines.active > .btn-line.line1 {
  width: 17.5px;
}
.btn-lines.active > .btn-line.line3 {
  width: 35px;
}

main.main {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -khtml-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

main.main.active {
  overflow: hidden;
  opacity: 0.4;
}

body.active {
  overflow-y: hidden;
}

main, body {
  background: #131313;
  background-blend-mode: overlay, hard-light, normal;
}

.container {
  color: #cecece;
  padding: 52px 50px;
}
.container div {
  margin: 10px;
}

footer {
  padding: 10px 50px;
  color: #cecece;
  background: #0a0a0a;
  background-blend-mode: overlay, hard-light, normal;
}

/*# sourceMappingURL=style.css.map */
