*{
    margin: 0;
    padding: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
    box-sizing: border-box;
    color: #00346A;
}
#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 10000;
    background-color: #012169;
    color: #fff;
    transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms;
}
.headerOnScroll{
    background-color: #fff !important;
    color: #012169 !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#header .site-head{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
#header .site-head h1{
    font-size: 22px;
    color: #fff;
}
#header .site-head p{
    color: #fff;
}
.headerOnScroll .site-head h1, .headerOnScroll .site-head p, .headerOnScroll .site-actions ul li{
    color: #012169 !important;
}
#header .site-head img {
    width: 40px;
    height: 45px;
}
.mobile-menu{
    display: none;
}
.mobile{
    display: none;
}

.site-actions{
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.site-actions ul{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.site-actions ul #text{
    display: none;
}
.site-actions ul li{
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}
.site-actions ul li a{
    color: #fff;
    text-decoration: none;
}
.site-actions #donation{
    padding: 8px 13px;
    border-radius: 8px;
    border: none;
    background-color: #1877F2;
    color: #fff;
}

/*Footer*/
.footer{
    background-color: #f4f4f4;
    padding: 25px 80px;
}
.footerLogo{
    width: 50px;
    height: 50px;
}
.footerIconBrand{
    width: 30px;
    height: 30px;
}
.aboveFooter{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom-color: #ccc;
    border-bottom-style: solid;
    border-bottom-width: 1.5px;
    margin-bottom: 25px;
    padding-bottom: 12px;
}
.accredit{
    display: flex;
    gap: 10px;
    align-items: center;
}
.sitLogo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footerMenuBox{
    display: flex;
    justify-content: center;
    gap: 40px;
}
.aboutSummary{
    width: 20%;
}
.aboutSummary h2{
    font-size: 18px;
    margin-bottom: 20px;
}
.aboutSummary p{
    font-size: 12px;
    margin-bottom: 20px;
}
.aboutSummary ul li{
    list-style: none;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}
.aboutSummary input{
    padding: 12px;
    width: 100%;
    color: inherit;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
}
.aboutSummary button{
    display: flex;
    padding: 8px 15px;
    background-color: goldenrod;
    border: none;
    border-radius: 20px;
    align-self: flex-end;
}
.mobile-menu{
    display: none;
}
.mobile{
    display: none;
}