.header-mob-logo-link {
    z-index: 999;
    background-color: #19272b;
}

.burger-btn {
    z-index: 999;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
    background-color: #19272b;
    z-index: 990;
    transition: all .5s ease;
    transform: translateY(-100%);
}

.header-nav ul {
    padding: 0;
    list-style: none;
    margin: 0;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.header-nav ul li .menu-link{
    align-items: center;
    justify-content: center;
}

.mob-header-cta {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}


