.header {
    background-color: #131313;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 999999;
    padding: 20px var(--padding);
}

.header .header-wrapper {
    padding: 0;
}

.header .left-side {
    column-gap: 15px;
}

.header .hamburger {
    cursor: pointer;
    position: relative;
    z-index: 9999;
}

.header .hamburger svg path {
    transition: all 500ms ease;
}

.header .header-link {
    color: #FFF;
    font-family: 'Poppins-Regular';
    font-size: 20px;
}

.header .header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-menu {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #131313;
    z-index: 999;
    transform: translateX(-100%);
    transition: all 700ms ease;
}

.header-admin .header-menu {
    width: auto;
}

.header-menu.active {
    transform: none;
}

.header-menu .header-menu-container {
    padding: 70px;
}

.header-menu .menu-link {
    color: #FFFFFF;
    font-family: 'Poppins-Black';
    font-size: 50px;
    line-height: 1.4;
    transition: all 500ms ease;
}

.header-menu .menu-link:hover {
    color: #00D1CD;
}

.header .get-started {
    color: #fff;
    opacity: 0.8;
}

.header .get-started::before {
    border: 3px solid #fff;
}

.header .get-started:hover {
    box-shadow: none;
    color: #fff;
    opacity: 1;
}

@media screen and (max-width: 989px) {

    .header-menu-wrapper {
        row-gap: 10px;
    }

    .header-menu .menu-link {
        font-size: 30px;
    }

    .header .get-started {
        width: fit-content;
    }

    .header .header-wrapper {
        padding: 0;
    }

    .header .get-started {
        box-shadow: none;
        color: #fff;
        opacity: 1;
    }
}