
body {
  font-family: 'Roboto', sans-serif;
  padding: 0;
  margin: 0;
}

small {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

h1 {
  text-align: center;
  padding: 50px 0;
  font-weight: 800;
  margin: 0;
  letter-spacing: -1px;
  color: inherit;
  font-size: 40px;
}

h2 {
  text-align: center;
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: inherit;
  padding: 50px;
}

.center {
  text-align: center;
}

section {
  height: 100vh;
}

/* .NAVIGATION */
.nav-top {  
  width: 100%;
  margin: 0 auto;
  /* background: #fff; */
  border-top: 2px solid #444444;
  border-bottom: 2px solid #444444;
  padding: 5px 0;
  /* box-shadow: 0px 5px 0px #dedede; */
  border-radius: .4rem;
}

.nav-top ul {
  list-style: none;
  text-align: center;
}
.nav-top ul li {
  display: inline-block;
}
.nav-top ul li a {
  display: block;
  padding: 10px 5px;
  text-decoration: none;
  color: #444444;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 2px;
  font-family: 'Roboto', sans-serif !important;
  font-size: 13px !important;
}
.nav-top ul li a,
.nav-top ul li a:after,
.nav-top ul li a:before {
  transition: all .5s;
}
.nav-top ul li a:hover {
  color: #555;
}


/* Blend */
.nav-top.blend ul li a {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  text-decoration: none !important;
}
.nav-top.blend ul li a:hover {
  color: #fff;
}
.nav-top.blend ul li a:before,
.nav-top.blend ul li a:after {
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0;
  bottom: 0;
  background: #004567;
  transition: all .4s;
  margin: auto;
  content: '.';
  color: transparent;
  z-index: -1;
  opacity: 0.8;
}
.nav-top.blend ul li a:before {
  left: 0;
}
.nav-top.blend ul li a:after {
  right: 0;
}

.nav-top.blend ul li a:hover:after,
.nav-top.blend ul li a:hover:before {
  width: 100%;
}

.menu-active, .menu-active > a {
  background:#004567;
  color:#fff !important;
  border-radius: .4rem;
}

/* Keyframes */
@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #005c94;
  }
}

/* Keyframes */
@-webkit-keyframes circle {
  0% {
    width: 1px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 1px;
    z-index: -1;
    background: #eee;
    border-radius: 100%;
  }
  100% {
    background: #aaa;
    height: 5000%;
    width: 5000%;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0;
  }
}