@charset "UTF-8";
/* 
$content-width will be the max width of the content within the navigation bar. 
$breakpoint determines at which width the media query breakpoint will take effect.
*/

.nav__atas {
  width: 100%;
  height: auto;
  padding: 50px 0 15px;
  /* background: #ffffff; */
}

.nav__atas ul {
  list-style: none;
  margin-top: -40px;
}
.nav__atas ul li {
  float: left;
  position: relative;
}
.nav__atas ul li a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  /* background: #ffffff; */
  color: #463f3f;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
.nav__atas ul li a:hover {
  background: #f2f2f2;
  color: #fb5958;
}
.nav__atas ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
.nav__atas ul li ul li {
  min-width: 190px;
}
.nav__atas ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav__atas_tracking {
  width: 100%;
  height: auto;
  padding: 65px 0 15px;
  background: #0d1036;
}

.nav__atas_tracking ul {
  list-style: none;
  margin-top: -55px;
}
.nav__atas_tracking ul li {
  float: left;
  position: relative;
}
.nav__atas_tracking ul li a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  background: #0d1036;
  color: #ffffff;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
.nav__atas_tracking ul li a:hover {
  background: #f2f2f2;
  color: #fb5958;
}
.nav__atas_tracking ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
.nav__atas_tracking ul li ul li {
  min-width: 190px;
}
.nav__atas_tracking ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav__atas_portofolio {
  width: 100%;
  height: auto;
  padding: 65px 0 15px;
  background: #0d1036;
}

.nav__atas_portofolio ul {
  list-style: none;
  margin-top: -55px;
}
.nav__atas_portofolio ul li {
  float: left;
  position: relative;
}
.nav__atas_portofolio ul li a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  background: #0d1036;
  color: #ffffff;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
.nav__atas_portofolio ul li a:hover {
  background: #f2f2f2;
  color: #fb5958;
}
.nav__atas_portofolio ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
.nav__atas_portofolio ul li ul li {
  min-width: 190px;
}
.nav__atas_portofolio ul li ul li a {
  padding: 15px;
  line-height: 50px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 10;
  right: 0;
  background: #fff;
  height: 50px;
  width: 70px;
}

.nav-mobile-tracking {
  display: none;
  position: absolute;
  top: 10;
  right: 0px;
  background: #0d1036;
  height: 50px;
  width: 70px;
}

.nav-mobile-portofolio {
  display: none;
  position: absolute;
  top: 10;
  right: 0px;
  background: #0d1036;
  height: 50px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
    background: #ffffff;
  }

  .nav-mobile-tracking {
    display: block;
    background: #0d1036;
    top: 10;
    right: 10;
    height: 50px;
    width: 70px;
  }

  .nav-mobile-portofolio {
    display: block;
    background: #0d1036;
    top: 10;
    right: 10;
    height: 50px;
    width: 70px;
  }

  .nav__atas {
    width: 100%;
    height: auto;
    padding: 65px 0 15px;
    background: #ffffff;
  }
  
  .nav__atas ul {
    display: none;
    margin-top: 20px;
  }
  .nav__atas ul li {
    float: none;
  }
  .nav__atas ul li a {
    padding: 15px;
    line-height: 20px;
  }
  .nav__atas ul li ul li a {
    padding-left: 30px;
  }

  .nav__atas_tracking {
    width: 100%;
    height: auto;
    padding: 70px 0 15px;
    background: #0d1036;
  }
  
  .nav__atas_tracking ul {
    display: none;
    margin-top: 20px;
  }
  .nav__atas_tracking ul li {
    float: none;
  }
  .nav__atas_tracking ul li a {
    padding: 15px;
    line-height: 20px;
  }
  .nav__atas_tracking ul li ul li a {
    padding-left: 30px;
  }

  .nav__atas_portofolio {
    width: 100%;
    float: right;
    height: auto;
    padding: 70px 0 15px;
    background: #0d1036;
  }
  
  .nav__atas_portofolio ul {
    display: none;
    margin-top: 20px;
  }
  .nav__atas_portofolio ul li {
    float: none;
  }
  .nav__atas_portofolio ul li a {
    padding: 15px;
    line-height: 20px;
  }
  .nav__atas_portofolio ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 28px;
  cursor: pointer;
  padding: 0px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
    float: right;
  }
}

/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 12%;
  /* background: #ffffff; */
}

.navigation_tracking {
  height: 11%;
  background: #0d1036;
}

.navigation_portofolio {
  height: 11%;
  background: #0d1036;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  padding-top: 10px;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}