.navigation {
    width: 100%;
    background-color: #008c9e;
    font-size: 0;
    position: relative;
}

.nav-content-wrapper {
    display: flex;
    justify-content: space-between;
}

.nav-content-wrapper img {
    height: auto;
    width: 48px;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.nav-content-wrapper a {
    display: flex;
    align-items: center;
}

.nav-content-wrapper img:hover {
    filter: invert(100%);
}

.nav-container {
    max-width: unset !important;
}

.navigation-list {
    display: inline-flex;
    padding: 0;
    position: relative;
    margin: 0 0 0 auto;
    width: fit-content;
    max-width: unset;
    background-color: #00b4cd;
    list-style-type: none;
}

.navigation-list a {
    min-width: fit-content;
    display: inline-block;
    padding: var(--light-padding);
    text-decoration: none;
    color: white;
    white-space: nowrap;
    font-size: var(--primary-font-size);
    transition: .5s ease-in-out;
}

.navigation-list a:hover {
    background-color: #005f6d;

}

.mobileMenu {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    flex-direction: column;
    list-style-type: none;
    font-size: var(--primary-font-size);
    margin: 0;
    padding: 0;
    z-index: -1;
    width: 100%;
}

.mobileMenu a {
    color: white;
}

.mobileMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #00b4cd;
    max-width: unset;
    width: 100%;
}

.mobileMenu li {
    height: 0;
    cursor: pointer;
    position: unset;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    padding: unset;
}

.mobileMenu li:hover {
    background-color: #005f6d;
    transition: .5s ease-in-out;
}

.mobileMenuVisible {
    font-size: var(--primary-font-size);
    display: flex;
    top: 100%;
    z-index: 10;
}

.mobileMenuVisible li {
    background: #00b4cd;
    height: fit-content;
    width: 100%;
    max-width: unset;
    margin: 0;
    text-align: center;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobileMenuVisible a {
    text-decoration: none;
    padding-block: var(--light-padding);
    color: white;
    display: inline-block;
    height: fit-content;
    width: 100%;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 1000px) {
    .mobileMenu ul, .mobileMenuVisible a, .navigation-list, .navigation-list li, .navigation-list a , .nav-content-wrapper img  {
        transition: unset !important;
    }

}