.header {
    position: fixed;
    min-height: 90px;
    width: 100%;
    padding: .5rem;
    background-color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 10px rgb(58, 58, 58);
    z-index: 10;
}

.default-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hamburger-btn {
    cursor: pointer;
    padding: 0.5rem;
    border: 2px solid transparent;
    margin-left: auto;
    transition: 0.4s;
}

.hamburger-btn:active {
    border-color: rgb(44, 44, 159);
}

.hamburger-btn .line {
    width: 35px;
    height: 4px;
    background-color: rgb(44, 44, 159);
}

.line + .line {
    margin-top: 8px;
}

.menu-logo {
    display: none;
}

.menu-container {
    height: 0;
    overflow: hidden;
    transition: 0.4s;
}

.menu {
    padding: 1rem;
}

.menu-list a {
    color:rgb(44, 44, 159);
    display: block;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-list li {
    margin-bottom: 1rem;
}

.header .scroll-link {
    position: relative;
}

.header .scroll-link.active {
    font-weight: 700;
}

.header .scroll-link.active::after {
    content: url('../images/pseudo.png');
    position: absolute;
    bottom: 0;
}

/************************ Media Queries *************************/

@media (min-width: 850px) {
    .default-wrapper {
        display: none;
    }

    .menu-container {
        height: auto !important;
    }

    .menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        height: 90px;
        width: 90%;
        max-width: 1000px;
        margin: auto;
    }

    .menu-list {
        display: flex;
        align-items: center;
    }

    .menu-list li {
        height: 90px;
        display: flex;
        align-items: center;
    }

    .menu a {
        height: inherit;
    }

    .menu-list li {
        margin-bottom: 0;
    }

    .menu-logo {
        display: block;
    }

    .menu-list li + li {
        margin-left: 40px;
    }
}
