@charset "utf-8";
/* CSS Document */

/* OPEN / CLOSE BTNS */

.box-spmenu{ display:none;}
.spmenu{ display:none;}


/* RESPONSIVE */

@media screen and (max-width: 768px) {
	
.box-spmenu{ display:block; width:100%; height:60px; background-color:#301D02; text-align: left;}
.menu-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 999;
    display: none;
    font-size: 32px;
	display:inline;
	/*background-color:#301D02;*/
}
.menu-btn a {
    display: inline-block;
    text-decoration: none;
}
.btn-open:after {
    color: #F3DDB9;
	content: "\e5d2";
	font-family: 'Material Icons';
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}

.btn-open:hover:after {color: #F3DDB9;}

.btn-close:after {
    color: #fff;
	content: "\e5cd";
	font-family: 'Material Icons';
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}

.btn-close:hover:after { color: #fff;}


/* OVERLAY */

.overlay {
    position: fixed;
    top: 0;
    z-index: 99;
    display: none;
    overflow: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #301D02;
	opacity:0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}

.spmenu {
    width: 100%;
    height: 100%;
	display:inline;
}

.spmenu ul {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.spmenu li {
    display: table;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 20%;
    list-style: none;
    text-align: center;
    -webkit-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition-property: all .2s linear 0s;
}

.spmenu li a {
    display: table-cell;
    color: #fff;
    vertical-align: middle;
	font-family: 'Quattrocento', serif;
	/*font-family: 'Marcellus', serif;*/
	text-decoration:none;
	font-size:26px;
	border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

.spmenu li a:last-chird{ border-bottom:0px;}

.spmenu li:hover {
	background: #584931;
}

}
@media screen and (max-width: 480px) {

}
