.mobile-menu{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0, 0.9);
    z-index: 100;
    transform: translateX(100%);
    transition: transform .5s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    box-sizing: border-box;
}

.mobile-menu.active{
    transform: translateX(0%);
    pointer-events: all;
}

.mobile-menu-btn{display: none;}

.line1{
    width: 56px;
    border: 2px solid white;
}

.line2{
    width: 36px;
    border: 2px solid white;
}

.line3{
    width: 25px;
    border: 2px solid white;
}

.close{color: white; font-size: 40px; margin-left: auto;}

.mobile-link{
    width: fit-content;
    padding: 5px 20px 5px 50px;
    color: white;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    margin-left: auto;
}

.mobile-link.active{
    font-weight: 700px;
    background: #D92570;
}

@media(max-width:768px){
    .mobile-menu-btn{display: flex; flex-direction: column; align-items: end; justify-content: center; gap: 13px;}
}