.header {
    display: flex;
    justify-content: space-between;
    height: 100px;
    padding: 0 50px;
    overflow: hidden;
}
.header .header-icon {
    display: flex;
    align-items: center;
    height: 100%;
}
.header .header-icon img {
    width: 175px;
}
.header a {
	text-decoration: none;
}
.header .header-nav {
    display: flex;
    align-items: center;
    list-style-type: none;
    height: 100%;
    padding: 0;
}
.header .header-nav li {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    padding: 0px 20px;
}
.header .header-nav li.active-page a {
    color: #044a8e;
    font-weight: 700;
}
.header .header-nav li a {
    color: #858585;
    text-decoration: none;
}
.header .donate-button {
    display: flex;
    align-items: center;
}
.header .donate-button button {
    font-size: 17px;
    font-weight: 500;
}
.header .donate-button button i {
    margin-right: 5px;
}
.header .mobile-nav-icon {
    display: none;
    align-items: center;
    font-size: 30px;
    color: #044a8e;
    cursor: pointer;
}
.mobile-nav {
    display: none;
}
.mobile-nav ul {
    background-color: #fff;
    position: absolute;
    list-style: none;
    width: 100%;
    z-index: 100;
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 30px;
    border-bottom: 2px solid #044a8e;
}
.mobile-nav ul li {
    padding-bottom: 5px;
}
.mobile-nav ul li a {
    color: #858585;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
}
.mobile-nav ul li.active-page a {
    font-weight: 700;
    color: #044a8e;
}
@media (min-width: 1300px) {
    .mobile-nav {
        display: none !important;
    }
}
@media (max-width: 1300px) {
    .header .header-nav, .header .donate-button {
        display: none;
    }
    .header .mobile-nav-icon {
        display: flex;
    }
}
@media (max-width: 425px) {
    .header {
        padding: 30px;
    }
}
