/*#region grid */

body, html {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

/*#endregion grid */

/*#region colors */

:root {
    --dark: rgba(0,10,20,1);
    --black: rgba(0,0,0,1);
    --white: rgba(255,255,255,1);
}

/*#endregion colors */

/*#region fonts*/


body, p, h1, h2, h3, h4, h5, h6, ul, li, a, span, table, tr, td {
    font-family: 'PT Sans', Helvetica, sans-serif;
    font-size: 15px;
    line-height: 160%
}


h1 {
    font-size: 2.50em;
    font-weight: 600;
}

h2 {
    font-size: 2.00em;
    font-weight: 600;
}

h3 {
    font-size: 1.75em;
    font-weight: 600;
}

h4 {
    font-size: 1.50em;
    font-weight: 600;
}

h5 {
    font-size: 1.25em;
    font-weight: 600;
}

h6 {
    font-size: 1.10em;
    font-weight: 600;
}

p.small {
    margin-top: 20px;
    font-size: 0.85em;
}

a {
    text-decoration: none;
}

/*#endregion fonts*/

/*#region splash */

.splash {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 160px);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

    .splash .content {
        padding: 20px;
    }

        .splash .content img {
            max-width: 200px;
            border: 14px solid #FFF;
            box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
        }

        .splash .content p {
            max-width:720px;
        }

/*#endregion */

/*#region footer */

footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px;
    margin: 0px;
    border-top: 2px solid var(--parent-accent);
}

    footer .footer-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

        footer .footer-content .footer-copy {
            background: var(--parent-background);
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            padding: 40px;
            align-items: flex-start;
            text-align: left;
        }

        footer .footer-content .footer-logo {
            display: flex;
            min-width: 200px;
            max-width: 400px;
            background: #FFF;
            align-items: center;
            justify-content: center;
            background: var(--parent-background);
        }

            footer .footer-content .footer-logo img {
                max-height: 140px;
            }

        footer .footer-content .footer-statement {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: var(--dark);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        footer .footer-content .footer-copy p, footer .footer-content .footer-copy a, footer .footer-content .footer-copy a:hover {
            max-width: 480px;
            color: var(--parent-primary);
        }

        footer .footer-content .footer-statement p {
            color: var(--white);
            margin: 0px;
            padding: 0px;
            max-width: 100%;
        }

        footer .footer-content .footer-statement p a {
            color: var(--white);
            font-size:0.95em;
        }

@media(max-width:990px) {

    footer .footer-content .footer-copy {
        background: var(--parent-background);
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding: 40px;
        align-items: center;
        text-align: center;
    }

    footer .footer-content .footer-logo {
        display: none;
    }
}

/*#endregion */
