/* GLOBAL CSS */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

* {
  box-sizing: border-box;
}

.img,
.img img {
  display: block;
}

.img img {
  max-width: 100%;
}

.h1-reset,
.h2-reset,
.h3-reset,
.h4-reset,
.h5-reset,
.h6-reset {
  font-weight: 400;
  line-height: 1em;
  margin: 0;
}

.p-reset {
  line-height: 1em;
  margin: 0;
}

.ul-reset,
.ol-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.a-reset {
  color: inherit;
  text-decoration: none;
}

.button-reset {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.text-center {
  text-align: center;
}

/*----- MOBILE NAV -----*/
.mobile-nav {
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transform: translateX(-200px);
  transition: all ease-out .25s;
  width: 200px;
}

body.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  transform: translateX(0);
}

#wrapper {
  transition: transform ease-out .25s;
}

.mobile-nav-active #wrapper {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .15);
  transform: translateX(200px);
  transform-origin: center;
  overflow: hidden;
}