*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

.sticky-wrap {
/* Change z-index to 20 to ensure it is always at the top */
  z-index: 20;
  position: relative;
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem;
  transition: 0.2s ease all;
  width: 100%;
}
.nav a {
  color: white;
  text-decoration: none;
}
.nav__item {
  padding: 0 0.5rem;
}
.nav__sub-item {
  padding: 0.5rem;
  text-align: center;
}
.nav--primary, .nav--secondary {
  color: white;
}
.nav--primary {
  background-color: #fff;
  padding: 1.3rem 3rem;
  position: fixed;
}
.nav--secondary {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  background-color: #596781;
}
.nav__items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  width: initial;
  left: 20%;
  right: 20%;
  top: initial;
  list-style: none;
}
.nav__items--secondary {
  margin: 0;
  padding: 0.7rem 0;
  bottom: 0;
  width: 100%;
  left: 0;
  position: relative;
  transition: padding 0.3s ease;
}

.nav-fixed--secondary {
  position: fixed;
  bottom: auto;
  background-color: #596781;
}
.nav-fixed--secondary .nav__items--secondary {
  padding: 1rem 0;
}


.hero__content {
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 25rem;
  font-size: 7em;
  text-align: center;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 400px) {
  .hero__content {
    font-size: 3em;
    padding: 70% 20%;
  }
}

.content-wrap {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 1000px;
  font-size: 7em;
}
@media only screen and (max-width: 400px) {
  .content-wrap {
    font-size: 3em;
  }
}

.obi {
  padding: 5% 25%;
}
@media only screen and (max-width: 400px) {
  .obi {
    padding: 5%;
  }
}





