
@import url('https://fonts.googleapis.com/css?family=Anton');
@import url('https://fonts.googleapis.com/css?family=Alfa+Slab+One');
@import url('https://fonts.googleapis.com/css?family=Exo:900');
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  scroll-behavior: smooth;
}
/*---------------------------------
          HEADER STYLE START
----------------------------------*/
header {
  width: 100%;
  overflow: hidden;
  background: white;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu_bar {
  padding: 10px;
  max-height: 60px;
  cursor: pointer;
}

.nav_name {
  display: inline-block;
  top: 0px;
  position: absolute;
  left: 50%;
  padding-top: 15px;
  transform: translate(-50%);
  font-size: 30px;
  color: black;
  font-family: 'Exo', sans-serif;
  letter-spacing: 5px;
}
.nav_name span {
  color: green;
}

nav {
  padding: 20px;
  padding-bottom: 0px;
  float: right;
}

nav ul li {
  color: rgb(0, 102, 14);
  display: inline;
  text-align: center;
}

nav ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 0 3px;
}

nav ul li a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 20px rgb(0, 0, 0);
}

.log_sign {
  font-size: 20px;
}

/*-----------------------------------------
          NAVIGATION MENU STYLING
------------------------------------------*/
#nav_content {
  position: absolute;
  top: 0px;
  text-transform: uppercase;
  background: rgb(0, 0, 0);
  text-align: center;
  font-size: 2em;
  height: 100vh
  /* min-height:  */;
  width: 100%;
  padding-top: 50px;
  color: white;
  z-index: 9000;
  display: none;
}
#nav_content a{
  color: white;
}

.close_cont {
  position: absolute;
  top: 0px;
  width: 100vw;
}

.log {
  float: left;
  padding-left: 20px;
}

.log a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  padding: 0 5px;

}

.close {
  float: right;
  padding-top: 2%;
  padding-right: 5%;
  cursor: pointer;
  color: red;
  font-size: 40px;
}

#nav_content ul li {
  padding: 3vh 0;
  cursor: pointer;
}
#nav_content ul li:hover a{
  color: green;
  text-shadow: 0 0 10px white;
  letter-spacing: 2px;
}
.back-top{
  /* display: none; */
  cursor: pointer;
}
.back-top i{
  position: fixed;
  color: green;
  bottom: 40vh;
  right: 0px;
  padding: 8px 12px;
  background: rgb(255, 255, 255);
  z-index: 3000;
 
}

/*---------------------------------------
             MEDIA QUERY
--------------------------------------------*/
@media only screen and (max-width: 500px) {

  nav {
    display: none;
  }
  .nav_name{
    font-size: 4.5vw;
  }
  .back-top i{
    bottom: 10vh;
    right: 10px;
    border-radius: 50%;
  }
}