	<style class="cp-pen-styles">
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.navOpen {
  overflow: hidden;
}
.wrapper {
  transition-duration: 0.5s;
  transition-timing-function: swing;
  width: 100%;
  position: relative;
  padding: 70px 0 10px;
  background: #CFDEF3; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #CFDEF3, #E0EAFC); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #CFDEF3, #E0EAFC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        
}
.wrapper.open {
  transform: translateX(250px) translateY(50px);
  -webkit-transform: translateX(250px) translateY(50px);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}
.wrapper section {
  margin: 0 auto;
}
.openNav {
  transition-duration: 0.5s;
  transition-timing-function: swing;
  width: 50px;
  height: 50px;
  background-color: #105a7b;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9;
}
.openNav:hover {
  cursor: pointer;
}
.openNav .icon {
  transition-duration: 0.2s;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: white;
  top: 24px;
  left: 10px;
}
.openNav .icon:before,
.openNav .icon:after {
  transition-duration: 0.5s;
  background-color: white;
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  left: 0px;
}
.openNav .icon:before {
  top: -7px;
}
.openNav .icon:after {
  top: 7px;
}
.openNav.open {
  transform: translateX(250px) translateY(50px);
  -webkit-transform: translateX(250px) translateY(50px);
}
.openNav.open .icon {
  background-color: transparent;
}
.openNav.open .icon:before,
.openNav.open .icon:after {
  top: 0;
}
.openNav.open .icon:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.openNav.open .icon:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
nav {
  background-color: #105a7b;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}
nav ul {
  width: 250px;
  margin-top: 50px;
}
nav ul img {
	width: 40%;
	display: block;
	margin: 2% 0 10% 20%;
}
nav ul .title {
	color: white;
	margin: 2% 0 10% 20%;
}
nav ul li {
	margin-left: -10%;
	margin-bottom: 6%;
	color: white;
	width: 100%;
	list-style: none;
	display: table;
	border: 1px solid white;
	cursor: pointer;
  transition-duration: 0.25s;
  letter-spacing: 0.02em;
}
nav ul .dms {
	background: #36D1DC;
    text-transform: uppercase;
    font-weight: bold;
    background: #d9e800;
    background-image: linear-gradient(to bottom, #d9e800 0, #cfdc00 100%);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.3);
    color: #333;
    text-align: center;
    border: 0;
    cursor: pointer;
    border-radius: 3px;
}
nav ul li:hover {
  opacity: 0.4;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
nav ul li a {
  color: inherit;
  display: table-cell;
  height: 55px;
  vertical-align: middle;
  cursor: pointer;
  padding: 0 15%;
}
nav ul li a:hover {
  text-decoration: none;}	
</style>