@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;700&display=swap');

:root {
    --blue: #36454f;
    --gold: #E9CD79;
    --header-height: 190px;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 600;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a:hover {
    color: var(--gold);
    transform: scale(1.05);
}

@media only screen and (max-width: 865px) {
    :root {
        --header-height: 75px;
    }

    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    h4 {
        font-size: 16px;
    }
    
    p {
        font-size: 16px;
    }
}

main {
    max-width: 100vw;
    overflow: hidden;
    background-color: #F2F3F4;
}

.sidebar {
    background-color: var(--blue) !important;
}

.sidebar .bottom {
    align-self: flex-end;
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue);
    position: fixed;
    width: 100%;
    height: var(--header-height);

    padding: 1rem;
    z-index: 999;
}

.mobile-header img {
    height: 50px;
}

.header {
    height: var(--header-height);
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    position: fixed;
    width: 100%;
    z-index: 999;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

nav>* {
    flex: 1;
    display: flex;
    gap: 3rem;
}

nav .left {
    justify-content: flex-end;
}

nav .right {
    justify-content: flex-start;
}

nav .branding {

    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

nav .branding .socials a {
    color: var(--gold);
}

nav img {
    height: 100px;
}

nav a {
    color: var(--gold);
    text-transform: uppercase;
}

section:first-of-type {
    padding-top: var(--header-height);
}

@media only screen and (max-width: 865px) {
    .mobile-header {
        display: flex;
    }

    .header {
        display: none;
    }
}

/*
    Footer
*/
footer {
    padding: 2rem !important;
    background-color: var(--blue);
    margin: 0 !important;
}

footer img {
    width: 90%;
}

footer h3 {
    color: var(--gold);
}

footer a {
    color: white;
}

footer h4 {
    margin: 0;
}

footer .links,
footer .partners,
footer .socials {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}