.header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: #135a66;
    padding: 0 20px;
    height: 79px;
    border: none;
}

.header__wrapper {
    width: 100vw;
    max-width: 100%;
    height: 79px;
    display: flex;
    background-color: #135a66;
    position: relative;
    z-index: 100;
}

.header__logo {
    cursor: pointer;
    text-decoration: none;
    height: 80px;
    min-width: 130px;
    display: flex;
    background-color: transparent;
    color: #135a66;
    width: 56px;
}

.header__logo img {
    margin-left: 10px;
}

.header__logo:hover {
    opacity: 0.7;
    background-color: transparent;
    transition: opacity background-color 0.7s;
}

.top-navigation {
    display: none;
    position: fixed;
    top: 78px;
    background: linear-gradient(180deg, #1a8893 0%, rgba(19, 90, 102, 0.9) 100%);
    width: 280px;
    height: auto;
    flex-wrap: wrap;
    min-height: 130px;
    z-index: 10000;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 20px;
    font-family: 'Roboto';
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25rem;
    letter-spacing: 0.1px;
}

.top-navigation.open {
    display: flex;
}

.top-navigation__icon__wrapper p {
    font-weight: 400;
}

.top-navigation__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #00718d;
    display: flex;
    align-content: center;
    justify-self: center;
    flex-wrap: wrap;
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15),
        0px 1px 3px 0px rgba(0, 0, 0, 0.3);

}

.top-navigation__icon__wrapper,
a:not([href]):not([tabindex]).top-navigation__icon__wrapper {
    width: 50%;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.top-navigation__icon__wrapper:hover,
a:not([href]):not([tabindex]).top-navigation__icon__wrapper:hover {
    opacity: 0.7;
    transition: opacity 0.7s;
    color: #fff;
}

.top-navigation__icon img {
    display: flex;
    height: 24px;
    width: 100%;
}