﻿

.menu-wrap a {
	color: #333333;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #333333;
}

.content-wrap {
	overflow:hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.content {
	position: relative;
}

.content::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
	transition: opacity 0.3s, transform 0s 0.3s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

/* Menu Button */
.menu-button {
	position: absolute;
    z-index: 1000;
    margin: 20px 0px 0 0;
    padding: 10px 15px 10px 55px ;
    left: 15px;
    width: auto;
    height: auto;
    text-align: right;
    border: none;
    border-radius: 3px;
    text-indent: 0;
    font-size:18px;
    color: #ffffff;
    background: rgb(255 255 255 / 25%) url(../images/menu.png) no-repeat 15px center;
}

.menu-button::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: '';
}

.menu-button:hover {
	opacity: 1;
}

/* Close Button */
.close-button {
    width: 35px;
    height: 35px;
    position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 1001;
	background: transparent;
	color: #000000;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	right: 50%;
	background: #000;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position:fixed;
	z-index: 1001;
	width:100%;
	right:0;
	height: 100%;
	top:0;
	font-size: 1.15em;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.menu {
	background:#fff; 
	color:#333333;
	width: 100%;
	height: 100%;
	padding:100px 100px;
}

.icon-list {
	width: 360px;
	float:left;
}

.icon-list a {
	display: block;
	padding: 5px 0;
}


.icon-list a span {
    margin-left: 0px;
    text-transform: capitalize;
    letter-spacing: 0px;
    font-size: 18px;  
}

.icon-list-sub {
	width: 215px;
    margin-left: 30px;
}

.icon-list-sub a {
	display: block;
	padding: 1px 0;
}

.icon-list-sub a i {
	opacity: 1;
}

.icon-list-sub a span {
	margin-left: 10px;
	text-transform:   capitalize;
	letter-spacing: 0px;
	font-size: 16px;   
}



/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 45px;
	height: 100%;
	top: 0;
	right: 0px;
	fill:#fff;    
	transform: rotate(180deg);
	z-index: 1000;
}

/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.show-menu .content-wrap {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
	-webkit-transform: translate3d(0px,0,0);
	transform: translate3d(0px,0,0);
}

.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}