/* off-screen-menu */
.off-screen-menu {
    background-color: #333;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    transition: .3s ease;
    z-index: 99;
}
.off-screen-menu.active {
    right: 0;
}
.off-screen-menu.active ul li a {
    color: #fff;
}

a.off-link {
    color: #fff !important;
}

/* nav */
nav {
    display: flex;
    /* background-color: #fff; */
}

/* ham menu */
.ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
    z-index: 99;
    cursor: pointer;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.off-screen-menu ul {
    padding-left: 0;
}
.off-screen-menu ul li {
    list-style-type: none;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active {
    position: fixed;
    top: 1rem;
    right: 1rem;
}
.ham-menu.active span {
    background-color: white;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width:1024px) {

}

@media (max-width: 1024px) {

}