header {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(237, 237, 237, 1) 40%, rgba(179, 179, 179, 1) 80%, rgba(41, 42, 43, 1) 100%);
    max-width: 1600px;
    margin: auto;
}

.header-icon-row {
    max-width: 1600px;
    width: 100%;
    /* position: relative; */
    margin: auto;
}

.icon-box {
    /* position: absolute; */
    right: 0px;
    /* width: 100%; */
    /* max-width: 45px; */
    display: flex;
    margin-right: 25px;
    justify-content: flex-end;
}

.weather-box {
    display: flex;
    justify-content: center;
}

.account-box {
    display: flex;
    justify-content: center;
}

.account-box div {
    margin-right: 20px;
}

.social-box {
    display: flex;
    width: 45%;
    justify-content: flex-end;
}

.social-box i {
    margin-right: 10px;
    cursor: pointer;
}

.social-box i:hover {
    color: #0c8479;
}


/* ------------------------------- */

.header-middle-row {
    max-width: 1600px;
    width: 100%;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 15px;
}

.header-middle-left {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-left: 25px;
}

.fake-logo {
    font-size: 80px;
    font-weight: 900;
    color: #1b72af;
}

.fake-logo span {
    font-size: 80px;
    font-weight: 400;
    color: #1b72af;
}

.fake-logo-name {
    font-weight: 900;
    font-size: 30px;
    color: #b01313;
}


/* ------------------------------- */

.header-menu-row {
    width: 100%;
    margin: auto;
    max-width: 1600px;
    display: flex;
    justify-content: space-around;
    background-color: #303030;
    color: #f9f8fb;
    margin-top: 25px;
}

.menu-box {
    display: flex;
    width: 5%;
    justify-content: space-between;
    margin-right: 25px;
    font-size: 20px;
}

@media screen and (max-width: 600px) {
    .fake-logo,
    .fake-logo span {
        font-size: 50px;
    }
    .fake-logo-name {
        font-size: 18px;
    }
    .header-middle-left {
        width: 100%;
    }
    .menu-box {
        flex-direction: column;
        width: 20%;
        align-items: flex-end;
        padding-top: 10px;
    }
    .header-middle-row {
        align-items: flex-start;
    }
}