body {
  color: #333;
}
.fa-times {
    font-size: 30px;
    color: #fff;
    float: right;
}

/** prototype styles **/

#site-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%; /* Temp: Simulates a tall page. */
}
#site-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
  transition: 300ms ease all;
  backface-visibility: hidden; 
}
.show-nav #site-canvas {
  transform: translateX(300px);
  transform: translate3d(300px, 0, 0);
}
#site-menu {
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -300px;
  background: #E1DBCE;
  padding: 15px;
  padding-right: 50px;
  text-decoration: none;
}

.module-title {
  color: #fff;
}

.module-title-orange {
  color: #ffb400;
}

.module-title-dark {
  color: rgb(41,44,47);
}

.side-menu a{
  color: #292c2f;
}
.side-menu a:hover{
  color: #ffb400;
}

.fa-times {
  color: #292c2f;
}
.fa-times:hover {
  color: #ffb400;
}

.white-text-paragraph {
  color: #fff;
}

.proposal-btn {
  margin-top: 25px;
  color: #fff;
  background-color: rgb(41,44,47);
}

.proposal-btn:hover {
  color: rgb(41,44,47);
  background-color: #ffb400;
}

.orange-bullet {
  color: #ffb400;
}

.normal-text-white {
  color: #fff;
}

.side-menu li a{
  width: 100%;
  font-size: 1.2em;

}
.side-menu {
  list-style: none;
}


.fancy-hr {
  color: #ffb400;
  background-color: #ffb400;
}