@import "main.css";

.sb-menu-main-grid {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    background-color: var(--main-color);
}

.sb-menu-top-txt {
    width: 80vw;
    position: sticky;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    font-weight: 200;
    line-height: 2.5ch;
    font-size: 1.2em;
    color: white;
    text-align: center;
}

.sb-menu-icon-wrap {
    width: 90%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sb-menu-img-wrap-soc {
    margin-top: 10vh;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    width:12vw;
    height:12vw;
    display: flex;
    border: solid 1px white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 1px;
}

.sb-menu-img-wrap-menu {
    margin-top: 10vh;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    width:12vw;
    height:12vw;
    display: flex;
    border: solid 1px white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 1px;
}

.sb-menu-img {
    width: 11.5vw;
    position: absolute;
    /* z-index: 2; */
    transition: 0.5s ease-in-out;
}

.sb-menu-img:hover {
    width: 10vw;
}

.sb-menu-logo {
    position: absolute;
    z-index: 1;
    width: 4vw;
}

.sb-menu-circdot-wrap{
    width: 14vw;
    height: 14vw;
    position: absolute;
    color: white;
}

.svg-wrap {
    position:absolute;
    width: 14vw;
    height: 14vw;
}

/* navbar css */
.sb-menu-navbar-wrap {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 90px;
    font-size: 1.2em;
    height: 30px;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 4;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}

.sb-menu-nav-icons {
    cursor: pointer;
    transition: 0.3s ease-out;
}

.sb-menu-nav-icons:hover {
    color: #aaaaaa;
}

.sbmn-main {
    width:100%;
    height: 85%;
}

.sbmain-menu-close {
    width: 0;
    z-index: 1;
    left:-25vw;
    position: absolute;
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
}

.sbmain-menu-open {
    width: 25vw;
    position: absolute;
    left:0vw;
    z-index: 1;
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
}

.sbmn-menu-open-wrap {
    background-color: white;
    /* top: 0px; */
    /* left:0px; */
    font-size: 1.2em;
    font-weight: 300;
    width: 25vw;
    height:100vh;
    display: flex;
    flex-direction: column;
    /* z-index: 4; */
    justify-content: flex-start;
    align-items: center;
    padding-top: 10vh;
}

.sbmn-menu-open-item-l1 {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: josephine;
    text-align: center;
    display: flex;
    font-weight: 300;
    justify-content: flex-end;
}

.sbmn-l1-txt-acc {
    /* display: inline-block; */
    width: 80%;
    /* cursor: pointer; */
    /* vertical-align: -webkit-baseline-middle; */
    padding: 5px 0px 5px 0px;
    /* text-align: center; */
    /* transition: 0.1s; */
}

.sbmn-l1-txt-acc:hover {
    font-weight: 400;
}

.sbmn-l1-txt-acc:active {
    color:#999999;
}

.sbmn-grth-acc {
    width: 10%;
    opacity: 0;
    padding: 5px 0px 5px 0px;
    /* transition: 0.1s ease-out; */
}

.sbmn-grth-acc:hover {
    color: white;
    border-radius: 20px 0 0 20px;
    background-color: var(--main-color);
}

.sbmn-grth-acc:active {
    color: var(--accent-color);
}


.sbmn-menu-open-l2-wrap {
    width: 100%;
    padding-bottom: 7px;
    padding-top: 7px;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sbmn-menu-open-item-l2 {
    /* width: 80%; */
    padding-top: 4px;
    padding-bottom: 4px;
    /* transition-duration: 0.1s; */
}

.sbmn-menu-open-item-l2:hover {
    font-weight: 400;
    color: var(--accent-color);
}

.sb-menu-extra-navbar-wrap {
    display: flex;
    width:max-content;
    height: 100vh;
}

.sbmn-menu-footnote {
    /* position: relative; */
    bottom: 2px;
    color: gray;
    font-size: 0.7em;
}

.sub_landing_svg {
    position: absolute;
    width:100vw;
    height: 100vh;
    left:0;
    top:0;
    background-color: transparent;

    z-index: 0;
    
}


@media (max-width: 600px) {

    .sb-menu-main-grid {
        width: 100vw;
        height: max-content;
        padding-bottom: 20vh;
        padding-top: 15vh;
    }

    .sb-menu-top-txt {
        width: 80vw;
        height: auto;
    }

    .sb-menu-icon-wrap {
        width: 90%;
        height: auto;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: center;
    }

    
    .sb-menu-img-wrap-soc {
        width:40vw;
        height:40vw;
        /* margin-top: 5vh; */
        display: flex;
    }

    
    .sb-menu-img-wrap-menu {
        width:40vw;
        height:40vw;
    }
    
    .sb-menu-img {
        width: 38vw;
    }
    
    .sb-menu-img:hover {
        width: 37vw;
    }
    
    .sb-menu-logo {
        width: 20vw;
    }
    
    .sb-menu-circdot-wrap{
        width: 48vw;
        height: 48vw;
    }
    
    .svg-wrap {
        width: 48vw;
        height: 48vw;
    }

    /* ----------------------------------- */

    .sbmain-menu-close {
        width: 0;
        z-index: 1;
        left:-100vw;
        height: 100vh;
    }
    
    .sbmain-menu-open {
        width: 100vw;
        height: 100vh;
        left:0vw;
        z-index: 1;
    }
    
/*     
    .sbmain-menu-open {
        width: 100vw;
        height: 100vh;
    } */
    
    .sbmn-menu-open-wrap {
        top: 0px;
        left:0px;
        font-size: 1.1em;
        width: 100vw;
        height:100vh;
        justify-content: flex-start;
        padding-top: 10vh;
    }
    
    .sbmn-menu-open-item-l1 {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .sub_landing_svg {
        display: none;
    }
    


}