/* box sizing */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
    margin: 0;
}

/* typography */

html {
    font-size: 10px;
}

@media only screen and (min-width: 568px) {
    html {
        font-size: 12px;
    }
}

@media only screen and (min-width: 728px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1024px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1280px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1440px) {
    html {
        font-size: 14px;
    }
}

body {
    background-color: white;
    font-family: 'Helvetica Neue', Helvetica Neue, 'Helvetica', Helvetica, 'Arial', sans-serif;
    font-weight: 200;
    line-height: 1.45;
    color: #202020;
}

p {
    margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.15;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 2.15em;
}
h2 {
    font-size: 1.15em;
}

.text_small {
    font-size: 0.8em;
}

.text-align__center {
    text-align: center;
}

.text-transform_uppercase {
    text-transform: uppercase;
}

/**
 * Smooth scrolling on the whole document
 */
html {
	scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
    mix-blend-mode: difference;
}
header .image {
    position: relative;
    text-align: center;
}
header .image img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 120px;
}

main {
    position: relative;
    background-color: white;
}

section.hero {
    position: relative;
    min-height: 100vh;
}
section.hero .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section.hero .background .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}
section.hero .background .video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: blur(2px);
}
section.hero .content {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 100px 20px 40px 20px;
    text-align: center;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
    section.hero .content {
        display: block;
    }
}

section.hero .content .heading h1 {
    text-transform: uppercase;
}
section.hero .content .top .body {
    margin-top: 20px;
}
@media only screen and (min-width: 1024px) {
    section.hero .content .top .body {
        margin-top: 40px;
    }
}
section.hero .content .graphic {
    margin: 60px 0;
}
section.hero .content .graphic .heading h2 {
    text-transform: uppercase;
}
section.hero .content .graphic .image {
    margin: 40px 0 20px 0;
}
section.hero .content .graphic .image img {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    display: block;
}
section.hero .content .graphic .subheading h2 {
    text-transform: uppercase;
}
section.hero .content .quicklinks .list {
    display: flex;
    justify-content: space-evenly;
}
section.hero .content .quicklinks .list .button a {
    padding: 10px;
    border: 1px solid white;
    text-transform: uppercase;
    font-weight: 500;
}

section.scan {
    position: relative;
    min-height: 100vh;
}
section.scan .content {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.scan .content .heading h1 {
    text-transform: uppercase;
}
section.scan .content .graphic .image {
    margin: 40px 0 20px 0;
}
section.scan .content .graphic .image img {
    position: relative;
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0 auto;
    display: block;
}

section.scan .content .graphic .subheading h2 {
    text-transform: uppercase;
}


