/* 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: 300;
    line-height: 1.45;
    color: #202020;
}

p {
    margin-bottom: 1.05em;
}

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;
}
section.grid a {
    text-decoration: underline;
}

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;
    display: inline-block;
}

section.scan {
    position: relative;
}
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;
}

section.grid {
    display: flex;
    flex-wrap: wrap;
}
section.grid + .grid {
    margin-top: 60px;
}
section.grid > * {
    width: 100%;
}
@media only screen and (min-width: 1024px) {
    section.grid > * {
        width: 50%;
    }
}
@media (orientation: landscape) {
    section.grid > * {
        width: 50%;
    }
}
section.grid > .fullwidth {
    width: 100%;
}
section.grid .header {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section.grid .header .heading h1 {
    text-transform: uppercase;
}
section.grid .header .list {
    margin-top: 40px;
    font-weight: 500;
}
@media (orientation: landscape) {
    section.grid .header .list {
        margin-top: 20px;
    }
}
section.grid .header .list .list-item {
    display: flex;
    max-width: 480px;
}
section.grid .header .list .list-item + .list-item {
    margin-top: 1.05em;
}
section.grid .header .list .list-item .list-number {
    width: 40px;
}
section.grid .header .list .list-item .list-number p {
    margin: 0;
}
section.grid .header .list .list-item .list-text {
    flex: 1;
}
section.grid .header .list .list-item .list-text p {
    margin: 0;
}

section.grid .slideshow {
    position: relative;
}
section.grid .slideshow .slides {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    cursor: pointer;
}
section.grid .slideshow .slides.dark {
    background-color: #020202;
}
section.grid .slideshow.fullwidth .slides {
    padding-bottom: 50%;
}
section.grid .slideshow .slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 500ms ease;
}
section.grid .slideshow .slides .slide.show {
    opacity: 1;
}
section.grid .slideshow .slides .slide .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section.grid .slideshow .slides .slide .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.grid .slideshow .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
    z-index: 1;
    mix-blend-mode: difference;
}


section.grid .media {
    position: relative;
}
section.grid .media .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
    z-index: 1;
    mix-blend-mode: difference;
}

section.grid .media .video {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}
section.grid .media .video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.grid .media .image {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}
section.grid .media .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.grid .body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 500;
}
section.grid .body form {
    display: flex;
}
section.grid .body form input {
    padding: 10px;
    margin: 0;
    width: 200px;
    outline: none;
    border: none;
    background-color: rgba(0,0,0,0.1);
}
section.grid .body form button {
    padding: 10px;
    margin: 0;
    outline: none;
    border: none;
    background-color: rgba(0,0,0,1.0);
    color: white;
    text-transform: uppercase;
    font-weight: 500;
}

section.thankyou {
    position: relative;
}
section.thankyou .content {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 50vh;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.thankyou .content .heading h1 {
    text-transform: uppercase;
}
section.thankyou .content .graphic .subheading h2 {
    text-transform: uppercase;
}
section.thankyou .content .quicklinks .list {
    display: flex;
    justify-content: space-evenly;
}
section.thankyou .content .quicklinks .list .button a {
    padding: 10px;
    border: 1px solid black;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
}


