@charset:"UTF-8";

@media print, screen and (min-width: 641px) {
.hamburger-menu{
    display: none;
}
}
@media screen and (max-width: 640px) {
.menu-btn {
    position: fixed;
    top: 3px;
    right: 5px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    border: 0.75px solid #eee;
    background: #fff;
    box-shadow: 0px 0px 15px -5px #eee;
}
.menu-btn span,
.menu-btn span:after {
    content: '';
    display: block;
    height: 4px;
    width: 35px;
    border-radius: 3px;
    background-color: #666;
    position: absolute;
}
.menu-btn span:before{
    content: '';
    display: block;
    height: 4px;
    width: 35px;
    border-radius: 3px;
    background-color: #666;
    position: absolute;
    bottom: 12px;
}
.menu-btn span:after {
    top:12px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 70%;
    height: 50%;
    position: fixed;
    top: 0;
    right: -300px;
    z-index: 80;
    background-color: #fff;
    transition: all 0.8s;
    opacity: 0.9;
}
#menu-btn-check:checked ~ .menu-content {
    right: 0;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    /*border-bottom: solid 1px #ffffff;*/
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    color: #4d4d4d;
    text-decoration: none;
    padding: 10px 15px 20px 0;
    position: relative;
}
.menu-content 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;
    bottom: 16px;*/
}
}
