@charset "utf-8";
/* CSS Document */


.toggle-button {
    position: fixed;
    top: 7px;
    right: 10px;
    padding: 20px 20px;
    width: 60px;
	height: 60px;
    cursor: pointer;
    z-index: 1200;
	display: none;
}

.bar {
    background-color: #b90f00;
    display: block;
    width: 100%;
    height: 2px;
    border: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.bar + .bar {
    margin-top: 5px;
}

.middle {
    top: 11px;
}

.bottom {
    top: 22px;
}

.toggle-button:hover {
    opacity: 1;
}

.toggle-active .bar {
    background-color: #b90f00;
}

.toggle-active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
}

.toggle-active .middle {
   opacity: 0;
}

.toggle-active .bottom {
    -webkit-transform: translateY(-6px) translateX(0) rotate(-45deg);
}

.overlay {
	position: fixed;
	background-color: #ffc7d6;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	z-index: 1000;
    overflow-y: scroll;
    overflow-x: hidden;
}

.nav-active {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.overlay ul {
    display: block;
    position: relative;
    top: 40px;
    left: 0;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    list-style: none;
    padding: 0;
}

.overlay ul li {
    display: block;
	padding: 20px 0px;
	cursor: pointer;
    color: #fff;
    text-decoration: none;
}

.overlay-st {
    color: #b90f00;
}

.overlay-community {
	width: 60%;
	display: flex;
	justify-content: center;
	border-top: 1px solid rgba(185, 15, 0, 0.1);;
	margin: 80px auto 0 auto;
	padding-top: 40px;
    padding-bottom: 60px;
}

.overlay-community > div {
	width: 30px;
	height: 30px;
	margin-right: 30px;
    cursor: pointer;
}

.overlay-community > div:last-child {
	margin-right: 0px;
}


@media screen and (max-width: 1200px) {

.toggle-button {
	display: block;
}

}


@media screen and (max-width: 400px) {

.overlay ul li {
	padding: 16px 0px;
}

.overlay-community {
	margin: 65px auto 0 auto;
	padding-top: 32px;
}

}