.mobileHeaderWrapper {
    display: none;
}

#mobile-header-icon {
    width: 50px;
    height: 25px;
    position: absolute;
    top: 25px;
    right: 50px;
    z-index: 3;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

#mobile-header-icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: var(--color-yellow);
    border-radius: 5px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#mobile-header-icon span:nth-child(1) {
    top: 0;
}

#mobile-header-icon span:nth-child(2),#mobile-header-icon span:nth-child(3) {
    top: 10px;
}

#mobile-header-icon span:nth-child(4) {
    top: 20px;
}

#mobile-header-icon.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

#mobile-header-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}

#mobile-header-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}

#mobile-header-icon.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

.menuItemsWrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-dark-green);
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2;
    text-align: center;
}

.menuItemsWrapper.menuOpen {
    transform: translateX(0);
}

.menuItemsWrapper ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menuItemsWrapper ul li {
    margin: 15px 0;
    display: block;
}

.menuItemsWrapper ul li a {
    color: var(--color-light);
    font-size: 30px;
    font-family: Nunito, sans-serif;
}

.menuItemsWrapper ul li a:visited {
    color: var(--color-light);
}

@media screen and (max-width: 1000px) {
    .mobileHeaderWrapper {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    #mobile-header-icon {
        top: 20px;
        right: 15px;
    }
}
