html,
body {
}

.b-a, .bar, .bar:before, .bar:after {
	transition: all .25s;
	content: "";
	position: absolute;
	right: 0;
	height: 2px;
	width: 30px;
	border-radius: 15px;
	background-color: white;
}

.menu-collapsed {
  transition: all .25s;
  position: fixed;
  top: 10px;
  right: 0px;
  height: 36px;
  width: 36px;
  z-index: 50;
  cursor: pointer;
}
.menu-collapsed ul {
  transition: all 0s;
  position: fixed;
  left: -9000px;
}

.bar {
  position: fixed;
  right: 20px;
  top: 34px;
  z-index: 1000;
}
.bar:before {
  top: -8px;
}
.bar:after {
  top: 8px;
}

.b-a-expanded, .menu-expanded .bar:before, .menu-expanded .bar:after {
  transition: all .25s;
  top: -0px;
}

.menu-expanded {
  transition: all .25s;
  text-align: center;/*
  line-height: 500%;*/
	line-height: 21vh;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  top: 0;
  right: 0;
  background-color: rgba(17, 18, 29, 0.85);
}
.menu-expanded ul {
  transition: all 0s;
  position: relative;
  left: 0;
  z-index: 2;
}
.menu-expanded a {
  transition: all .15s;
  text-decoration: none;
  font-size: 2em;
  padding: 5px;
  color: #fff;
  display: block;
	letter-spacing: 3px;
}
.menu-expanded a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transition: all .15s;
  letter-spacing: 6px;
  color: #11121d;
}
.menu-expanded .bar {
  background-color: transparent;
  transition: all .25s;
}
.menu-expanded .bar:before {
  transform: rotate(45deg);
}
.menu-expanded .bar:after {
  transform: rotate(-45deg);
}

.row {
  padding-top: 150px;
}

h1 {
  font-size: 3em;
}

h3 {
  color: #999;
}

p {
  line-height: 160%;
  letter-spacing: 1px;
}
