/*-----------------------------------*\
  RESET/BASIC
\*-----------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0; padding:0; border:0; outline:0; 
	vertical-align:baseline; background:transparent;
}

* { box-sizing: border-box; }

html {
    font-size: 62.5%;
}

body {
    font-family: proxima-nova, sans-serif;
    font-size: 1.6rem; line-height: 1.5;
    color: #000; font-weight: 400;
    background: #fff; min-height: 100vh;
    display: flex; flex-direction: column;
}

@media screen and (max-device-width: 480px){
	body{
		-webkit-text-size-adjust: none;
	}
}

.content {
    flex: 1 0 auto;
    overflow: hidden;
}

img {
    width: 100%; height: auto;
    display: block;
}

a {
    text-decoration: underline;
    transition: all 0.25s ease-in;
    color: #000;
}

.basic {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1520px;
}

#privacy .basic {
    max-width: 960px;
}

.flexrow {
    display: flex; align-items: center;
    justify-content: center;
}

.nav-inner {
    height: 80px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logoimg {
    width: 42px;
}

.logocopy {
    font-weight: 300; font-size: 2rem;
    letter-spacing: 0.2em; padding-left: 12px;
    line-height: 1;
}

section {
    margin: 48px 0;
}

h1, h2 {
    font-weight: 500; line-height: 1.2;
}

h1 {
    font-size: 3rem; margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem; margin-bottom: 16px;
}

#privacy p {
    margin-bottom: 20px;
}

ol, ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

li:last-child {
    margin-bottom: 0;
}

.footer-content {
    padding: 20px 0 30px; text-align: center;
    border-top: 1px solid rgba(0,0,0,0.25);
    font-size: 1.2rem; line-height: 2;
}

@media only screen and (min-width: 768px) {

    .basic {
        padding: 0 30px;
    }

    .footer-content {
        font-size: 1.4rem;
    }

    .footer-content br {
        display: none;
    }

}

@media only screen and (min-width: 1280px) {

    .basic {
        padding: 0 40px;
    }

    section {
        margin: 64px 0;
    }

    .nav-inner {
        height: 96px;
    }

    .logoimg {
        width: 60px;
    }

    .logocopy {
        font-size: 2.4rem;
        padding-left: 20px;
    }

}