@media screen and (max-width: 736px) {
	#header nav.show-nav-menu {
    	display: block;
    	position: fixed;
    	top: 0;
    	bottom: 0;
    	right: 0;
    	width: 200px;
    	background: rgb(255, 255, 255);
    	height: auto;
    	z-index: 100;
    	animation: fadein .7s infinite;
    	animation-iteration-count: 1; 
		padding-top: 30px; 
		cursor: pointer;
	}
	.nav-sandwich {
		position: relative;
	}
	.nav-sandwich span {
		display: block;
		position: absolute;
		height: 4px;
		width: 25px;
		right: 10px;
		background: #1FAACF;
	}
	.nav-sandwich span:nth-child(1) {
		top: 11px;
	}

	.nav-sandwich span:nth-child(2) { 
		top: 18px;
	}

	.nav-sandwich span:nth-child(3) {
		top: 25px;
	}

	#header nav ul li {
		display: block;
	    text-align: center;
	    font-size: 1.3em;
	}
	#header nav ul li a {
		display: inline-block;
	}

	.nav-sandwich {
	    position: absolute;
	    top: 0;
	    right: 0;
	}
}

@keyframes fadein {
  0% {
    background: transparent;
  }

  100% {
    background: #fff;
  }
}
