@import url('https://fonts.googleapis.com/css?family=Source+Serif+Pro');
@import url('https://fonts.googleapis.com/css?family=Silkscreen');


:root {
    --red: #CC0133;
    --yellow: #FFCC02;
    --blue-gray: #8D94BA;
    --blue: #162C72;
    --dark-blue: #0A1434;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Source Serif Pro";
}

html {
    background: linear-gradient(to right, #ffffff, --blue-gray);
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Source Serif Pro";
    color: #00334e;
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3 {
    line-height: 1.4em;
    font-family: Arial, Helvetica, sans-serif;
}


header {
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    z-index: 15;
}

.sticky-header {
    box-shadow: rgba(100, 100, 111, 0.159) 0px 7px 16px 0px;
}

.header-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    border-bottom: 1px solid var(--dark-blue);
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-menu-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, auto);
    align-items: center;
    width: fit-content;
}

.header-menu {
    font-size: 16px;
}
.header-menu-list li {
    list-style: none;
    margin: 4px;
    transition: .2s;
}

.header-menu-list li a{
    padding: 8px 16px;
    display: block;
}

.header-menu-list li:hover a{
    background-color: aliceblue;
    color: #0045bd;
    text-decoration: none;
    border-radius: 8px;
}

.current-page {
    background-color: aliceblue;
    color: #0045bd !important;
    text-decoration: none !important;
    border-radius: 8px;
}

.header-menu-list a:hover {
    cursor: pointer;
}


.header-menu-list li a{
    color: #00334e;
    text-decoration: none;
}



.header-logo {
    height: 60px;
    margin: 0;
    padding: 0;
    filter: drop-shadow(0px 0px 4px rgb(255, 255, 255));
    -webkit-filter: drop-shadow(0px 0px 4px rgb(255, 255, 255));
}


/* ---------------- MENU CONTENT ---------------- */
.title-p {
    margin-top: 20px;
    max-width: 600px;
}

main {
    z-index: 9;
    max-width: 100vw;
}

main > section {
    margin: 0;
    padding: 60px 40px;
    display: grid;
    place-items: center;
}


h1, h2, h3 {
    font-weight: 900;
}

h1 {
    max-width: 100%;
}

p {
    line-height: 1.5em;
}


.title {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 1.2em;
    font-weight: bolder;
    color: #00334e;
}

.normal-section--title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-blue);
    text-align: center;
}

.white-text {
    color: white;
}

.dark-bg {
    background-color: var(--dark-blue);
}
.legal-stuff {
    font-size: 12px;
    text-align: center;
    background-color: var(--blue);
    padding: 10px;
    background-color: white;
}


@media (max-width: 720px) and (orientation: portrait){
    html {
        width: 100vw;
        overflow-x: hidden;
    }

    main {
        max-width: 100vw;
    }

    main > section {
        margin-top: 40px;
        padding: 80px 20px;
        display: grid;
    }

    header {
        height: auto;
    }


    .header-navigator {
        display: none;
    }


    .header-logo {
        height: auto;
        max-width: 80%;
        margin: 0;
        padding: 0;
        filter: drop-shadow(0px 0px 4px rgb(255, 255, 255));
        -webkit-filter: drop-shadow(0px 0px 4px rgb(255, 255, 255));
    }

    .header-wrapper {
        height: 64px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .title {
        font-size: 42px;
    }
    .title-p {
        margin-top: 20px;
        font-size: 16px;
    }
    
    .normal-section {
        padding: 40px 16px;
        display: grid;
        text-align: left;
        place-items: center;
    }
    .normal-section--title {
        font-size: 22px;
        max-width: 90%;
    }
    .rrss {
        display: none;
    }
}
