html, 
body, 
.container, 
.content-wrap {
	overflow: hidden!important;
	width: 100%;
	height: 100%;
}

.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.content {
	position: relative;
	background: #b4bad2;
}

/* Overlay */
.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: fixed;
	z-index: 1000;
	margin: 1em;
	padding: 0;
	width: 2.5em;
	height: 2.25em;
	border: none;
	text-indent: 2.5em;
	font-size: 1.5em;
	color: transparent;
	background: transparent;
}

.menu-button::before {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	bottom: 0.5em;
	left: 0.5em;
	background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
	content: '';
}

.menu-button:hover {
	opacity: 0.6;
}

/* Close Button */
.close-button {
	width: 1em;
	height: 1em;
	position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 1em;
	border: none;
	background: transparent;
	color: transparent;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #b8b7ad;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap-nav,
.menu-wrap-sou,
.menu-wrap-contato {
	position: fixed;
	z-index: 1001;
	width: 320px;
	height: auto;
	background: #fdfdf8;
	color: #333;
	padding: 2em;
}

.menu-wrap-nav {
	-webkit-transform: translate3d(-320px,320px,0);
	transform: translate3d(-320px,320px,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
    left: 0;
    bottom: 0;
}

.menu-wrap-sou {
	-webkit-transform: translate3d(320px,-320px,0);
	transform: translate3d(320px,-320px,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
    right: 0;
    top: 0;
}

.menu-wrap-sou .texto { display: none; }
.menu-wrap-sou .texto.active { display: block; }

.menu-wrap-sou .language {
    font-size: .7rem;
    letter-spacing: 1px;
    font-weight: 100;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.menu-wrap-sou .language span {
    cursor: pointer;
}

.menu-wrap-sou .language span.active {
    font-weight: 700;
}

.menu-wrap-contato {
	-webkit-transform: translate3d(320px,320px,0);
	transform: translate3d(320px,320px,0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
    right: 0;
    bottom: 0;
}

.menu-wrap-contato form {
    width: 100%;
}

.menu-wrap-contato input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding: .5em;
    outline: none;
}

.menu-wrap-contato input:focus {
    border-bottom: 1px solid #555;
}

.menu-wrap-contato form button,
.menu-wrap-contato textarea {
    width: 100%;
    border: 1px solid #999;
    margin-bottom: 30px;
    padding: .5em;
    outline: none;
}

.menu-wrap-contato form button {
    margin:0;
    background: transparent;
    -webkit-transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
}

.menu-wrap-contato form button:focus,
.menu-wrap-contato textarea:focus {
    border: 1px solid #555;
}

.menu-wrap-contato form input:focus,
.menu-wrap-contato form textarea:focus,
.menu-wrap-contato form button:focus,
.menu-wrap-contato form button:hover {
    -webkit-transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
}

.menu-wrap-contato form button:hover {
    background:#555;
    color:#fdfdf8;
}

.menu-wrap-contato a svg { 
    width:1rem; 
    height:1rem;
    vertical-align: bottom;
}

.menu-wrap-contato a svg path { 
    -webkit-transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
}

.menu-wrap-contato a:hover svg path { 
    fill:#555;
    -webkit-transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all .2s cubic-bezier(0.97, 0, 0.395, 0.97);
}

.profile {
	display: inline-block;
	line-height: 42px;
	margin-bottom: .5em;
    font-weight: 700;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 3px;
    font-size: 1.3rem;
}

.icon-list a {
	display: block;
	color: #999;
    opacity: .7;
	font-weight: 700;
	padding: 0.8em 0.55em;
}

.icon-list a:hover,
.icon-list a:focus {
	color: #555;
    opacity: 1;
}

.icon-list a span {
	margin-left: 10px;
}

/* Shown menu */
.show-menu-nav .menu-wrap-nav,
.show-menu-sou .menu-wrap-sou,
.show-menu-contato .menu-wrap-contato {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.show-menu-nav .content-wrap {
	-webkit-transform: translate3d(100px,-200px,0);
	transform: translate3d(100px,-200px,0);
}

.show-menu-sou .content-wrap {
	-webkit-transform: translate3d(-200px,100px,0);
	transform: translate3d(-200px,100px,0);
}

.show-menu-contato .content-wrap {
	-webkit-transform: translate3d(-200px,-100px,0);
	transform: translate3d(-200px,-100px,0);
}

.show-menu-nav .content::before,
.show-menu-sou .content::before,
.show-menu-contato .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

body.show-menu-nav .content,
body.show-menu-sou .content,
body.show-menu-contato .content {
    pointer-events: none;
}

.menu-nav {
    width: 50px;
    height: 50px;
    border: 1px solid #999;
    margin: 100px auto 0;
    cursor: pointer;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    margin: 2em;
    z-index: 999;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);   
}
.menu-nav:hover {
    border-color: #555;
}
.menu-nav:hover .hamburger-wrap {
    
}
.menu-nav:hover .hamburger-wrap span {
    -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

.hamburger-wrap {
    width: 34px;
    height: 34px;
    padding-left: 10px;
    padding-top: 10px;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
}
.hamburger-wrap span {
    width: 28px;
    height: 5px;
    display: block;
    margin-top: 3px;
    /* background-color: #9F7F5E; */
    background-color: #999;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
}
.hamburger-wrap span:nth-of-type(1) {
    -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.hamburger-wrap span:nth-of-type(2) {
    -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.hamburger-wrap span:nth-of-type(3) {
    -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.hamburger-wrap span:before {
    width: 28px;
    height: 5px;
    margin-top: 3px;
    display: block;
    content: '';
    background-color: #555;
    -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.menu-sou,
.menu-contato {
    position: absolute;
    margin: 2em;
    z-index: 999;
    cursor: pointer;
    border: 1px solid #999;
    color: #999;
    padding: 1em;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);   
}

.menu-sou:hover,
.menu-contato:hover {
    border: 1px solid #555;
    color: #555;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);   
}

.menu-sou {
    right:0
}

.menu-contato {
    right:0;
    bottom: 0;
}

.menu-sou p,
.menu-contato p { margin: 0; }

.menu-sou svg path,
.menu-contato svg path,
.menu-sou svg circle,
.menu-contato svg circle { 
    fill:#999;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);   
}

.menu-sou:hover svg path,
.menu-contato:hover svg path,
.menu-sou:hover svg circle,
.menu-contato:hover svg circle { 
    fill:#555;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);   
}