header {
    position: fixed;
    background-color: white;
    width: 100%;
    height: 111px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px 0;
    top: 0;
    z-index: 1;
}

.flex-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
    position: absolute;
    top: 56px;
    bottom: 19px;
}

h1 {
    font-family: "Lustria-Regular", sans-serif;
    background-color: white;
    font-size: 24px;
    font-weight: normal;
    width: 123px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}

nav {
    position: relative;
    height: 44px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.hamburger {
    margin-left: 23px;
    position: relative;
    background-color: white;
    padding: 11.5px 8px 11.5px 8px;
    z-index: 1;
    cursor: pointer;
}

.active {
    display: none;
} 

@keyframes fadeIn {
    from {opacity: 0;}
      to {opacity: 1;}
}

.hamburger-menu-wrapper {
    background-color: white;
    width: 247px;
    height: 310px;
    position: absolute;
    top: 0;
    left: 23px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px 0;
    animation: fadeIn 300ms;
}

.hamburger-menu-list {
    text-decoration: underline;
    text-underline-offset: 5px;
    font-size: 20px;
    list-style-type: none;
    font-family: "Inter", sans-serif;
    margin-left: 10px;
    margin-top: 50px;
}

.hamburger-menu-list li {
    margin: 17px 0 17px 0;
}

.hamburger-menu-list li:nth-of-type(5) {
    margin-bottom: 0;
}

.choose-language-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
}

.choose-language-container img {
    margin-left: 10px;
    height: 45px;
    width: 40px;
}

.logo-fish, .desktop-menu, .search {
    display: none;
}

.basket {
    margin-right: 23px;
    background-color: white;
    padding: 5px;
}

.desktop-menu-active {
    display: none;
}

/* Screens with minimum width 1400px */
@media screen and (min-width: 1400px) {
    header {
        height: 144px;
        box-shadow: none;
    }

    .flex-container {
        height: 100%;
        top: 0;
        bottom: 0;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px 0;
        z-index: 1;
    }

    nav {
        height: 100%;
        margin-right: auto;
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .hamburger {
        display: none;
    }

    .desktop-product-menu-wrapper {
        width: 100%;
        height: 480px;
        background-color: white;
        position: absolute;
        top: 144px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 2px 0;
        animation: fadeIn 300ms;
    }
    
    .desktop-product-menu-list {
        text-decoration: underline;
        text-underline-offset: 5px;
        font-size: 24px;
        font-family: "Inter-Regular", sans-serif;
        margin-top: 48px;
        margin-left: 80px;
        list-style-type: none;
        height: 400px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-content: flex-start;
    }

    .desktop-product-menu-list li {
        margin-bottom: 32px;
        width: 300px;
    }

    h1 {
        font-size: 54px;
        line-height: 94px;
        width: 252px;
        height: 94px;
        margin: auto;
    }
    .logo-fish, .desktop-menu, .search, .desktop-choose-language-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-menu {
        text-decoration: underline;
        text-underline-offset: 6px;
        font-size: 24px;
        font-family: "Inter-Regular", sans-serif;
        list-style: none;
    }

    .desktop-choose-language-container {
        margin-left: 40px;
    }

    .desktop-choose-language-container img {
        margin-left: 10px;
    }

    .basket-search-container {
        display: flex;
        margin-left: auto;
        flex: 1;
        justify-content: flex-end;
    }
    .search {
        margin-right: 8px;
    }

    .basket {
        background-color: white;
        height: 46px;
        width: 46px;
        margin-right: 40px;
    }

    .logo-fish {
        width: 127px;
        margin-left: 32px;
        margin-right: 24px;
    }

    .products-select {
        cursor: pointer;
    }
}