@font-face {
  font-family: "Roboto Condensed";
  src: url(../storage/fonts/RobotoCondensed-Regular.ttf);
} 

@font-face {
  font-family: "Jost";
  src: url(../storage/fonts/Jost-Regular.ttf);
}

@font-face {
  font-family: "Jost bold";
  src: url(../storage/fonts/Jost-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

nav {
  background: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 60px;
  background-color: #242535;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.315);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.315);
}

nav .ul-btn {
  position: absolute;
  right: 20px;
  width: 50px;
  height: 45px;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  padding: 5px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav .ul-btn div {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

nav .nav-logo {
  height: 60px;
  position: absolute;
  left: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .nav-logo img {
  height: 50px;
  display: block;
}

nav ul {
  text-align: right;
  padding-right: 5%;
  font-family: "Roboto Condensed";
  cursor: default;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav ul li {
  display: inline-block;
  line-height: 60px;
  list-style: none;
  margin: 0 25px 0 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #FFB135;
  position: absolute;
  border-radius: 10px;
  left: 0;
  bottom: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #cecece;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FFB135;
  position: absolute;
  border-radius: 10px;
  left: 0;
  bottom: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav ul li .now::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FFB135;
  position: absolute;
  border-radius: 10px;
  left: 0;
  bottom: -2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1000px) {
  nav .ul-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav ul {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.034);
    width: 100%;
    height: calc(100vh - 60px);
    top: 60px;
    left: -100%;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    padding-bottom: 20px;
  }
  nav ul li {
    display: block;
    width: 100%;
    margin: 0;
  }
  nav ul li a {
    background-color: #242535;
    padding: 10px;
    border-radius: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  nav ul li a:hover {
    background-color: #FFB135;
    color: #242535;
  }
  nav ul li a:hover::after {
    width: 0;
  }
  nav ul li a.active {
    background-color: #FFB135;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #242535;
  }
  nav ul li a.active::after {
    width: 0;
  }
  nav ul li .now {
    background-color: #FFB135;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #242535;
  }
  nav #navb:checked ~ ul {
    left: 0;
  }
  nav #navb:checked ~ label .ul-btn div:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(16px);
            transform: rotate(45deg) translateY(16px);
  }
  nav #navb:checked ~ label .ul-btn div:nth-child(2) {
    -webkit-filter: opacity(0);
            filter: opacity(0);
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  nav #navb:checked ~ label .ul-btn div:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-16px);
            transform: rotate(-45deg) translateY(-16px);
  }
}
/*# sourceMappingURL=default.css.map */