/* =========================================
   RESET & BASICS
   ========================================= */
article, aside, footer, header, hgroup, main, nav, section { display: block; }
*, :after, :before { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; }
li { list-style: none; }
img { height: auto; max-width: 100%; vertical-align: top; width: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }

/* TYPOGRAPHY */
html { font-smooth: always; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; font-size: 1rem; }

@media screen and (min-width:20rem) { html { font-size: calc(1rem + .3 * ((100vw - 20rem) / 220)); } }
@media screen and (min-width:240rem) { html { font-size: 1.3rem; } }

body {
    background: #d3d3d3;
    color: #111;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    overscroll-behavior: none;
}

@media screen and (max-width:768px) {
    body { padding-left: 10px; padding-right: 10px; text-align: left; font-size: 1.1rem; }
}

a { color: #ff004a; text-decoration: none; }

/* HEADERS: Oswald (Matching AA) */
h1, h2, h6 { font-family: 'Oswald', sans-serif; letter-spacing: 1px; line-height: 1.8rem; font-weight: 400; margin-top: calc(1.5rem + 1vw); text-transform: uppercase; }
h5 { color: #111; font-family: 'Oswald', sans-serif; letter-spacing: 1px; line-height: 1.8rem; font-weight: 400; margin: 0; text-transform: none; }
h3 { color: #000; font-family: 'Oswald', sans-serif; letter-spacing: 1px; font-weight: 400; text-transform: none; text-align: left; padding-right: 200px; word-wrap: break-word; line-height: 1.4; }
h4 { color: #777; font-family: 'Oswald', sans-serif; letter-spacing: 1px; line-height: 1.8rem; font-weight: 400; margin: 0; text-transform: none; }

@media screen and (max-width:768px) { h3 { padding-left: 10px; padding-right: 10px; text-align: left; padding-right: 0; } }

.u-h1, h1 { font-size: 1.9rem; margin: .5rem 0 1.5rem; }
blockquote { border-right: .2rem solid #02bb80; font-family: 'Lato', serif; font-style: italic; padding: .75rem 0 .75rem 1.75rem; }
hr { background: 0 0; border: none; height: auto; line-height: 1; max-width: none; text-align: center; }
hr::before { content: "\00b7 \00b7 \00b7"; color: #111; font-size: 1.26rem; font-weight: 600; letter-spacing: 1rem; padding-left: 1rem; }

/* LAYOUT UTILS */
.container { margin: 0 auto; padding: 0; max-width: calc(48rem + 8%); }
@media all and (min-width:56.25em) { .u-innerwrap { width: 46rem; margin-left: auto; margin-right: auto; } }

/* HEADER / NAV (For subpages) */
.container>header { padding-bottom: 10px; padding-left: 22px; padding-right: 20px; position: relative; text-align: center; }
.container>header.is-sticky { background: #d3d3d3; display: flex; justify-content: space-between; align-items: center; position: fixed !important; top: 0; width: 100%; left: 0; z-index: 4000; padding-bottom: 0; }
@media all and (min-width:56.25em) { .container>header.is-sticky { max-width: 48rem; } }

.logo { color: #ff004a !important; margin-left: 20px; display: inline-block; font-family: 'Oswald', sans-serif; font-size: 1.6rem; letter-spacing: 1px; text-align: center; text-transform: uppercase; }
.navbar__menu { color: #ff004a; font-family: 'Oswald', sans-serif; margin: 0; overflow: hidden; padding: 10px; letter-spacing: 1px; display: block; align-items: center; }
.navbar__menu li { color: #f3f3f3; font-size: .9rem; list-style: none; text-transform: lowercase; display: inline-block; margin: 0 10px; }
.navbar__menu li a { background-color: #d3d3d3; color: #010345; margin: 0 0 0 40px; white-space: nowrap; }
.navbar__menu li.active a { color: #101010; border-bottom: 1px solid #111; padding-bottom: 2px; }

@media all and (max-width:56.1875em) {
    .navbar__menu { background: #d3d3d3; width: 100%; left: 0; opacity: 0; position: absolute; top: 3rem; visibility: hidden; z-index: 4000; display: block; transform: translateY(-5%); }
    .navbar__toggle { display: block; background: 0 0; border: none; border-top: 2px solid #000; height: 14px; margin-right: 5px; position: absolute; top: 50%; right: 0; width: 2rem; z-index: 3; transform: translate(0, -50%); }
    .navbar__toggle:before { border-top: 2px solid #000; content: ""; left: 0; position: absolute; top: 4px; width: 100%; }
    .navbar__toggle:after { border-bottom: 2px solid #000; content: ""; left: 0; position: absolute; bottom: 0; width: 100%; }
    .is-opened > ul { opacity: .99; overflow: hidden; visibility: visible; transform: translateY(0); }
    .is-opened > ul li { display: block; font-size: 1.3rem; line-height: 3rem; padding: 0; }
}

/* CONTENT */
.post { margin: 0; position: relative; }
.hero { margin: 0 0 1.5rem; text-align: center; display: none; }
.hero h2 { font-size: 3rem; text-align: center; }

.footer { border-top: 1px solid #dedede; overflow: hidden; padding: 2.5rem 4%; text-align: center; }
.footer__copyright { color: #888; font-size: .62rem; letter-spacing: 1px; padding: 1rem 0; }
.footer__social > a { padding: .25rem; }
.footer__social .icon { fill: #111; opacity: .6; width: .9rem; height: .9rem; transition: all .12s linear; }
.footer__social .icon:hover { opacity: 1; }

/* =========================================
   ARTWORK CONTAINERS
   ========================================= */
.video-wrapper { 
    position: relative; 
    width: 100vw; 
    height: auto; 
    overflow: hidden; 
    left: calc(-50vw + 50%); 
    box-sizing: border-box; 
    display: block; 
}

.full-width-iframe { 
    width: 100vw; 
    height: 56vw; 
    position: relative; 
    left: calc(-50vw + 50%); 
    box-sizing: border-box; 
}

/* Gradients */
.full-width-iframe::before { content: ""; position: absolute; top: -150%; right: -150%; bottom: -150%; left: -150%; z-index: 1; }
@keyframes rotateGradient { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0.5; } }
.gradient-stillimage::before { background: linear-gradient(45deg, rgba(255, 0, 255, 0.6), #ff0); animation: rotateGradient 240s linear infinite, fadeOut 2s ease-out 2s forwards; }
.gradient-4::before { background: linear-gradient(to top right, red, #00d4fc 72.27%); animation: rotateGradient 220s linear infinite, fadeOut 1s ease-out 2s forwards; }
.gradient-null::before { background: linear-gradient(to top right, #ff00dd00 24.79%, #ff414100 35.71%, #d6fc0100 69.75%); animation: rotateGradient 220s linear infinite, fadeOut 2s ease-out 4s forwards; }

.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.video-style { border: 0; top: 0; left: 0; width: 100%; height: 100%; position: relative; overflow: hidden; }

/* Slideshows */
.slideshow-js { width: 100vw; height: 56.25vw; overflow: hidden; position: relative; }
.slide5-js { width: 100%; height: 100%; position: absolute; opacity: 0; transition: opacity 2s linear; }
.slideshow-js img { height: 100%; width: 100%; object-fit: cover; }

/* =========================================
   MOBILE OVERRIDES
   ========================================= */
@media (max-width: 767px) {
    .video-wrapper { height: 120vw; object-fit: cover; }
    .full-width-iframe { left: 0; width: 100%; height: 100%; }
    .slideshow-js { height: 100%; left: 0; position: absolute; object-fit: cover; }
    .video-style { object-fit: cover; transform: scale(2.2); }
}