* {
  padding: 0;
  margin: 0;

}

body {
  font-size: 100%;
  font-family: 'Montserrat', sans-serif;
}

#bg {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 100%;
  z-index: -100;
  overflow: hidden;
}

h2, h3, h4 {
  font-family: 'Work Sans', sans-serif;
}

/*-------------- Nav Bar ---------------*/

nav {
  width: 100%;
  height: 70px;
}

.nav-container {
  height: 100%;
  margin: 0 5% 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav-logo {
  height: 40%;
  width: auto;
}

ul {
  list-style: none;
}


.edge-item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.nav-list li {
  float: left;
  padding-left: 3rem;
}

li a {
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  padding: .5em 0 .5em 0;
  transition: all .2s ease-in-out;
}

li a:hover {
  border-bottom: 2px solid #0C74C1;
}

 a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  color: #042742;
  font-size: .8rem;
}

.nav-boxes {
  float: right;
  height: 45%;
}

.social-box, .button-box {
  float: left;
  height: 100%;
  border-radius: 5px;
  margin-right: .25em;

}

.social-box {
  background-color: rgba(12, 116, 192, .1);
  width: 31.5px;
  position: relative;
  transition: all .2s ease-in-out;
}

.social-box:hover {
  background-color: rgba(12, 116, 192, 1);
}

.social-box:hover i {
  color: #fff;
}

.button-box {
  background-color: rgba(4, 39, 66, 1);
  width: 130px;
  margin-left: 1rem;
  color: #fff;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: rgba(0,0,0,.16) 0 4px 6px;
  transition: all .2s ease-in-out;
}

.button-box:hover {
  background-color: #0C74C1;
  margin-bottom: 2em;
  box-shadow: rgba(0,0,0,.16) 0 4px 10px;
}

.fab, .fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: .9rem;
  color: #0C74C1;
  transition: all .2s ease-in-out;
}

.far {
  font-size: .9rem;
  transition: all .2s ease-in-out;
}

.dropdown-content {
  height: 0;
  max-height: 0;
  position: absolute;
  overflow: hidden;
  border-left: 2px solid #0C74C1;
  padding-left: 1em;
}

.edge-item > a:hover {
  border-bottom: 2px solid #fff;
}

.edge-item:hover .dropdown-content {
  height: auto;
  max-height: 64px;
  transition: all .2s ease-in-out;
}


footer {
  width: 100%;
  margin: 8% 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: 200;
  font-size: .85rem;
  font-family: 'Work Sans', sans-serif;
  color: #042742;
}

footer img {
  width: 10%;
  margin: 0 auto;
}
