/* Main Header */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 56px;
    background-color: ;
    border-bottom: 1px solid var(--secondary-color);
    position: relative;
    height: 115px;
}

@media only screen and (max-width: 768px) {
    .header {
        padding: 16px;
        height: 81px;
    }
}

/* Header Logo */
.header-logo img {
    max-width: 300px;
}

@media only screen and (max-width: 768px) {
    .header-logo img {
        max-width: 140px;
    }
}

/* Header Links & Signin & Mobile Hamburger */
.header-content {
    display: flex;
    flex-direction: row;
}

.header-links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .header-links {
        display: none;
    }
}

.header-links a {
    font-weight: bold;
    margin-right: 43px;
    color: var(--primary-body);
}

.header-username:hover {
    cursor: pointer;
}

.header-username span {
    margin-right: 2px;
}

@media only screen and (max-width: 768px) {
    .header-username {
        margin-right: 12px;
    }
}

.header-signin {
    width: 157px;
}

@media only screen and (max-width: 768px) {
    .header-signin {
        width: 109px;
        margin-right: 20px;
    }
}

.header-mobile-menu {
    display: none;
}

@media only screen and (max-width: 768px) {
    .header-mobile-menu {
        display: flex;
    }
}


/* Header Menus */
.header-menu {
    display: flex;
    flex-direction: column;
    width: 300px;
    position: absolute;
    top: 115px;
    right: 0;
    background-color: var(--white);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.header-menu a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--secondary-color);
    border-radius: 0;
    justify-content: flex-start;
}

@media only screen and (max-width: 768px) {
    .header-menu {
        width: 100%;
        height: calc(100vh - 81px);
        top: 81px;
    }
}