/* Code By Webdevtrick ( https://webdevtrick.com ) */
body {
  font-family: "Century Gothic", 'Lato', sans-serif;
}
a {
  text-decoration: none;
}
.nav-items,
.bottom-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  background: #eee;
  text-align: center;
  padding: 0 2em;
}
.nav-items h1,
.bottom-slide h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 1rem;
  color: #ff5f14;
}
.nav-items h3,
.bottom-slide h3 {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  opacity: 0.6;
}
.items-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 10;
}
.items-container--top {
  position: fixed;
  top: 0;
}
.navs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #212121;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 0.8rem;
}
.navs:hover {
  color: white;
  background: rgb(255,95,20, 0.8);
  transition: all 0.5s ease;
}
.bottom-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #ff5f14;
  transition: left 0.3s ease;
}
 
@media (min-width: 800px) {
  .nav-items h1,
  .bottom-slide h1 {
    font-size: 3rem;
  }
  .nav-items h3,
  .bottom-slide h3 {
    font-size: 1rem;
  }
 
  .navs {
    font-size: 1rem;
  }
}
@media (max-width: 765px) {
  .nav-items h1, .bottom-slide h1 {
    letter-spacing: 0ch;
  }
}
		