#menu-btn-check {
	display:none;
}

@media screen and (min-width: 769px) {
	header {
		display:flex;
		justify-content:space-between;
	}
	
	nav, menu-main-menu-container { width:100%;}
	
	nav ul{
		width:100%;
		display:flex;
		justify-content:flex-start;
	}
	
	nav ul li:last-child { display:none;}
	

	nav ul li a {
		text-decoration:none;
		color:#fff;
		display:block;
		min-width: min-content;
		margin: 5px;
		padding: 15px 15px;
		font-size:16px;
		letter-spacing:.1em;
		text-align:center;
		font-family:"navigate";
		line-height:1em;
	}
	
	.jpt{ font-size:11px;}
	
	nav ul li a:hover {
		color: rgba(255,180,255,.9);
	}
	
}


@media screen and (max-width: 768px) {
nav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

#menu-btn-check { display: none;}
.menu-btn {
    position: absolute;
    top: 15px;
    right: 10px;
    display: flex;
    height: 32px;
    width: 32px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color:#222;
	cursor: pointer;
	
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #f00;
    position: absolute;
	transition: all 0.5s;
}

#menu-btn-check:checked ~ .menu-btn span {
  background: rgba(255, 255, 255, 0);
}


#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 0.5s;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.5s;
}

.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

.menu-main-menu-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-image: linear-gradient(0, var(--color1), var(--color2));
     transition: background-image 1s ease-in-out;
}
.menu-main-menu-container ul {
    padding: 70px 10px 0;
}
.menu-main-menu-container ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-main-menu-container ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-main-menu-container ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
	
.menu-main-menu-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgba(187,0,170,.9);
    transition: all 0.5s;
	font-weight:bold;
}

#menu-btn-check:checked ~ .menu-main-menu-container {
    left: 0;
}


}