/*----- desktop -----*/

.logo-desktop {
    height: 60px;
}

.desktop-navigation-header {
    display: flex;
}

.desktop-navigation-header a {
    color: #333333;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.desktop-navigation-header a:hover {
    color: #EC008C;
}

/*----- mobile -----*/

.logo-mobile {
    height: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
}

.mobile-navigation-header {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #F2F2F2;
    position: absolute;
    top: 77px;
    left: 0;
    z-index: 9999;
}

.mobile-navigation-header a {
    color: #333333;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-top: 1px solid #D7D7D7;
}

.mobile-navigation-header a:last-child {
    border-bottom: 1px solid #D7D7D7;
}