* {
  outline: none;
}

strong {
  font-weight: 600;
}

.page {
	width: 100%;
	height: 100vh;
	background: #fdfdfd;
	font-family: 'Quicksand', sans-serif;
	font-weight: 600;
	letter-spacing: .03em;
	color: #212121;
}

/* header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 70px;
  background: #212121;
  color: #fff;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
} */

main {
	padding: 70px 20px 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

main > div {
	margin: auto;
	max-width: 600px;
}

main h2 span {
  	color: #BF7497;
}

main p {
	line-height: 1.5;
	font-weight: 200;
	margin: 20px 0;
}

main small {
	font-weight: 300;
	color: #888;
}

/* #nav-container {
    position: absolute;
    height: 96vh;
    width: 100%;
    pointer-events: none;
    z-index: 99999;
} */

#nav-container {
    position: absolute;
    min-height: 100%!important;
    width: 100%;
    pointer-events: none;
    z-index: 99999;
    top: -12px;
}

#nav-container .bg {
    position: absolute;
    top: 89px;
    left: 0;
    width: 100%;
    min-height: 102vh;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    background: #000;
}

#nav-container.open .bg {
	visibility: visible;
	opacity: .6;
}

#nav-container * {
  	visibility: visible;
}

.button {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	border-radius: 0;
	height: 70px;
	width: 30px;
	cursor: pointer;
	pointer-events: auto;
	margin-left: 25px;
	margin-top: 22px!important;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #202020;
  transition: .3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}

#nav-container.open .icon-bar:nth-of-type(1) {
  transform: translate3d(0,8px,0) rotate(45deg);
}
#nav-container.open .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container.open .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-45deg);
}

#nav-content {
    margin-top: 89px;
    padding: 110px 20px 0 20px;
    width: 90%;
    max-width: 400px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
	  min-height: 102vh;
    background: #fff;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transform: translateX(-100%);
    transition: transform .3s;
    will-change: transform;
    contain: paint;
}

/* #nav-content {
    margin-top: 89px;
    padding: 60px 20px 0 20px;
    width: 90%;
    max-width: 400px;
    position: absolute;
    top: 0;
    left: 0;
	bottom: 0;
    height: calc(100% - 27px);
    background: #ececec;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transform: translateX(-100%);
    transition: transform .3s;
    will-change: transform;
    contain: paint;
} */

#nav-content ul {
  height: 100%;
  padding-left: 20px;
}

#nav-content li a {
  padding: 10px 5px;
  display: block;
  text-transform: uppercase;
  transition: color .1s;
}

#nav-content li a:hover {
  color: #BF7497;
}

#nav-content li:not(.small) + .small {
  margin-top: auto;
}

.small {
  display: flex;
  align-self: center;
}

.small a {
  font-size: 12px;
  font-weight: 400;
  color: #888;
}
.small a + a {
  margin-left: 15px;
}

#nav-container.open #nav-content {
  transform: none;
}
#nav-content .dropdown-menu {
  position: relative;
  top: 100%;
  left: 0px;
  z-index: 1000;
  /* float: left; */
  min-width: 100%;
  padding: 5px 0;
  margin: 2px 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: none;
}
#nav-content .dropdown-menu>li>a {
  display: block;
  padding: 6px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
}