.side-menu h1{
	width: 80%;
	margin: 0 auto 30px auto;
}

.side-open .wrapper,
.side-open .overlay {
	-webkit-transform: translate3d(-240px, 0, 0);
	transform: translate3d(-240px, 0, 0);
}

.overlay {
	content: '';
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 3;
}

.side-open .overlay {
	visibility: visible;
	cursor: pointer;
	/*background: rgba(0,0,0,.7);*/
}

.overlay::after {
	visibility: hidden;
	position: fixed;
	top: 40%;
	left: 0;
	display: block;
	width: 100%;
	height: 50px;
	color: rgba(255,255,255,0);
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.side-open .overlay::after {
	visibility: visible;
	color: rgba(255,255,255,.8);
}
/* --------------------------------------------------- btn */
.btn__box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.btn__box a {
	display: block;
	width: 198px;
	height: 38px;
	margin: 0 auto;
	line-height: 40px;
	font-size: 13px;
	color: #1a1e24;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	border: 1px solid #1a1e24;
}

.btn__box a:hover {
	color: #fff !important;
	background: #1a1e24;
}

.btn__box--svg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 214px;
	height: 54px;
	margin: auto;
	z-index: -1;
}

.btn__box--svg rect {
	fill: transparent;
	stroke: #1a1e24;
	stroke-width: 1px;
	stroke-dasharray: 242px;
	stroke-dashoffset: 256px;
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.btn__box a:hover + .btn__box--svg rect {
	stroke-width: 2px;
	stroke-dasharray: 600px;
	stroke-dashoffset: 0;
}

/* --------------------------------------------------- side menu */
.side-menu {
	position: fixed;
	top: -50px;
	right: 0;
	box-sizing: border-box;
	width: 240px;
	height: 100%;
	padding-top: 70px;
	text-align: left;
	font-size: 13px;
	background: #fff;
	z-index: 1;
}

.side-menu__ul {
	width: 100%;
}
.side-menu__ul li{
	width: 100%;
	border-bottom: 1px solid #eee;
	padding: 15% 35% 15% 15%;
	box-sizing: border-box;
	line-height: 0;
}
.side-menu__ul li:nth-child(6){
	width: 100%;
	padding: 15% 35% 15% 15%;
	box-sizing: border-box;
	background: #008b34;
}
.side-menu__ul li:nth-child(7){
	width: 100%;
	padding: 10% 35%;
	box-sizing: border-box;
	border-bottom: none;
}













