.hamburger-btn{
    width: 45px;
    cursor: pointer;
    transform: scaleX(-1);
    z-index: 5;
}

.hamburger-btn img{
    width: 100%;
    transform: scaleX(-1);
}

.hamburger-menu{
    position: fixed;
    background-color: hsl(264, 36%, 18%, 50%);
    backdrop-filter: blur(30px);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: -100%;
    z-index: 1000;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger-menu a{
    font-size: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    color: #fff;
    text-decoration: none;
}

.close-btn{
    width: 30px;
    position: absolute;
    top: 45px;
    left: 5%;
    cursor: pointer;
}

.hamburger-menu.active{
    left: 0;
}

.nav-mobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    gap: 60px;
}

.nav-mobile a{
    margin: 0;
    font-weight: 700;
    color: var(--beige);
}

.nav-mobile a::before{
    content: '';
    width: 100vw;
    height: 2px;
    background-color: var(--lightpurple);
    margin-bottom: 50px;
}

.hamburger-division{
    width: 100%;
    height: 1px;
    background: var(--white);
    margin-top: 25px;
    opacity: 50%;
}

.contact-mobile::after{
    content: '';
    width: 100vw;
    height: 2px;
    background-color: var(--lightpurple);
    margin-top: 50px;
}

