.header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: #4e0f3433;
    z-index: 999;
}

.header__desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 20px;
}

.header__desktop-logo {
    width: 150px;
}

.header__desktop-navbar ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__desktop-navbar ul li a {
    color: #fff;
    font-family: var(--josefinsans);
    font-size: 20px;
    text-decoration: none;
    transition: all 200ms linear;
}

.header__desktop-navbar ul li a:hover {
    filter: drop-shadow(0 0 1px #fff);
    -webkit-filter: drop-shadow(0 0 1px #fff);
}

.header__desktop-button {
    display: none;
}

.header__mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    overflow: hidden;
    background-color: #4a2889;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.header__mobile-logo {
    margin: 40px auto;
}

.header__mobile-navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header__mobile-navbar ul li a {
    color: #fff;
    font-family: var(--josefinsans);
    font-size: 20px;
    text-decoration: none;
    transition: all 200ms linear;
}

.header__mobile-navbar ul li a:hover {
    filter: drop-shadow(0 0 1px #fff);
    -webkit-filter: drop-shadow(0 0 1px #fff);
}

.header--divider {
    height: 80px;
}

.header--scroll {
    position: fixed !important;
    top: unset;
    left: unset;
    height: auto;
    background-color: #4a2889;
}

.header--scroll .header__desktop-logo {
    width: 100px;
}

.header--scroll .header__desktop {
    padding: 5px 0;
}

.header--intern {
    background-color: #4a2889;
}

@media screen and (max-width: 992px) {
    .header__desktop-navbar {
        display: none;
    }

    .header__desktop-button {
        display: initial;
        font-size: 32px;
        cursor: pointer;
        transition: all 200ms linear;
    }

    .header__desktop-button:hover {
        filter: drop-shadow(0 0 1px #fff);
        -webkit-filter: drop-shadow(0 0 1px #fff);
    }
}
