.sk-custom-nav-wrap{
    padding: 56px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    height: 100vh;
    transform: translateX(-100%);
    position: fixed !important;
    top: 0;
    left: 0;
    transition: all 0.5s linear;
    z-index: 99;
    background-color: black;
}
.sk-custom-nav-options{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

.sk-custom-nav-options a{
    font-size: 16px;
    opacity: 0.6;
}
.sk-custom-nav-options a:hover{
    opacity: 1;
}
.sk-custom-nav-burger-wrap{
    margin: 0 25% 0 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.sk-custom-nav-wrap a{
    text-decoration: none;
    color: white;
    grid-column: 1;
}

.sk-custom-nav-wrap a:hover{
    cursor: pointer;
}

.sk-custom-nav-burger-open{
    grid-column: 2;
}

.sk-custom-nav-burger, 
.sk-custom-nav-burger-open{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sk-custom-nav-burger div,
.sk-custom-nav-burger-open div{
    width: 35px;
    height: 3px;
    background-color: aliceblue;
}

@media screen and (min-width: 767px) {
    .sk-custom-nav-wrap{
        padding: 0;
        flex-direction: row;
        width: 100%;
        height: 100%;
        justify-content: center;
        gap: 5%;
        transform: translateX(0);
        position:relative !important;
        background-color: none;
    }
    
    .sk-custom-nav-options{
        display: contents;
    }

    .sk-custom-nav-options a{
        font-size: 25px;
    }

    .sk-custom-nav-burger-wrap,
    .sk-custom-nav-burger{
        display: none;
    }
}

.sk-nav-slide-right{
    transform: translateX(0);
}