/* ! NAV ICONS  */

div.icon-div svg {
    display: none;
    cursor: pointer;
}

/* ! NAV ICONS END  */

div#menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 30vw;
    height: 100vh;
    background-color: rgb(7, 14, 33);
    padding: 30px;
    z-index: 0;
}

.menuexpand {
    animation-name: menuexpand;
    animation-duration: 1100ms;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes menuexpand {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}

div#menu ul {
    z-index: 3;
}

div#menu ul li {
    list-style: none;
    color: white;
    font-size: 50px;
    font-family: sans-serif;
    transition: all 0.2s ease-out;
    font-weight: 550;
    text-transform: uppercase;
    display: flex;
    margin-top: 10px;
}

div#menu ul li:hover {
    transform: translateX(10px);
}

div#menu ul a {
    text-decoration: none;
}

li::before {
    content: '';
    position: absolute;
    left: 0px;
    transition: all 0.3s ease;
}

li:hover::before {
    content: '·';
    left: -25px;
}

div.circle {
    position: absolute;
    top: -130px;
    right: -130px;
    transform: translateX(100%);
    background-color: blue;
    width: 30vw;
    aspect-ratio: 1/1;
    border-radius: 1000px;
}

div#firstcircle {
    background-color: rgba(13, 102, 153, 0.842);
    top: -110px;
    right: -110px;
    z-index: 1;
}

div#secondcircle {
    background-color: rgba(39, 67, 142, 0.745);
    z-index: 2;
    opacity: 0.9;
}

.expand {
    animation-name: expand;
    animation-duration: 1300ms;
    animation-fill-mode: forwards;
}

@keyframes expand {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0%);
    }
}

div#BUTTONDIV {
    margin-top: 50%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    right: 10px;
}

div#BUTTONDIV a {
    text-decoration: none;
}

div#BUTTONDIV a button {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 10/4;
    cursor: pointer;
    border-radius: 5000px;
    background-color: transparent;
    border: 1px solid blue;
    color: blue;
    font-size: 16px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-family: monospace
}

div#BUTTONDIV a button:hover {
    color: black;
    background-color: cyan;
}

@media (0px <=width <=1100px) {

    div.icon-div svg#barsicon {
        display: flex;
    }
    
    div.icon-div svg#crossicon {
        display: none;
    }
}

@media (0px <=width <=1200px) {
    div#menu {
        width: 40vw;
    }

    div.circle {
        width: 35vw;
    }
}

@media (0px <=width <=1000px) {
    div#menu {
        width: 50vw;
    }

    div.circle {
        width: 35vw;
    }
}

@media (0px <=width <=800px) {
    div#menu {
        width: 60vw;
    }

    div.circle {
        width: 50vw;
    }
}

@media (0px <=width <=700px) {
    div#menu {
        width: 90vw;
    }

    div.circle {
        width: 80vw;
    }
}

@media (0px <=width <=600px) {
    div#menu {
        width: 100vw;
    }

    div.circle {
        width: 80vw;
    }
}

@media (0px <=width <=350px) {
    div#menu {
        width: 100vw;
        height: 100vh;
    }

    div.circle {
        width: 80vw;
    }

    div#menu ul li {
        font-size: 35px;
    }

    div#BUTTONDIV a button {
        padding: 2px 5px;
        width: 80px;
        font-size: 13px;
    }
}